HomeSort by relevance Sort by last modified time
    Searched refs:gv (Results 1 - 25 of 35) sorted by null

1 2

  /ndk/sources/cxx-stl/gabi++/src/
one_time_construction.cc 59 extern "C" int __cxa_guard_acquire(int volatile * gv)
63 // while gv points to a volatile value, we use the
66 int guard = *gv;
79 *gv = 0x100;
87 *gv = guard | 0x200;
92 extern "C" void __cxa_guard_release(int volatile * gv)
96 int guard = *gv;
98 *gv = 0x1;
105 extern "C" void __cxa_guard_abort(int volatile * gv)
109 int guard = *gv;
    [all...]
  /bionic/libstdc++/src/
one_time_construction.cpp 70 extern "C" int __cxa_guard_acquire(_guard_t* gv)
78 if (__bionic_cmpxchg(0, pending, &gv->state) == 0) {
82 __bionic_cmpxchg(pending, waiting, &gv->state); // Indicate there is a waiter
83 __futex_wait(&gv->state, waiting, NULL);
85 if (gv->state != ready) // __cxa_guard_abort was called, let every thread try since there is no return code for this condition
92 extern "C" void __cxa_guard_release(_guard_t* gv)
98 if (__bionic_cmpxchg(pending, ready, &gv->state) == 0) {
102 gv->state = ready;
103 __futex_wake(&gv->state, 0x7fffffff);
106 extern "C" void __cxa_guard_abort(_guard_t* gv)
    [all...]
  /external/llvm/lib/Target/PTX/
PTXAsmPrinter.h 49 void EmitVariableDeclaration(const GlobalVariable *gv);
PTXAsmPrinter.cpp 268 void PTXAsmPrinter::EmitVariableDeclaration(const GlobalVariable *gv) {
270 if (EmitSpecialLLVMGlobal(gv))
273 MCSymbol *gvsym = Mang->getSymbol(gv);
281 if (gv->isDeclaration())
285 os << '.' << getStateSpaceName(gv->getType()->getAddressSpace()) << ' ';
288 unsigned alignment = gv->getAlignment();
290 os << ".align " << gv->getAlignment() << ' ';
293 if (PointerType::classof(gv->getType())) {
294 PointerType* pointerTy = dyn_cast<PointerType>(gv->getType());
326 if (gv->hasInitializer())
    [all...]
  /external/webkit/Source/WebCore/plugins/qt/
PluginPackageQt.cpp 43 NPP_GetValueProcPtr gv = (NPP_GetValueProcPtr)m_module->resolve("NP_GetValue");
47 if (!gm || !gv)
51 NPError err = gv(0, NPPVpluginNameString, (void*) &buf);
56 err = gv(0, NPPVpluginDescriptionString, (void*) &buf);
  /external/llvm/bindings/ocaml/executionengine/
llvm_executionengine.mli 51 (** [as_float fpty gv] unboxes the floating point-valued generic value [gv] of
56 (** [as_pointer gv] unboxes the pointer-valued generic value [gv]. See the
60 (** [as_int32 gv] unboxes the integer-valued generic value [gv] as an [int32].
61 Is invalid if [gv] has a bitwidth greater than 32 bits. See the field
65 (** [as_int gv] unboxes the integer-valued generic value [gv] as an [int].
66 Is invalid if [gv] has a bitwidth greater than the host bit width (but th
    [all...]
  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 125 GenericValue gv = EE->runFunction(FooF, noargs); local
128 outs() << "Result: " << gv.IntVal << "\n";
  /external/astl/src/
ios_base.cpp 38 extern "C" int __cxa_guard_acquire(int volatile * gv);
39 extern "C" void __cxa_guard_release(int volatile * gv);
  /external/nist-sip/java/gov/nist/core/
NameValue.java 165 GenericObject gv = (GenericObject) value; local
167 gv.encode(buffer);
193 GenericObject gv = (GenericObject) value; local
194 gv.encode(buffer);
  /external/llvm/tools/lto/
LTOModule.cpp 296 if (GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
297 addObjCClass(gv);
303 if (GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
304 addObjCCategory(gv);
310 if (GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
311 addObjCClassRef(gv);
341 GlobalVariable *gv = dyn_cast<GlobalVariable>(def); local
342 if (gv && gv->isConstant())
  /external/llvm/lib/Support/
GraphWriter.cpp 172 sys::Path gv(LLVM_PATH_GV);
174 args.push_back(gv.c_str());
180 if (!ExecGraphViewer(gv, args, PSFilename, wait, ErrMsg))
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 147 GenericValue gv = ee->runFunction(brainf_func, args); local
  /cts/tests/src/android/app/cts/
ExpandableListTestActivity.java 82 final View gv = a.getGroupView(0, true, convertView, v); local
90 v.performItemClick(gv, i, k);
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 233 GenericValue gv = p->EE->runFunction(p->F, Args); local
235 return (void*)(intptr_t)gv.IntVal.getZExtValue();
  /external/clang/test/Parser/
altivec.c 93 gccvector unsigned int gv = v; local
cxx-altivec.cpp 93 gccvector unsigned int gv = v; local
  /external/webkit/Tools/DumpRenderTree/mac/PerlSupport/
DumpRenderTreeSupport_wrapPregenerated.c 781 GV *gv=*(GV**)hv_fetch(stash, "OWNER", 5, TRUE); local
782 if (!isGV(gv))
783 gv_init(gv, stash, "OWNER", 5, FALSE);
784 hv=GvHVn(gv);
  /ndk/sources/host-tools/make-3.81/
variable.c 900 struct variable *gv;
902 gv = lookup_variable_in_set (v->name, strlen(v->name),
904 if (gv)
905 v->export = gv->export;
890 struct variable *gv; local
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli     [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp 234 void CodeGenModule::setGlobalVisibility(llvm::GlobalValue *GV,
237 if (GV->hasLocalLinkage()) {
238 GV->setVisibility(llvm::GlobalValue::DefaultVisibility);
244 if (LV.visibilityExplicit() || !GV->hasAvailableExternallyLinkage())
245 GV->setVisibility(GetLLVMVisibility(LV.visibility()));
250 void CodeGenModule::setTypeVisibility(llvm::GlobalValue *GV,
253 setGlobalVisibility(GV, RD);
270 if (GV->getLinkage() != llvm::GlobalVariable::LinkOnceODRLinkage ||
271 GV->getVisibility() != llvm::GlobalVariable::DefaultVisibility)
311 GV->setVisibility(llvm::GlobalValue::HiddenVisibility)
694 llvm::GlobalValue *gv = new llvm::GlobalVariable(getModule(), local
707 llvm::GlobalValue *gv = new llvm::GlobalVariable(getModule(), s->getType(), local
    [all...]
  /external/valgrind/main/perf/
tinycc.c 10426 int gv(int rc) function
    [all...]
  /external/icu4c/data/curr/
resfiles.mk 70 gu.txt guz.txt gv.txt ha.txt ha_Latn.txt\
  /external/icu4c/data/lang/
resfiles.mk 62 gl.txt gsw.txt gu.txt guz.txt gv.txt\
  /external/icu4c/data/region/
resfiles.mk 62 guz.txt gv.txt ha.txt ha_Latn.txt haw.txt\
  /external/icu4c/data/zone/
resfiles.mk 64 gu.txt guz.txt gv.txt ha.txt ha_Latn.txt\

Completed in 882 milliseconds

1 2