| /trueos/sys/contrib/dev/acpica/components/events/ |
| HD | evmisc.c | 179 Info->Notify.Global = &AcpiGbl_GlobalNotify[HandlerListId]; in AcpiEvQueueNotifyRequest() 223 if (Info->Notify.Global->Handler) in AcpiEvNotifyDispatch() 225 Info->Notify.Global->Handler (Info->Notify.Node, in AcpiEvNotifyDispatch() 227 Info->Notify.Global->Context); in AcpiEvNotifyDispatch()
|
| /trueos/contrib/file/magic/Magdir/ |
| HD | sysex | 119 >>>4 byte 0x04 GLBR (Global Parameter Request) 120 >>>4 byte 0x14 GLBD (Global Parameter Dump) 121 >>>4 byte 0x24 GLBP (Global Parameter Parameter Change) 122 >>>4 byte 0x34 GLBQ (Global Parameter Parameter Inquiry) 143 >>>4 byte 0x04 GLBR (Global Parameter Request) 144 >>>4 byte 0x14 GLBD (Global Parameter Dump) 145 >>>4 byte 0x24 GLBP (Global Parameter Parameter Change) 146 >>>4 byte 0x34 GLBQ (Global Parameter Parameter Inquiry) 161 >>>4 byte 0x04 GLBR (Global Parameter Request) 162 >>>4 byte 0x14 GLBD (Global Parameter Dump) [all …]
|
| /trueos/contrib/llvm/tools/clang/lib/AST/ |
| HD | NestedNameSpecifier.cpp | 121 return Global; in getKind() 170 case Global: in isDependent() 191 case Global: in isInstantiationDependent() 209 case Global: in containsUnexpandedParameterPack() 244 case Global: in print() 298 case NestedNameSpecifier::Global: in getLocalDataLength() 364 case NestedNameSpecifier::Global: in getLocalSourceRange() 587 case NestedNameSpecifier::Global: in MakeTrivial()
|
| /trueos/contrib/gdb/gdb/ |
| HD | MAINTAINERS | 4 Global Maintainers 203 (Global Maintainers) 233 (Global Maintainers) 237 breakpoints (Global Maintainers) 240 Java support (Global Maintainers) 253 (Global Maintainers) 256 (Global Maintainers) 271 command interpreter (Global Maintainers) 281 (Global Maintainers)
|
| /trueos/contrib/llvm/include/llvm-c/ |
| HD | ExecutionEngine.h | 167 void LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global, 170 void *LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE, LLVMValueRef Global);
|
| HD | Core.h | 1683 LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global); 1684 LLVMBool LLVMIsDeclaration(LLVMValueRef Global); 1685 LLVMLinkage LLVMGetLinkage(LLVMValueRef Global); 1686 void LLVMSetLinkage(LLVMValueRef Global, LLVMLinkage Linkage); 1687 const char *LLVMGetSection(LLVMValueRef Global); 1688 void LLVMSetSection(LLVMValueRef Global, const char *Section); 1689 LLVMVisibility LLVMGetVisibility(LLVMValueRef Global); 1690 void LLVMSetVisibility(LLVMValueRef Global, LLVMVisibility Viz);
|
| /trueos/contrib/llvm/lib/ExecutionEngine/ |
| HD | ExecutionEngineBindings.cpp | 326 void LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global, in LLVMAddGlobalMapping() argument 328 unwrap(EE)->addGlobalMapping(unwrap<GlobalValue>(Global), Addr); in LLVMAddGlobalMapping() 331 void *LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE, LLVMValueRef Global) { in LLVMGetPointerToGlobal() argument 334 return unwrap(EE)->getPointerToGlobal(unwrap<GlobalValue>(Global)); in LLVMGetPointerToGlobal()
|
| /trueos/contrib/llvm/lib/LTO/ |
| HD | LTOModule.cpp | 526 enum State { NeverSeen, Global, Defined, DefinedGlobal, Used }; enumerator 535 case Global: in markDefined() 554 case Global: in markGlobal() 556 S = Global; in markGlobal() 565 case Global: in markUsed() 730 else if (Value == RecordStreamer::Global || in addAsmGlobalSymbols()
|
| /trueos/contrib/dialog/ |
| HD | README | 18 Common options: <Global options> 25 Global options: [--shadow] [--no-shadow] [--separate-widget "<str>"]
|
| /trueos/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CodeGenModule.cpp | 1105 bool CodeGenModule::MayDeferGeneration(const ValueDecl *Global) { in MayDeferGeneration() argument 1110 return !getContext().DeclMustBeEmitted(Global); in MayDeferGeneration() 1164 const ValueDecl *Global = cast<ValueDecl>(GD.getDecl()); in EmitGlobal() local 1167 if (Global->hasAttr<WeakRefAttr>()) in EmitGlobal() 1172 if (Global->hasAttr<AliasAttr>()) in EmitGlobal() 1178 if (!Global->hasAttr<CUDADeviceAttr>() && in EmitGlobal() 1179 !Global->hasAttr<CUDAGlobalAttr>() && in EmitGlobal() 1180 !Global->hasAttr<CUDAConstantAttr>() && in EmitGlobal() 1181 !Global->hasAttr<CUDASharedAttr>()) in EmitGlobal() 1184 if (!Global->hasAttr<CUDAHostAttr>() && ( in EmitGlobal() [all …]
|
| /trueos/contrib/apr/ |
| HD | apr.dsw | 90 Global:
|
| /trueos/contrib/llvm/lib/IR/ |
| HD | Core.cpp | 1135 LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global) { in LLVMGetGlobalParent() argument 1136 return wrap(unwrap<GlobalValue>(Global)->getParent()); in LLVMGetGlobalParent() 1139 LLVMBool LLVMIsDeclaration(LLVMValueRef Global) { in LLVMIsDeclaration() argument 1140 return unwrap<GlobalValue>(Global)->isDeclaration(); in LLVMIsDeclaration() 1143 LLVMLinkage LLVMGetLinkage(LLVMValueRef Global) { in LLVMGetLinkage() argument 1144 switch (unwrap<GlobalValue>(Global)->getLinkage()) { in LLVMGetLinkage() 1180 void LLVMSetLinkage(LLVMValueRef Global, LLVMLinkage Linkage) { in LLVMSetLinkage() argument 1181 GlobalValue *GV = unwrap<GlobalValue>(Global); in LLVMSetLinkage() 1240 const char *LLVMGetSection(LLVMValueRef Global) { in LLVMGetSection() argument 1241 return unwrap<GlobalValue>(Global)->getSection().c_str(); in LLVMGetSection() [all …]
|
| /trueos/contrib/libyaml/win32/vc6/ |
| HD | libyaml.dsw | 195 Global:
|
| /trueos/contrib/llvm/include/llvm/Object/ |
| HD | ELFYAML.h | 64 std::vector<Symbol> Global; member
|
| /trueos/contrib/dialog/po/ |
| HD | pt_BR.po | 109 msgstr "Progresso Global"
|
| /trueos/usr.bin/vi/catalog/ |
| HD | uk_UA.UTF-8.base | 84 091 "Команда Global/v працює коли змінено файл/вікно"
|
| /trueos/sys/boot/i386/kgzldr/ |
| HD | sio.s | 2 # Copyright (c) 1999 Global Technology Associates, Inc.
|
| HD | start.s | 2 # Copyright (c) 1999 Global Technology Associates, Inc.
|
| /trueos/sys/boot/fdt/dts/arm/ |
| HD | tegra20.dtsi | 58 reg = < 0x50040200 0x100 >, /* Global Timer Registers */
|
| /trueos/cddl/contrib/opensolaris/cmd/sgs/messages/ |
| HD | sgs.ident | 27 # Global message identifiers for the sgs utilities. This information is read
|
| /trueos/cddl/contrib/dtracetoolkit/Examples/ |
| HD | js_objnew_example.txt | 28 <null> Global Scope Polluter 1
|
| HD | js_objcpu_example.txt | 139 Global Scope Polluter
|
| /trueos/contrib/llvm/patches/ |
| HD | patch-r262264-llvm-r200453-sparc.diff | 27 // Global addresses, constant pool entries
|
| /trueos/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | NestedNameSpecifier.h | 86 Global enumerator
|
| /trueos/contrib/llvm/lib/Target/R600/ |
| HD | AMDILInstrInfo.td | 80 // Global address space loads
|