/external/tremolo/Tremolo/ |
D | framing.c | 102 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/libunwind_llvm/src/ |
D | UnwindLevel1-gcc-ext.c | 256 _LIBUNWIND_EXPORT void __register_frame_info_bases(const void *fde, void *ob, in __register_frame_info_bases() argument 259 (void)ob; in __register_frame_info_bases() 263 fde, ob, tb, db); in __register_frame_info_bases() 267 _LIBUNWIND_EXPORT void __register_frame_info(const void *fde, void *ob) { in __register_frame_info() argument 269 (void)ob; in __register_frame_info() 270 _LIBUNWIND_TRACE_API("__register_frame_info(%p, %p)\n", fde, ob); in __register_frame_info() 275 void *ob, void *tb, in __register_frame_info_table_bases() argument 278 (void)ob; in __register_frame_info_table_bases() 282 "(%p,%p, %p, %p)\n", fde, ob, tb, db); in __register_frame_info_table_bases() 286 _LIBUNWIND_EXPORT void __register_frame_info_table(const void *fde, void *ob) { in __register_frame_info_table() argument [all …]
|
D | Unwind_AppleExtras.cpp | 157 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/ |
D | SpillPlacement.cpp | 255 unsigned ob = bundles->getBundle(I->Number, 1); in addConstraints() local 256 activate(ob); in addConstraints() 257 nodes[ob].addBias(Freq, I->Exit); in addConstraints() 270 unsigned ob = bundles->getBundle(*I, 1); in addPrefSpill() local 272 activate(ob); in addPrefSpill() 274 nodes[ob].addBias(Freq, PrefSpill); in addPrefSpill() 283 unsigned ob = bundles->getBundle(Number, 1); in addLinks() local 286 if (ib == ob) in addLinks() 289 activate(ob); in addLinks() 292 if (nodes[ob].Links.empty() && !nodes[ob].mustSpill()) in addLinks() [all …]
|
/external/libmtp/src/ |
D | libmtp.c | 2299 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 …]
|
D | ptp.c | 2774 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/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pt_so_emit.c | 108 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/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/services/ |
D | bs.py | 81 ob = self.sd.get_obj('output_bucket') 83 if ob: 84 if ib and ob.name == ib.name: 88 for k in ob: 132 ob = self.sd.get_obj('output_bucket') 134 if ob: 135 if ib and ob.name == ib.name: 138 for k in ob: 140 print('The output_bucket (%s) contains %d keys' % (ob.name, total))
|
/external/elfutils/lib/ |
D | eu-config.h | 125 #define obstack_calloc(ob, size) \ argument 126 ({ size_t _s = (size); memset (obstack_alloc (ob, _s), '\0', _s); }) 127 #define obstack_strdup(ob, str) \ argument 128 ({ const char *_s = (str); obstack_copy0 (ob, _s, strlen (_s)); }) 129 #define obstack_strndup(ob, str, n) \ argument 130 ({ const char *_s = (str); obstack_copy0 (ob, _s, strnlen (_s, n)); })
|
/external/valgrind/none/tests/ |
D | shorts.c | 4 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/protobuf/python/google/protobuf/pyext/ |
D | descriptor.cc | 48 #define PyString_AsString(ob) \ argument 49 (PyUnicode_Check(ob)? PyUnicode_AsUTF8(ob): PyBytes_AS_STRING(ob)) 62 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type) argument
|
D | repeated_scalar_container.cc | 54 #define PyString_AsString(ob) \ argument 55 (PyUnicode_Check(ob)? PyUnicode_AsUTF8(ob): PyBytes_AS_STRING(ob))
|
/external/boringssl/src/crypto/obj/ |
D | obj_dat.pl | 91 %ob=&expand_obj(*objd); 173 push(@ob,sprintf("%2d,\t/* %-32s %s */\n",$_,$m,$v)); 242 printf OUT "#define NUM_OBJ %d\n\n",$#ob+1; 281 print OUT @ob;
|
/external/libunwind_llvm/include/ |
D | unwind.h | 352 extern void __register_frame_info_bases(const void *fde, void *ob, void *tb, 354 extern void __register_frame_info(const void *fde, void *ob) 356 extern void __register_frame_info_table_bases(const void *fde, void *ob, 359 extern void __register_frame_info_table(const void *fde, void *ob)
|
/external/libpng/contrib/tools/ |
D | makesRGB.c | 213 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/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/ |
D | common.py | 120 ob = b #negative values from return results 126 if (lx < 0): lx += ob #If neg wrap modulo orignal b
|
/external/fio/t/ |
D | btrace2fio.c | 924 struct btrace_out *ob = &pidb->o; in merge_entries() local 926 oa->ios[i] += ob->ios[i]; in merge_entries() 927 oa->merges[i] += ob->merges[i]; in merge_entries() 928 oa->seq[i] += ob->seq[i]; in merge_entries() 929 oa->kb[i] += ob->kb[i]; in merge_entries() 930 oa->first_ttime[i] = min(oa->first_ttime[i], ob->first_ttime[i]); in merge_entries() 931 oa->last_ttime[i] = max(oa->last_ttime[i], ob->last_ttime[i]); in merge_entries() 932 merge_bs(&oa->bs[i], &oa->nr_bs[i], ob->bs[i], ob->nr_bs[i]); in merge_entries()
|
/external/selinux/policycoreutils/po/ |
D | de.po | 229 msgstr "Konnte nicht überprüfen ob die Login-Zuweisung für %s zugewiesen ist" 334 msgstr "Konnte nicht überprüfen ob SELinux-Benutzer %s definiert ist" 475 msgstr "Konnte nicht prüfen, ob Port %s/%s definiert ist" 614 msgstr "Konnte nicht prüfen, ob addr %s definiert ist" 704 msgstr "Konnte nicht überprüfen, ob die Schnittstelle %s definiert ist" 855 msgstr "Konnte nicht überprüfen, ob Dateikontext für %s definiert ist" 954 msgstr "Konnte nicht überprüfen, ob Boolesche Variable %s definiert ist" 2098 "testen möchten, ob SELinux für ein Problem auf Ihrem System verantwortlich " 2232 "Wählen Sie aus, ob Sie beim nächsten Neustart das gesamte Dateisystem neu " 2416 msgstr "Festlegen, ob Antiviren-Programme JIT-Compiler benutzen dürfen." [all …]
|
/external/elfutils/libcpu/ |
D | i386_parse.y | 769 #define obstack_grow_str(ob, str) obstack_grow (ob, str, strlen (str)) argument 776 static struct obstack ob; in fillin_arg() local 781 obstack_init (&ob); in fillin_arg() 804 obstack_1grow (&ob, '$'); in fillin_arg() 808 obstack_grow_str (&ob, "!!!INVALID!!!"); in fillin_arg() 819 obstack_grow_str (&ob, fieldname); in fillin_arg() 857 if (obstack_object_size (&ob) == 0) in fillin_arg() 858 obstack_grow_str (&ob, "string"); in fillin_arg() 859 obstack_1grow (&ob, '\0'); in fillin_arg() 860 char *fct = obstack_finish (&ob); in fillin_arg()
|
/external/clang/test/CodeGenObjC/ |
D | dot-syntax-1.m | 249 Bot##N *ob = [[Bot##N alloc] init]; \ 250 int x = ob.x; \ 251 ob.x = 10; }
|
/external/clang/test/SemaObjC/ |
D | message.m | 73 int f0(I0 *ob) { 74 [ ob nonVararg: 0, 1, 2]; // expected-error {{too many arguments to method call}}
|
/external/ImageMagick/PerlMagick/t/reference/filter/ |
D | Minify.miff | 15 …ob[~YI�KA�?6�9*�9)�;-�>0�:.�91�97�>?�>=�87�88�89�:0�;)�A6�KR�OH^`Ap�VezOc�Ei�Jk�Mm�NYQCZSD`YJkc`nf…
|
/external/clang/test/CodeGen/ |
D | 2009-01-21-InvalidIterator.c | 73 struct object ob; in _Unwind_IteratePhdrCallback() local
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/ |
D | btConvexConcaveCollisionAlgorithm.cpp | 103 const btCollisionObject* ob = const_cast<btCollisionObject*>(m_triBodyWrap->getCollisionObject()); in processTriangle() 105 btTransform& tr = ob->getWorldTransform(); in processTriangle()
|
/external/opencv3/3rdparty/libtiff/ |
D | tif_ojpeg.c | 1738 uint8* ob; in OJPEGReadHeaderInfoSecTablesQTable() local 1759 ob=_TIFFmalloc(oa); in OJPEGReadHeaderInfoSecTablesQTable() 1760 if (ob==0) in OJPEGReadHeaderInfoSecTablesQTable() 1765 *(uint32*)ob=oa; in OJPEGReadHeaderInfoSecTablesQTable() 1766 ob[sizeof(uint32)]=255; in OJPEGReadHeaderInfoSecTablesQTable() 1767 ob[sizeof(uint32)+1]=JPEG_MARKER_DQT; in OJPEGReadHeaderInfoSecTablesQTable() 1768 ob[sizeof(uint32)+2]=0; in OJPEGReadHeaderInfoSecTablesQTable() 1769 ob[sizeof(uint32)+3]=67; in OJPEGReadHeaderInfoSecTablesQTable() 1770 ob[sizeof(uint32)+4]=m; in OJPEGReadHeaderInfoSecTablesQTable() 1772 p=TIFFReadFile(tif,&ob[sizeof(uint32)+5],64); in OJPEGReadHeaderInfoSecTablesQTable() [all …]
|