HomeSort by relevance Sort by last modified time
    Searched refs:gv (Results 1 - 25 of 36) 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 68 extern "C" int __cxa_guard_acquire(_guard_t* gv)
76 if (__bionic_cmpxchg(0, pending, &gv->state) == 0) {
80 __bionic_cmpxchg(pending, waiting, &gv->state); // Indicate there is a waiter
81 __futex_wait(&gv->state, waiting, NULL);
83 if (gv->state != ready) // __cxa_guard_abort was called, let every thread try since there is no return code for this condition
90 extern "C" void __cxa_guard_release(_guard_t* gv)
96 if (__bionic_cmpxchg(pending, ready, &gv->state) == 0) {
100 gv->state = ready;
101 __futex_wake(&gv->state, 0x7fffffff);
104 extern "C" void __cxa_guard_abort(_guard_t* gv)
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXUtilities.cpp 63 static void cacheAnnotationFromMD(const Module *m, const GlobalValue *gv) {
75 if (entity != gv)
82 if (tmp.empty()) // no annotations for this gv
86 (*annotationCache)[m][gv] = tmp;
89 tmp1[gv] = tmp;
94 bool llvm::findOneNVVMAnnotation(const GlobalValue *gv, std::string prop,
96 const Module *m = gv->getParent();
98 cacheAnnotationFromMD(m, gv);
99 else if ((*annotationCache)[m].find(gv) == (*annotationCache)[m].end())
100 cacheAnnotationFromMD(m, gv);
    [all...]
NVPTXAsmPrinter.cpp 77 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
78 Globals.insert(GV);
88 /// VisitGlobalVariableForEmission - Add \p GV to the list of GlobalVariable
91 void VisitGlobalVariableForEmission(GlobalVariable *GV,
96 if (Visited.count(GV)) return;
99 if (Visiting.count(GV))
103 Visiting.insert(GV);
107 for (unsigned i = 0, e = GV->getNumOperands(); i != e; ++i)
108 DiscoverDependentGlobals(GV->getOperand(i), Others);
115 Order.push_back(GV);
    [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/eigen/bench/
spmv.cpp 194 std::vector<Scalar> gv(cols), gres(rows);
195 Map<Matrix<Scalar,Dynamic,1> >(&gv[0], cols) = dv;
198 SPMV_BENCH(gmm::mult(gm, gv, gres));
201 SPMV_BENCH(gmm::mult(gmm::transposed(gm), gv, gres));
  /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/lib/Support/
GraphWriter.cpp 182 sys::Path gv(LLVM_PATH_GV);
184 args.push_back(gv.c_str());
190 if (!ExecGraphViewer(gv, args, PSFilename, wait, ErrMsg))
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 146 GenericValue gv = ee->runFunction(brainf_func, args); local
  /external/llvm/tools/lto/
LTOModule.cpp 452 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
453 addObjCClass(gv);
459 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
460 addObjCCategory(gv);
466 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
467 addObjCClassRef(gv);
496 const GlobalVariable *gv = dyn_cast<GlobalVariable>(def); local
497 if (gv && gv->isConstant())
  /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 103 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/lib/Target/R600/
AMDILPeepholeOptimizer.cpp 1075 GlobalVariable *gv = dyn_cast<GlobalVariable>(lInst->getPointerOperand()); local
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli     [all...]
  /external/valgrind/main/perf/
tinycc.c 10426 int gv(int rc) function
    [all...]
  /external/icu4c/data/curr/
resfiles.mk 72 guz.txt gv.txt ha.txt ha_Latn.txt haw.txt\
  /external/icu4c/data/lang/
resfiles.mk 64 gsw.txt gu.txt guz.txt gv.txt ha.txt\
  /external/icu4c/data/region/
resfiles.mk 64 gsw.txt gu.txt guz.txt gv.txt ha.txt\
  /external/icu4c/data/zone/
resfiles.mk 75 guz.txt gv.txt ha.txt ha_Latn.txt haw.txt\

Completed in 729 milliseconds

1 2