Home
last modified time | relevance | path

Searched refs:ob (Results 1 – 25 of 76) sorted by relevance

1234

/external/tremolo/Tremolo/
Dframing.c102 ogg_buffer *ob; in _fetch_buffer() local
107 ob=bs->unused_buffers; in _fetch_buffer()
108 bs->unused_buffers=ob->ptr.next; in _fetch_buffer()
111 if(ob->size<bytes){ in _fetch_buffer()
112 ob->data=_ogg_realloc(ob->data,bytes); in _fetch_buffer()
113 ob->size=bytes; in _fetch_buffer()
117 ob=_ogg_malloc(sizeof(*ob)); in _fetch_buffer()
118 ob->data=_ogg_malloc(bytes<16?16:bytes); in _fetch_buffer()
119 ob->size=bytes; in _fetch_buffer()
122 ob->refcount=1; in _fetch_buffer()
[all …]
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
Dweakref.pxd5 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 not
[all …]
/external/libcxxabi/src/Unwind/
DUnwindLevel1-gcc-ext.c243 _LIBUNWIND_EXPORT void __register_frame_info_bases(const void *fde, void *ob, in __register_frame_info_bases() argument
246 (void)ob; in __register_frame_info_bases()
250 fde, ob, tb, db); in __register_frame_info_bases()
254 _LIBUNWIND_EXPORT void __register_frame_info(const void *fde, void *ob) { in __register_frame_info() argument
256 (void)ob; in __register_frame_info()
257 _LIBUNWIND_TRACE_API("__register_frame_info(%p, %p)\n", fde, ob); in __register_frame_info()
262 void *ob, void *tb, in __register_frame_info_table_bases() argument
265 (void)ob; in __register_frame_info_table_bases()
269 "(%p,%p, %p, %p)\n", fde, ob, tb, db); in __register_frame_info_table_bases()
273 _LIBUNWIND_EXPORT void __register_frame_info_table(const void *fde, void *ob) { in __register_frame_info_table() argument
[all …]
DUnwind_AppleExtras.cpp157 for (libgcc_object *ob = head->unseen_objects; ob != NULL; ob = ob->next) { in checkKeyMgrRegisteredFDEs() local
162 (uintptr_t)ob->fde, &fdeInfo, &cieInfo); in checkKeyMgrRegisteredFDEs()
/external/llvm/lib/CodeGen/
DSpillPlacement.cpp264 unsigned ob = bundles->getBundle(I->Number, 1); in addConstraints() local
265 activate(ob); in addConstraints()
266 nodes[ob].addBias(Freq, I->Exit); in addConstraints()
279 unsigned ob = bundles->getBundle(*I, 1); in addPrefSpill() local
281 activate(ob); in addPrefSpill()
283 nodes[ob].addBias(Freq, PrefSpill); in addPrefSpill()
292 unsigned ob = bundles->getBundle(Number, 1); in addLinks() local
295 if (ib == ob) in addLinks()
298 activate(ob); in addLinks()
301 if (nodes[ob].Links.empty() && !nodes[ob].mustSpill()) in addLinks()
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
Ddraw_pt_so_emit.c108 int ob = state->output[slot].output_buffer; in so_emit_prim() local
110 if ((buffer_total_bytes[ob] + num_comps * sizeof(float)) > in so_emit_prim()
111 draw->so.targets[ob]->target.buffer_size) { in so_emit_prim()
114 buffer_total_bytes[ob] += num_comps * sizeof(float); in so_emit_prim()
129 int ob = state->output[slot].output_buffer; in so_emit_prim() local
131 buffer = (float *)((char *)draw->so.targets[ob]->mapping + in so_emit_prim()
132 draw->so.targets[ob]->target.buffer_offset + in so_emit_prim()
133 draw->so.targets[ob]->internal_offset); in so_emit_prim()
135 draw->so.targets[ob]->internal_offset += num_comps * sizeof(float); in so_emit_prim()
/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_pt_so_emit.c108 int ob = state->output[slot].output_buffer; in so_emit_prim() local
110 if ((buffer_total_bytes[ob] + num_comps * sizeof(float)) > in so_emit_prim()
111 draw->so.targets[ob]->target.buffer_size) { in so_emit_prim()
114 buffer_total_bytes[ob] += num_comps * sizeof(float); in so_emit_prim()
129 int ob = state->output[slot].output_buffer; in so_emit_prim() local
131 buffer = (float *)((char *)draw->so.targets[ob]->mapping + in so_emit_prim()
132 draw->so.targets[ob]->target.buffer_offset + in so_emit_prim()
133 draw->so.targets[ob]->internal_offset); in so_emit_prim()
135 draw->so.targets[ob]->internal_offset += num_comps * sizeof(float); in so_emit_prim()
/external/libmtp/src/
Dlibmtp.c2299 PTPObject *ob; in get_handles_recursively() local
2300 ret = ptp_object_want(params,currentHandles.Handler[i],PTPOBJECT_OBJECTINFO_LOADED, &ob); in get_handles_recursively()
2302 if (ob->oi.ObjectFormat == PTP_OFC_Association) in get_handles_recursively()
2314 LIBMTP_file_t * obj2file(LIBMTP_mtpdevice_t *device, PTPObject *ob) in obj2file() argument
2323 if (ob->oi.Filename == NULL) in obj2file()
2324 ob->oi.Filename = strdup("<null>"); in obj2file()
2326 if (ob->oi.Keywords == NULL) in obj2file()
2327 ob->oi.Keywords = strdup("<null>"); in obj2file()
2332 file->parent_id = ob->oi.ParentObject; in obj2file()
2333 file->storage_id = ob->oi.StorageID; in obj2file()
[all …]
Dptp.c2774 ptp_free_object (PTPObject *ob) in ptp_free_object() argument
2777 if (!ob) return; in ptp_free_object()
2779 ptp_free_objectinfo (&ob->oi); in ptp_free_object()
2780 for (i=0;i<ob->nrofmtpprops;i++) in ptp_free_object()
2781 ptp_destroy_object_prop(&ob->mtpprops[i]); in ptp_free_object()
2782 ob->flags = 0; in ptp_free_object()
4677 PTPObject *ob; in ptp_find_object_prop_in_cache() local
4680 ret = ptp_object_find (params, handle, &ob); in ptp_find_object_prop_in_cache()
4683 prop = ob->mtpprops; in ptp_find_object_prop_in_cache()
4684 for (i=0;i<ob->nrofmtpprops;i++) { in ptp_find_object_prop_in_cache()
[all …]
/external/chromium_org/tools/json_schema_compiler/dart_test/
Ddictionaries.dart17 …DictionariesInnerType({String s, int b, int i, int l, double d, FileEntry f, String os, int ob, in…
32 if (ob != null)
33 this.ob = ob;
101 /// Documentation for the optional boolean ob.
102 int get ob => JS('int', '#.ob', this._jsObject);
104 void set ob(int ob) {
105 JS('void', '#.ob = #', this._jsObject, ob);
Ddictionaries.idl30 // Documentation for the optional boolean ob.
31 int ob;
/external/elfutils/0.153/lib/
Deu-config.h144 #define obstack_calloc(ob, size) \ argument
145 ({ size_t _s = (size); memset (obstack_alloc (ob, _s), '\0', _s); })
146 #define obstack_strdup(ob, str) \ argument
147 ({ const char *_s = (str); obstack_copy0 (ob, _s, strlen (_s)); })
148 #define obstack_strndup(ob, str, n) \ argument
149 ({ const char *_s = (str); obstack_copy0 (ob, _s, strnlen (_s, n)); })
/external/chromium_org/third_party/cython/src/Cython/Utility/
DImportExport.c519 PyObject *ob = PyCapsule_New(vtable, 0, 0); in __Pyx_SetVtable() local
521 PyObject *ob = PyCObject_FromVoidPtr(vtable, 0); in __Pyx_SetVtable()
523 if (!ob) in __Pyx_SetVtable()
525 if (PyDict_SetItem(dict, PYIDENT("__pyx_vtable__"), ob) < 0) in __Pyx_SetVtable()
527 Py_DECREF(ob); in __Pyx_SetVtable()
530 Py_XDECREF(ob); in __Pyx_SetVtable()
543 PyObject *ob = PyObject_GetItem(dict, PYIDENT("__pyx_vtable__")); in __Pyx_GetVtable() local
544 if (!ob) in __Pyx_GetVtable()
547 ptr = PyCapsule_GetPointer(ob, 0); in __Pyx_GetVtable()
549 ptr = PyCObject_AsVoidPtr(ob); in __Pyx_GetVtable()
[all …]
DModuleSetupCode.c71 #define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt) argument
72 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type) argument
73 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size) argument
/external/valgrind/main/none/tests/
Dshorts.c4 typedef struct { short ot; short ob; short nt; short nb; } Stuff; member
9 short oldbot = w->ob; in PaintThumb()
31 st.ob = -301; in main()
/external/chromium_org/chrome/browser/devtools/device/usb/
Dandroid_rsa.cc151 int ob = kBigIntSize - 1; in BnDiv() local
153 for (; ob > 0 && !b[ob]; --ob) {} in BnDiv()
157 int digit = a[oa] < b[ob] ? oa - ob - 1 : oa - ob; in BnDiv()
/external/chromium_org/third_party/boringssl/src/crypto/obj/
Dobj_dat.pl85 %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/openssl/crypto/objects/
Dobj_dat.pl85 %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;
Dobj_dat.c292 ASN1_OBJECT ob; in OBJ_nid2obj() local
308 ad.obj= &ob; in OBJ_nid2obj()
309 ob.nid=n; in OBJ_nid2obj()
324 ASN1_OBJECT ob; in OBJ_nid2sn() local
340 ad.obj= &ob; in OBJ_nid2sn()
341 ob.nid=n; in OBJ_nid2sn()
356 ASN1_OBJECT ob; in OBJ_nid2ln() local
372 ad.obj= &ob; in OBJ_nid2ln()
373 ob.nid=n; in OBJ_nid2ln()
/external/libcxxabi/include/
Dunwind.h337 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/
DmakesRGB.c213 png_uint_16 base = png_sRGB_base[ibase >> 7], trybase = base, ob=base; in main() local
291 if (base != ob || delta != od) in main()
294 ibase>>7, ob, od, base, delta, eco, ecbase); in main()
297 printf("/* table[%u]={%u,%u} %u errors */\n", ibase>>7, ob, od, in main()
/external/yaffs2/yaffs2/utils/
Dmkyaffsimage.c64 objItem *oa, *ob; in obj_compare() local
67 ob = (objItem *)b; in obj_compare()
69 if(oa->dev < ob->dev) return -1; in obj_compare()
70 if(oa->dev > ob->dev) return 1; in obj_compare()
71 if(oa->ino < ob->ino) return -1; in obj_compare()
72 if(oa->ino > ob->ino) return 1; in obj_compare()
Dmkyaffs2image.c88 objItem *oa, *ob; in obj_compare() local
91 ob = (objItem *)b; in obj_compare()
93 if(oa->dev < ob->dev) return -1; in obj_compare()
94 if(oa->dev > ob->dev) return 1; in obj_compare()
95 if(oa->ino < ob->ino) return -1; in obj_compare()
96 if(oa->ino > ob->ino) return 1; in obj_compare()
/external/clang/test/CodeGenObjC/
Ddot-syntax-1.m249 Bot##N *ob = [[Bot##N alloc] init]; \
250 int x = ob.x; \
251 ob.x = 10; }
/external/elfutils/0.153/libcpu/
Di386_parse.y766 #define obstack_grow_str(ob, str) obstack_grow (ob, str, strlen (str)) argument
773 static struct obstack ob; in fillin_arg() local
778 obstack_init (&ob); in fillin_arg()
801 obstack_1grow (&ob, '$'); in fillin_arg()
805 obstack_grow_str (&ob, "!!!INVALID!!!"); in fillin_arg()
816 obstack_grow_str (&ob, fieldname); in fillin_arg()
854 if (obstack_object_size (&ob) == 0) in fillin_arg()
855 obstack_grow_str (&ob, "string"); in fillin_arg()
856 obstack_1grow (&ob, '\0'); in fillin_arg()
857 char *fct = obstack_finish (&ob); in fillin_arg()

1234