/external/mesa3d/src/mesa/main/ |
D | vtxfmt.c | 48 install_vtxfmt(struct gl_context *ctx, struct _glapi_table *tab, in install_vtxfmt() argument 52 _mesa_install_arrayelt_vtxfmt(tab, vfmt); in install_vtxfmt() 53 SET_Color3f(tab, vfmt->Color3f); in install_vtxfmt() 54 SET_Color3fv(tab, vfmt->Color3fv); in install_vtxfmt() 55 SET_Color4f(tab, vfmt->Color4f); in install_vtxfmt() 56 SET_Color4fv(tab, vfmt->Color4fv); in install_vtxfmt() 57 SET_EdgeFlag(tab, vfmt->EdgeFlag); in install_vtxfmt() 61 _mesa_install_eval_vtxfmt(tab, vfmt); in install_vtxfmt() 65 SET_FogCoordfEXT(tab, vfmt->FogCoordfEXT); in install_vtxfmt() 66 SET_FogCoordfvEXT(tab, vfmt->FogCoordfvEXT); in install_vtxfmt() [all …]
|
/external/bison/doc/ |
D | cross-options.texi | 2 @tab @option{-t} 3 @tab @code{%debug} 6 @tab @option{-D @var{name}[=@var{value}]} 7 @tab @code{%define @var{name} ["@var{value}"]} 10 @tab @option{-d} 11 @tab @code{%defines [@var{"file"}]} 14 @tab @option{-f [@var{feature}]} 15 @tab 18 @tab @option{-b @var{prefix}} 19 @tab @code{%file-prefix @var{"prefix"}} [all …]
|
/external/valgrind/VEX/priv/ |
D | host_generic_regs.c | 123 void ppHRegUsage ( const RRegUniverse* univ, HRegUsage* tab ) in ppHRegUsage() argument 132 Bool rRd = (tab->rRead & (1ULL << i)) != 0; in ppHRegUsage() 133 Bool rWr = (tab->rWritten & (1ULL << i)) != 0; in ppHRegUsage() 144 for (UInt i = 0; i < tab->n_vRegs; i++) { in ppHRegUsage() 146 switch (tab->vMode[i]) { in ppHRegUsage() 153 ppHReg(tab->vRegs[i]); in ppHRegUsage() 164 void addHRegUse ( HRegUsage* tab, HRegMode mode, HReg reg ) in addHRegUse() argument 172 for (i = 0; i < tab->n_vRegs; i++) in addHRegUse() 173 if (sameHReg(tab->vRegs[i], reg)) in addHRegUse() 175 if (i == tab->n_vRegs) { in addHRegUse() [all …]
|
/external/jemalloc/src/ |
D | ckh.c | 59 cell = &ckh->tab[(bucket << LG_CKH_BUCKET_CELLS) + i]; in ckh_bucket_search() 104 cell = &ckh->tab[(bucket << LG_CKH_BUCKET_CELLS) + in ckh_try_bucket_insert() 145 cell = &ckh->tab[(bucket << LG_CKH_BUCKET_CELLS) + i]; in ckh_evict_reloc_insert() 249 ckhc_t *tab, *ttab; in ckh_grow() local 273 tab = (ckhc_t *)ipallocztm(tsd, usize, CACHELINE, true, NULL, in ckh_grow() 275 if (tab == NULL) { in ckh_grow() 280 ttab = ckh->tab; in ckh_grow() 281 ckh->tab = tab; in ckh_grow() 282 tab = ttab; in ckh_grow() 285 if (!ckh_rebuild(ckh, tab)) { in ckh_grow() [all …]
|
/external/opencv/cxcore/include/ |
D | cxmisc.h | 826 static void icvInit##FUNCNAME##FLAG##Table( CvFuncTable* tab ) \ 828 assert( tab ); \ 830 tab->fn_2d[CV_8U] = (void*)icv##FUNCNAME##_8u_##FLAG; \ 831 tab->fn_2d[CV_8S] = (void*)icv##FUNCNAME##_8s_##FLAG; \ 832 tab->fn_2d[CV_16U] = (void*)icv##FUNCNAME##_16u_##FLAG; \ 833 tab->fn_2d[CV_16S] = (void*)icv##FUNCNAME##_16s_##FLAG; \ 834 tab->fn_2d[CV_32S] = (void*)icv##FUNCNAME##_32s_##FLAG; \ 835 tab->fn_2d[CV_32F] = (void*)icv##FUNCNAME##_32f_##FLAG; \ 836 tab->fn_2d[CV_64F] = (void*)icv##FUNCNAME##_64f_##FLAG; \ 841 static void icvInit##FUNCNAME##FLAG##Table( CvBigFuncTable* tab ) \ [all …]
|
/external/opencv/cvaux/src/ |
D | cvhmmobs.cpp | 180 work_t *tab = tab_y + 2; in icvImgToObs_DCT_8u32f_C1R() local 185 k0 = ((work_t) is) * tab[-1]; in icvImgToObs_DCT_8u32f_C1R() 201 buf[0] = DESCALE( is * tab[-2], PASS1_SHIFT ); in icvImgToObs_DCT_8u32f_C1R() 211 s += temp1[k] * tab[k]; in icvImgToObs_DCT_8u32f_C1R() 217 tab += m1; in icvImgToObs_DCT_8u32f_C1R() 226 s += temp0[k] * tab[k]; in icvImgToObs_DCT_8u32f_C1R() 229 tab += m1; in icvImgToObs_DCT_8u32f_C1R() 244 work_t *tab = tab_x + 2; in icvImgToObs_DCT_8u32f_C1R() local 252 k0 = (work_t) (s * tab[-1]); in icvImgToObs_DCT_8u32f_C1R() 268 *obs++ = (float) DESCALE( s * tab[-2], PASS2_SHIFT ); in icvImgToObs_DCT_8u32f_C1R() [all …]
|
/external/libunwind/src/dwarf/ |
D | Gfind_proc_info-lsb.c | 317 struct table_entry *tab; member 323 debug_frame_tab_append (struct debug_frame_tab *tab, in debug_frame_tab_append() argument 326 unsigned int length = tab->length; in debug_frame_tab_append() 328 if (length == tab->size) in debug_frame_tab_append() 330 tab->size *= 2; in debug_frame_tab_append() 331 tab->tab = realloc (tab->tab, sizeof (struct table_entry) * tab->size); in debug_frame_tab_append() 334 tab->tab[length].fde_offset = fde_offset; in debug_frame_tab_append() 335 tab->tab[length].start_ip_offset = start_ip; in debug_frame_tab_append() 337 tab->length = length + 1; in debug_frame_tab_append() 341 debug_frame_tab_shrink (struct debug_frame_tab *tab) in debug_frame_tab_shrink() argument [all …]
|
/external/selinux/checkpolicy/ |
D | Makefile | 17 CHECKOBJS = y.tab.o lex.yy.o queue.o module_compiler.o parse_util.o \ 24 GENERATED=lex.yy.c y.tab.c y.tab.h 36 y.tab.o: y.tab.c 42 y.tab.c: policy_parse.y 45 lex.yy.c: policy_scan.l y.tab.c 60 -rm -f $(TARGETS) $(CHECKPOLOBJS) $(CHECKMODOBJS) y.tab.c y.tab.h lex.yy.c
|
/external/e2fsprogs/lib/et/ |
D | com_right.c | 75 struct error_table tab; member 92 struct error_table *tab; in initialize_error_table_r() local 102 et->table = tab = &f->tab; in initialize_error_table_r() 103 tab->msgs = messages; in initialize_error_table_r() 104 tab->n_msgs = num_errors; in initialize_error_table_r() 105 tab->base = base; in initialize_error_table_r()
|
/external/libopus/ |
D | missing | 217 rm -f y.tab.c y.tab.h 224 cp "$SRCFILE" y.tab.c 228 cp "$SRCFILE" y.tab.h 233 if test ! -f y.tab.h; then 234 echo >y.tab.h 236 if test ! -f y.tab.c; then 237 echo 'main() { return 0; }' >y.tab.c
|
D | depcomp | 61 tab=' ' 281 sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" 324 sed -e "s/^[ $tab][ $tab]*/ /" -e "s,^[^:]*:,$object :," \ 327 s/[ '"$tab"'][ '"$tab"']*/ /g 433 sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" 468 s/\(.*\)/'"$tab"'\1 \\/p 472 s/.*/'"$tab"'/ 527 sed 's:^['"$tab"' ]*[^:'"$tab"' ][^:][^:]*\:['"$tab"' ]*:'"$object"'\: :' > "$tmpdepfile" 675 sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" 676 echo "$tab" >> "$depfile"
|
/external/libvncserver/ |
D | missing | 217 rm -f y.tab.c y.tab.h 224 cp "$SRCFILE" y.tab.c 228 cp "$SRCFILE" y.tab.h 233 if test ! -f y.tab.h; then 234 echo >y.tab.h 236 if test ! -f y.tab.c; then 237 echo 'main() { return 0; }' >y.tab.c
|
D | depcomp | 61 tab=' ' 281 sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" 324 sed -e "s/^[ $tab][ $tab]*/ /" -e "s,^[^:]*:,$object :," \ 327 s/[ '"$tab"'][ '"$tab"']*/ /g 433 sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" 468 s/\(.*\)/'"$tab"'\1 \\/p 472 s/.*/'"$tab"'/ 527 sed 's:^['"$tab"' ]*[^:'"$tab"' ][^:][^:]*\:['"$tab"' ]*:'"$object"'\: :' > "$tmpdepfile" 675 sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" 676 echo "$tab" >> "$depfile"
|
/external/openfst/ |
D | missing | 217 rm -f y.tab.c y.tab.h 224 cp "$SRCFILE" y.tab.c 228 cp "$SRCFILE" y.tab.h 233 if test ! -f y.tab.h; then 234 echo >y.tab.h 236 if test ! -f y.tab.c; then 237 echo 'main() { return 0; }' >y.tab.c
|
/external/libcap-ng/libcap-ng-0.7/ |
D | missing | 217 rm -f y.tab.c y.tab.h 224 cp "$SRCFILE" y.tab.c 228 cp "$SRCFILE" y.tab.h 233 if test ! -f y.tab.h; then 234 echo >y.tab.h 236 if test ! -f y.tab.c; then 237 echo 'main() { return 0; }' >y.tab.c
|
/external/bison/build-aux/ |
D | missing | 216 rm -f y.tab.c y.tab.h 223 cp "$SRCFILE" y.tab.c 227 cp "$SRCFILE" y.tab.h 232 if test ! -f y.tab.h; then 233 echo >y.tab.h 235 if test ! -f y.tab.c; then 236 echo 'main() { return 0; }' >y.tab.c
|
/external/llvm/autoconf/ |
D | missing | 216 rm -f y.tab.c y.tab.h 223 cp "$SRCFILE" y.tab.c 227 cp "$SRCFILE" y.tab.h 232 if [ ! -f y.tab.h ]; then 233 echo >y.tab.h 235 if [ ! -f y.tab.c ]; then 236 echo 'main() { return 0; }' >y.tab.c
|
/external/toybox/toys/posix/ |
D | expand.c | 31 unsigned tabcount, *tab; 74 width = TT.tabcount ? *TT.tab : 8; in do_expand() 77 if (TT.tab[stop] > x) { in do_expand() 78 width = TT.tab[stop] - x; in do_expand() 122 TT.tab = xmalloc(sizeof(unsigned)*TT.tabcount); in expand_main() 123 parse_tablist(TT.tab); in expand_main() 127 if (CFG_TOYBOX_FREE) free(TT.tab); in expand_main()
|
/external/mesa3d/src/mesa/tnl/ |
D | t_vb_light.c | 140 m = s->tab; in validate_shine_table() 277 const struct tnl_shine_tab *tab = tnl->_ShineTable[face]; in lookup_shininess() local 282 return powf(dp, tab->shininess); in lookup_shininess() 284 return tab->tab[k] + (f - k) * (tab->tab[k+1] - tab->tab[k]); in lookup_shininess() 386 light_func *tab; in validate_lighting() local 393 tab = _tnl_light_spec_tab; in validate_lighting() 395 tab = _tnl_light_tab; in validate_lighting() 399 tab = _tnl_light_fast_single_tab; in validate_lighting() 401 tab = _tnl_light_fast_tab; in validate_lighting() 405 LIGHT_STAGE_DATA(stage)->light_func_tab = tab; in validate_lighting()
|
/external/opencv/cv/src/ |
D | cvsegmentation.cpp | 338 #define cdiff(ofs0) (tab[c0-dptr[ofs0]+255] + \ in cvPyrMeanShiftFiltering() 339 tab[c1-dptr[(ofs0)+1]+255] + tab[c2-dptr[(ofs0)+2]+255] >= isr22) in cvPyrMeanShiftFiltering() 350 int tab[768]; in cvPyrMeanShiftFiltering() local 378 tab[i] = (i - 255)*(i - 255); in cvPyrMeanShiftFiltering() 477 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 ) in cvPyrMeanShiftFiltering() 483 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 ) in cvPyrMeanShiftFiltering() 489 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 ) in cvPyrMeanShiftFiltering() 495 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 ) in cvPyrMeanShiftFiltering() 505 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 ) in cvPyrMeanShiftFiltering() 526 tab[s0 - c0 + 255] + tab[s1 - c1 + 255] + in cvPyrMeanShiftFiltering() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/util/ |
D | ASN1Dump.java | 57 String tab = indent + TAB; in _dumpAsString() local 81 buf.append(tab); in _dumpAsString() 87 _dumpAsString(tab, verbose, (ASN1Primitive)o, buf); in _dumpAsString() 91 _dumpAsString(tab, verbose, ((ASN1Encodable)o).toASN1Primitive(), buf); in _dumpAsString() 97 String tab = indent + TAB; in _dumpAsString() local 123 buf.append(tab); in _dumpAsString() 129 _dumpAsString(tab, verbose, o.getObject(), buf); in _dumpAsString() 135 String tab = indent + TAB; in _dumpAsString() local 156 buf.append(tab); in _dumpAsString() 162 _dumpAsString(tab, verbose, (ASN1Primitive)o, buf); in _dumpAsString() [all …]
|
/external/libusb-compat/ |
D | missing | 219 rm -f y.tab.c y.tab.h 226 cp "$SRCFILE" y.tab.c 230 cp "$SRCFILE" y.tab.h 235 if test ! -f y.tab.h; then 236 echo >y.tab.h 238 if test ! -f y.tab.c; then 239 echo 'main() { return 0; }' >y.tab.c
|
/external/marisa-trie/ |
D | missing | 219 rm -f y.tab.c y.tab.h 226 cp "$SRCFILE" y.tab.c 230 cp "$SRCFILE" y.tab.h 235 if test ! -f y.tab.h; then 236 echo >y.tab.h 238 if test ! -f y.tab.c; then 239 echo 'main() { return 0; }' >y.tab.c
|
/external/libvorbis/ |
D | missing | 216 rm -f y.tab.c y.tab.h 223 cp "$SRCFILE" y.tab.c 227 cp "$SRCFILE" y.tab.h 232 if [ ! -f y.tab.h ]; then 233 echo >y.tab.h 235 if [ ! -f y.tab.c ]; then 236 echo 'main() { return 0; }' >y.tab.c
|
/external/cmockery/cmockery_0_1_2/ |
D | missing | 216 rm -f y.tab.c y.tab.h 223 cp "$SRCFILE" y.tab.c 227 cp "$SRCFILE" y.tab.h 232 if [ ! -f y.tab.h ]; then 233 echo >y.tab.h 235 if [ ! -f y.tab.c ]; then 236 echo 'main() { return 0; }' >y.tab.c
|