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

1 2

  /external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
weakref.pxd 5 bint PyWeakref_Check(object ob)
6 # Return true if ob is either a reference or proxy object.
8 bint PyWeakref_CheckRef(object ob)
9 # Return true if ob is a reference object.
11 bint PyWeakref_CheckProxy(ob)
12 # Return true if *ob* is a proxy object.
14 object PyWeakref_NewRef(object ob, object callback)
15 # Return a weak reference object for the object ob. This will
19 # receives notification when ob is garbage collected; it should
21 # object itself. callback may also be None or NULL. If ob is no
    [all...]
  /external/libcxxabi/src/Unwind/
UnwindLevel1-gcc-ext.c 243 _LIBUNWIND_EXPORT void __register_frame_info_bases(const void *fde, void *ob,
246 (void)ob;
250 fde, ob, tb, db);
254 _LIBUNWIND_EXPORT void __register_frame_info(const void *fde, void *ob) {
256 (void)ob;
257 _LIBUNWIND_TRACE_API("__register_frame_info(%p, %p)\n", fde, ob);
262 void *ob, void *tb,
265 (void)ob;
269 "(%p,%p, %p, %p)\n", fde, ob, tb, db);
273 _LIBUNWIND_EXPORT void __register_frame_info_table(const void *fde, void *ob) {
    [all...]
Unwind_AppleExtras.cpp 157 for (libgcc_object *ob = head->unseen_objects; ob != NULL; ob = ob->next) {
162 (uintptr_t)ob->fde, &fdeInfo, &cieInfo);
  /external/llvm/lib/CodeGen/
SpillPlacement.cpp 264 unsigned ob = bundles->getBundle(I->Number, 1); local
265 activate(ob);
266 nodes[ob].addBias(Freq, I->Exit);
279 unsigned ob = bundles->getBundle(*I, 1); local
281 activate(ob);
283 nodes[ob].addBias(Freq, PrefSpill);
292 unsigned ob = bundles->getBundle(Number, 1); local
295 if (ib == ob)
298 activate(ob);
301 if (nodes[ob].Links.empty() && !nodes[ob].mustSpill()
    [all...]
  /external/elfutils/0.153/lib/
eu-config.h 144 #define obstack_calloc(ob, size) \
145 ({ size_t _s = (size); memset (obstack_alloc (ob, _s), '\0', _s); })
146 #define obstack_strdup(ob, str) \
147 ({ const char *_s = (str); obstack_copy0 (ob, _s, strlen (_s)); })
148 #define obstack_strndup(ob, str, n) \
149 ({ const char *_s = (str); obstack_copy0 (ob, _s, strnlen (_s, n)); })
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pt_so_emit.c 108 int ob = state->output[slot].output_buffer; local
110 if ((buffer_total_bytes[ob] + num_comps * sizeof(float)) >
111 draw->so.targets[ob]->target.buffer_size) {
114 buffer_total_bytes[ob] += num_comps * sizeof(float);
129 int ob = state->output[slot].output_buffer; local
131 buffer = (float *)((char *)draw->so.targets[ob]->mapping +
132 draw->so.targets[ob]->target.buffer_offset +
133 draw->so.targets[ob]->internal_offset);
135 draw->so.targets[ob]->internal_offset += num_comps * sizeof(float);
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pt_so_emit.c 108 int ob = state->output[slot].output_buffer; local
110 if ((buffer_total_bytes[ob] + num_comps * sizeof(float)) >
111 draw->so.targets[ob]->target.buffer_size) {
114 buffer_total_bytes[ob] += num_comps * sizeof(float);
129 int ob = state->output[slot].output_buffer; local
131 buffer = (float *)((char *)draw->so.targets[ob]->mapping +
132 draw->so.targets[ob]->target.buffer_offset +
133 draw->so.targets[ob]->internal_offset);
135 draw->so.targets[ob]->internal_offset += num_comps * sizeof(float);
  /external/chromium_org/third_party/cython/src/Cython/Utility/
ImportExport.c 519 PyObject *ob = PyCapsule_New(vtable, 0, 0); local
521 PyObject *ob = PyCObject_FromVoidPtr(vtable, 0);
523 if (!ob)
525 if (PyDict_SetItem(dict, PYIDENT("__pyx_vtable__"), ob) < 0)
527 Py_DECREF(ob);
530 Py_XDECREF(ob);
543 PyObject *ob = PyObject_GetItem(dict, PYIDENT("__pyx_vtable__")); local
544 if (!ob)
547 ptr = PyCapsule_GetPointer(ob, 0);
549 ptr = PyCObject_AsVoidPtr(ob);
    [all...]
Builtins.c 378 #define PyAnySet_CheckExact(ob) \
379 ((ob)->ob_type == &PySet_Type || \
380 (ob)->ob_type == &PyFrozenSet_Type)
ModuleSetupCode.c 71 #define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt)
72 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
73 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size)
  /external/libmtp/src/
libmtp.c 2299 PTPObject *ob; local
2455 PTPObject *ob; local
2590 PTPObject *ob, *xob; local
3924 PTPObject *ob, *xob; local
4065 PTPObject *ob; local
4322 PTPObject *ob; local
4475 PTPObject *ob; local
4577 PTPObject *ob; local
4788 PTPObject *ob; local
4855 PTPObject *ob; local
6523 PTPObject *ob; local
6689 PTPObject *ob; local
6899 PTPObject *ob; local
6966 PTPObject *ob; local
7765 PTPObject *ob; local
7837 PTPObject *ob; local
7887 PTPObject *ob; local
8180 PTPObject *ob; local
8274 PTPObject *ob; local
    [all...]
ptp.c 4677 PTPObject *ob; local
4696 PTPObject *ob; local
4715 PTPObject *ob = (PTPObject*)b; local
4802 PTPObject *ob; local
4972 PTPObject *ob; local
    [all...]
  /external/clang/test/CodeGen/
2009-01-21-InvalidIterator.c 73 struct object ob; local
  /external/chromium_org/chrome/browser/devtools/device/usb/
android_rsa.cc 151 int ob = kBigIntSize - 1; local
153 for (; ob > 0 && !b[ob]; --ob) {}
157 int digit = a[oa] < b[ob] ? oa - ob - 1 : oa - ob;
  /external/libcxxabi/include/
unwind.h 337 extern void __register_frame_info_bases(const void *fde, void *ob, void *tb,
339 extern void __register_frame_info(const void *fde, void *ob)
341 extern void __register_frame_info_table_bases(const void *fde, void *ob,
344 extern void __register_frame_info_table(const void *fde, void *ob)
  /external/libpng/contrib/tools/
makesRGB.c 213 png_uint_16 base = png_sRGB_base[ibase >> 7], trybase = base, ob=base; local
291 if (base != ob || delta != od)
294 ibase>>7, ob, od, base, delta, eco, ecbase);
297 printf("/* table[%u]={%u,%u} %u errors */\n", ibase>>7, ob, od,
  /external/openssl/crypto/objects/
obj_dat.c 292 ASN1_OBJECT ob; local
308 ad.obj= &ob;
309 ob.nid=n;
324 ASN1_OBJECT ob; local
340 ad.obj= &ob;
341 ob.nid=n;
356 ASN1_OBJECT ob; local
372 ad.obj= &ob;
373 ob.nid=n;
obj_dat.pl 85 %ob=&expand_obj(*objd);
167 push(@ob,sprintf("%2d,\t/* %-32s %s */\n",$_,$m,$v));
240 printf OUT "#define NUM_OBJ %d\n\n",$#ob+1;
279 print OUT @ob;
  /external/elfutils/0.153/libcpu/
i386_parse.y 766 #define obstack_grow_str(ob, str) obstack_grow (ob, str, strlen (str))
773 static struct obstack ob;
778 obstack_init (&ob);
801 obstack_1grow (&ob, '$');
805 obstack_grow_str (&ob, "!!!INVALID!!!");
816 obstack_grow_str (&ob, fieldname);
854 if (obstack_object_size (&ob) == 0)
855 obstack_grow_str (&ob, "string");
856 obstack_1grow (&ob, '\0')
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/obj/
obj_dat.pl 85 %ob=&expand_obj(*objd);
167 push(@ob,sprintf("%2d,\t/* %-32s %s */\n",$_,$m,$v));
236 printf OUT "#define NUM_OBJ %d\n\n",$#ob+1;
275 print OUT @ob;
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/signin/
OAuth2TokenServiceIntegrationTest.java 373 TestObserver ob = new TestObserver() { local
381 addObserver(ob);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/catblock/
loldogs.js 33 "http://ihasahotdog.files.wordpress.com/2011/06/funny-dog-pictures-goggie-ob-teh-week-i-love-you.jpg",
37 "http://ihasahotdog.files.wordpress.com/2011/06/funny-dog-pictures-goggie-ob-teh-week-snaaaaacks-i-love-snaaaaacks.jpg",
51 "http://ihasahotdog.files.wordpress.com/2011/06/funny-dog-pictures-goggie-ob-teh-week-pudge-is-teh-boss.jpg",
  /external/bluetooth/bluedroid/embdrv/sbc/decoder/include/
oi_codec_sbc_private.h 211 PRIVATE void OI_SBC_ReadSamples(OI_CODEC_SBC_DECODER_CONTEXT *common, OI_BITSTREAM *ob);
  /external/chromium_org/third_party/bintrees/bintrees/
cwalker.c 67 #define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt)
68 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
69 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size)
3501 PyObject *ob = PyCapsule_New(vtable, 0, 0); local
    [all...]
qavltree.c 67 #define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt)
68 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
69 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size)
3102 PyObject *ob = PyMapping_GetItemString(dict, (char *)"__pyx_vtable__"); local
    [all...]

Completed in 1232 milliseconds

1 2