HomeSort by relevance Sort by last modified time
    Searched refs:gv (Results 1 - 25 of 50) 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/SystemZ/
SystemZConstantPoolValue.cpp 19 SystemZConstantPoolValue(const GlobalValue *gv,
21 : MachineConstantPoolValue(gv->getType()), GV(gv), Modifier(modifier) {}
24 SystemZConstantPoolValue::Create(const GlobalValue *GV,
26 return new SystemZConstantPoolValue(GV, Modifier);
48 if (ZCPV->GV == GV && ZCPV->Modifier == Modifier)
56 ID.AddPointer(GV);
61 O << GV << "@" << int(Modifier)
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXUtilities.cpp 62 static void cacheAnnotationFromMD(const Module *m, const GlobalValue *gv) {
74 if (entity != gv)
81 if (tmp.empty()) // no annotations for this gv
85 (*annotationCache)[m][gv] = tmp;
88 tmp1[gv] = tmp;
93 bool llvm::findOneNVVMAnnotation(const GlobalValue *gv, std::string prop,
95 const Module *m = gv->getParent();
97 cacheAnnotationFromMD(m, gv);
98 else if ((*annotationCache)[m].find(gv) == (*annotationCache)[m].end())
99 cacheAnnotationFromMD(m, gv);
    [all...]
  /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";
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
BidiRenderer.java 167 GlyphVector gv = font.mFont.layoutGlyphVector(frc, text, start, limit, flag); local
168 int ng = gv.getNumGlyphs();
169 int[] ci = gv.getGlyphCharIndices(0, ng, null);
171 float adv = gv.getGlyphMetrics(i).getAdvanceX();
179 graphics.drawGlyphVector(gv, x, y);
  /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 196 std::string gv(LLVM_PATH_GV);
198 args.push_back(gv.c_str());
204 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 437 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
438 addObjCClass(gv);
444 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
445 addObjCCategory(gv);
451 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
452 addObjCClassRef(gv);
481 const GlobalVariable *gv = dyn_cast<GlobalVariable>(def); local
482 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();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 276 gv = self.globalsviewer
278 if not gv:
281 if gv:
283 gv.close()
289 gv = self.globalsviewer
296 if lv and gv and ldict is gdict:
300 if gv:
301 gv.load_dict(gdict, force, self.pyshell.interp.rpcclt)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 276 gv = self.globalsviewer
278 if not gv:
281 if gv:
283 gv.close()
289 gv = self.globalsviewer
296 if lv and gv and ldict is gdict:
300 if gv:
301 gv.load_dict(gdict, force, self.pyshell.interp.rpcclt)
  /external/clang/test/Parser/
altivec.c 103 gccvector unsigned int gv = v; local
cxx-altivec.cpp 93 gccvector unsigned int gv = v; local
  /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/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 1132 GlobalVariable *gv = dyn_cast<GlobalVariable>(lInst->getPointerOperand()); local
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 1132 GlobalVariable *gv = dyn_cast<GlobalVariable>(lInst->getPointerOperand()); local
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli     [all...]
  /external/chromium_org/third_party/icu/source/data/lang/
resfiles.mk 56 gu.txt guz.txt gv.txt ha.txt ha_Latn.txt\
  /external/chromium_org/third_party/icu/source/data/region/
resfiles.mk 56 gv.txt ha.txt ha_Latn.txt ha_Latn_GH.txt ha_Latn_NE.txt\
  /external/chromium_org/third_party/icu/source/data/zone/
resfiles.mk 56 gl.txt gsw.txt gu.txt guz.txt gv.txt\

Completed in 417 milliseconds

1 2