Home
last modified time | relevance | path

Searched refs:Global (Results 1 – 25 of 140) sorted by relevance

123456

/trueos/sys/contrib/dev/acpica/components/events/
HDevmisc.c179 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/
HDsysex119 >>>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/
HDNestedNameSpecifier.cpp121 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/
HDMAINTAINERS4 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/
HDExecutionEngine.h167 void LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global,
170 void *LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE, LLVMValueRef Global);
HDCore.h1683 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/
HDExecutionEngineBindings.cpp326 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/
HDLTOModule.cpp526 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/
HDREADME18 Common options: <Global options>
25 Global options: [--shadow] [--no-shadow] [--separate-widget "<str>"]
/trueos/contrib/llvm/tools/clang/lib/CodeGen/
HDCodeGenModule.cpp1105 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/
HDapr.dsw90 Global:
/trueos/contrib/llvm/lib/IR/
HDCore.cpp1135 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/
HDlibyaml.dsw195 Global:
/trueos/contrib/llvm/include/llvm/Object/
HDELFYAML.h64 std::vector<Symbol> Global; member
/trueos/contrib/dialog/po/
HDpt_BR.po109 msgstr "Progresso Global"
/trueos/usr.bin/vi/catalog/
HDuk_UA.UTF-8.base84 091 "Команда Global/v працює коли змінено файл/вікно"
/trueos/sys/boot/i386/kgzldr/
HDsio.s2 # Copyright (c) 1999 Global Technology Associates, Inc.
HDstart.s2 # Copyright (c) 1999 Global Technology Associates, Inc.
/trueos/sys/boot/fdt/dts/arm/
HDtegra20.dtsi58 reg = < 0x50040200 0x100 >, /* Global Timer Registers */
/trueos/cddl/contrib/opensolaris/cmd/sgs/messages/
HDsgs.ident27 # Global message identifiers for the sgs utilities. This information is read
/trueos/cddl/contrib/dtracetoolkit/Examples/
HDjs_objnew_example.txt28 <null> Global Scope Polluter 1
HDjs_objcpu_example.txt139 Global Scope Polluter
/trueos/contrib/llvm/patches/
HDpatch-r262264-llvm-r200453-sparc.diff27 // Global addresses, constant pool entries
/trueos/contrib/llvm/tools/clang/include/clang/AST/
HDNestedNameSpecifier.h86 Global enumerator
/trueos/contrib/llvm/lib/Target/R600/
HDAMDILInstrInfo.td80 // Global address space loads

123456