/third_party/ffmpeg/doc/ |
D | general_contents.texi | 358 @item Name @tab Encoding @tab Decoding @tab Comments 359 @item 3dostr @tab @tab X 360 @item 4xm @tab @tab X 361 @tab 4X Technologies format, used in some games. 362 @item 8088flex TMV @tab @tab X 363 @item AAX @tab @tab X 364 @tab Audible Enhanced Audio format, used in audiobooks. 365 @item AA @tab @tab X 366 @tab Audible Format 2, 3, and 4, used in audiobooks. 367 @item ACT Voice @tab @tab X [all …]
|
D | nut.texi | 29 @item BROADCAST @tab Extend the syncpoint to report the sender wallclock 30 @item PIPE @tab Omit completely the syncpoint 72 @item ALAW @tab A-LAW 73 @item ULAW @tab MU-LAW 74 @item P<type><interleaving><bits> @tab little-endian PCM 75 @item <bits><interleaving><type>P @tab big-endian PCM 89 @item UTF8 @tab Raw UTF-8 90 @item SSA[0] @tab SubStation Alpha 91 @item DVDS @tab DVD subtitles 92 @item DVBS @tab DVB subtitles [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | twinvqdec.c | 35 { 8, bark_tab_s08_64, 10, tab.fcb08s, 1, 5, tab.cb0808s0, tab.cb0808s1, 18 }, 36 { 2, bark_tab_m08_256, 20, tab.fcb08m, 2, 5, tab.cb0808m0, tab.cb0808m1, 16 }, 37 { 1, bark_tab_l08_512, 30, tab.fcb08l, 3, 6, tab.cb0808l0, tab.cb0808l1, 17 } 39 512, 12, ff_metasound_lsp8, 1, 5, 3, 3, tab.shape08, 8, 28, 20, 6, 40 44 { 8, bark_tab_s11_64, 10, tab.fcb11s, 1, 5, tab.cb1108s0, tab.cb1108s1, 29 }, 45 { 2, bark_tab_m11_256, 20, tab.fcb11m, 2, 5, tab.cb1108m0, tab.cb1108m1, 24 }, 46 { 1, bark_tab_l11_512, 30, tab.fcb11l, 3, 6, tab.cb1108l0, tab.cb1108l1, 27 } 48 512, 16, ff_metasound_lsp11, 1, 6, 4, 3, tab.shape11, 9, 36, 30, 7, 90 53 { 8, bark_tab_s11_64, 10, tab.fcb11s, 1, 5, tab.cb1110s0, tab.cb1110s1, 21 }, 54 { 2, bark_tab_m11_256, 20, tab.fcb11m, 2, 5, tab.cb1110m0, tab.cb1110m1, 18 }, [all …]
|
D | mpegaudioenc_template.c | 202 static void idct32(int *out, int *tab) in idct32() argument 208 for(j=31;j>=3;j-=2) tab[j] += tab[j - 2]; in idct32() 210 t = tab + 30; in idct32() 211 t1 = tab + 2; in idct32() 218 t = tab + 28; in idct32() 219 t1 = tab + 4; in idct32() 228 t = tab; in idct32() 229 t1 = tab + 32; in idct32() 242 t = tab; in idct32() 243 t1 = tab + 8; in idct32() [all …]
|
D | lzwenc.c | 53 Code tab[LZW_HASH_SIZE]; ///< Hash table member 135 while (s->tab[h].hash_prefix != LZW_PREFIX_FREE) { in findCode() 136 if ((s->tab[h].suffix == c) in findCode() 137 && (s->tab[h].hash_prefix == hash_prefix)) in findCode() 154 s->tab[hash_code].code = s->tabsize; in addCode() 155 s->tab[hash_code].suffix = c; in addCode() 156 s->tab[hash_code].hash_prefix = hash_prefix; in addCode() 175 s->tab[i].hash_prefix = LZW_PREFIX_FREE; in clearTable() 179 s->tab[h].code = i; in clearTable() 180 s->tab[h].suffix = i; in clearTable() [all …]
|
/third_party/skia/third_party/externals/expat/expat/gennmtab/ |
D | gennmtab.c | 387 setTab(char *tab, struct range *ranges, size_t nRanges) { in setTab() argument 393 tab[j] = 1; in setTab() 395 tab[ranges[i].start] = 1; in setTab() 400 printTabs(char *tab) { in printTabs() argument 411 int kind = tab[i * 256]; in printTabs() 413 if (tab[i * 256 + j] != kind) { in printTabs() 417 if (i >= 256 && memcmp(tab + (i - 256) * 256, tab + i * 256, 256) == 0) in printTabs() 424 if (tab[i * 256 + j * 32 + k]) in printTabs() 446 char tab[2 * 65536]; in main() local 447 memset(tab, 0, 65536); in main() [all …]
|
/third_party/openssl/crypto/bn/asm/ |
D | sparcv9-gf2m.pl | 32 $tab="%l0"; 90 add %sp,STACK_BIAS+STACK_FRAME,$tab 109 stx %g0,[$tab+0*8] ! tab[0]=0 111 stx $a1,[$tab+1*8] ! tab[1]=a1 112 stx $a2,[$tab+2*8] ! tab[2]=a2 114 stx $a12,[$tab+3*8] ! tab[3]=a1^a2 117 stx $a4,[$tab+4*8] ! tab[4]=a4 119 stx $a1,[$tab+5*8] ! tab[5]=a1^a4 121 stx $a2,[$tab+6*8] ! tab[6]=a2^a4 123 stx $a12,[$tab+7*8] ! tab[7]=a1^a2^a4 [all …]
|
/third_party/musl/libc-test/src/common/ |
D | rand.c | 94 static int insert(uint64_t *tab, size_t len, uint64_t v) in insert() argument 99 while (tab[i]) { in insert() 100 if (tab[i] == v) in insert() 105 tab[i] = v; in insert() 112 uint64_t *tab; in t_choose() local 139 if (n < 5*k && (n-k)*sizeof *tab < (size_t)-1) { in t_choose() 141 tab = malloc((n-k) * sizeof *tab); in t_choose() 142 if (!tab) in t_choose() 147 tab[i-k] = i; in t_choose() 149 shuffle2(p, tab, k, n-k); in t_choose() [all …]
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_exit/ |
D | 3-2.c | 94 static int tab[4]; variable 99 tab[global]=n; \ 119 ret = pthread_setspecific(tld[0], (void *)&tab[3]); in threaded() 126 ret = pthread_setspecific(tld[1], (void *)&tab[3]); in threaded() 132 ret = pthread_setspecific(tld[2], (void *)&tab[3]); in threaded() 175 tab[j] = 0; in main() 222 if ((tab[j] != j + 1) || (tab[3] != 9)) { in main() 225 tab[0], tab[1], tab[2], in main() 226 tab[3]); in main()
|
D | 2-2.c | 93 static int tab[3]; variable 97 tab[global]=n; \ 142 tab[j] = 0; in main() 189 if (tab[j] != j + 1) { in main() 192 tab[0], tab[1], tab[2]); in main()
|
/third_party/musl/libc-test/src/math/gen/ |
D | rnd.c | 45 int insert(uint64_t *tab, size_t len, uint64_t v) in insert() argument 51 while (tab[i]) { in insert() 52 if (tab[i] == v) in insert() 57 tab[i] = v; in insert() 83 uint64_t *tab; in choose() local 108 if (n < 5*k && (n-k)*sizeof *tab < (size_t)-1) { in choose() 110 tab = malloc((n-k) * sizeof *tab); in choose() 111 if (!tab) in choose() 116 tab[i-k] = i; in choose() 118 shuffle2(p, tab, k, n-k); in choose() [all …]
|
/third_party/openssl/crypto/bn/ |
D | bn_gf2m.c | 64 BN_ULONG tab[8], top2b = a >> 30; in bn_GF2m_mul_1x1() local 71 tab[0] = 0; in bn_GF2m_mul_1x1() 72 tab[1] = a1; in bn_GF2m_mul_1x1() 73 tab[2] = a2; in bn_GF2m_mul_1x1() 74 tab[3] = a1 ^ a2; in bn_GF2m_mul_1x1() 75 tab[4] = a4; in bn_GF2m_mul_1x1() 76 tab[5] = a1 ^ a4; in bn_GF2m_mul_1x1() 77 tab[6] = a2 ^ a4; in bn_GF2m_mul_1x1() 78 tab[7] = a1 ^ a2 ^ a4; in bn_GF2m_mul_1x1() 80 s = tab[b & 0x7]; in bn_GF2m_mul_1x1() [all …]
|
/third_party/optimized-routines/math/ |
D | v_math.h | 231 v_lookup_f32 (const f32_t *tab, v_u32_t idx) in v_lookup_f32() argument 233 return tab[idx]; in v_lookup_f32() 236 v_lookup_u32 (const u32_t *tab, v_u32_t idx) in v_lookup_u32() argument 238 return tab[idx]; in v_lookup_u32() 351 v_lookup_f64 (const f64_t *tab, v_u64_t idx) in v_lookup_f64() argument 353 return tab[idx]; in v_lookup_f64() 356 v_lookup_u64 (const u64_t *tab, v_u64_t idx) in v_lookup_u64() argument 358 return tab[idx]; in v_lookup_u64() 500 v_lookup_f32 (const f32_t *tab, v_u32_t idx) in v_lookup_f32() argument 502 return (v_f32_t){tab[idx[0]], tab[idx[1]], tab[idx[2]], tab[idx[3]]}; in v_lookup_f32() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | commentsFormatting.symbols | 76 * this is 0 space + tab 77 * this is 1 space + tab 78 * this is 2 spaces + tab 79 * this is 3 spaces + tab 80 * this is 4 spaces + tab 81 * this is 5 spaces + tab 82 * this is 6 spaces + tab 83 * this is 7 spaces + tab 84 * this is 8 spaces + tab 85 * this is 9 spaces + tab [all …]
|
D | commentsFormatting.types | 76 * this is 0 space + tab 77 * this is 1 space + tab 78 * this is 2 spaces + tab 79 * this is 3 spaces + tab 80 * this is 4 spaces + tab 81 * this is 5 spaces + tab 82 * this is 6 spaces + tab 83 * this is 7 spaces + tab 84 * this is 8 spaces + tab 85 * this is 9 spaces + tab [all …]
|
/third_party/flutter/flutter/packages/flutter/lib/src/material/ |
D | tab_indicator.dart | 10 /// selected tab. 12 /// The selected tab underline is inset from the tab's boundary by [insets]. 17 /// or the entire tab with [TabIndicatorSize.tab]. 19 /// Create an underline style selected tab indicator. 28 /// The color and weight of the horizontal line drawn below the selected tab. 31 /// Locates the selected tab's underline relative to the tab's boundary. 34 /// tab indicator's bounds in terms of its (centered) tab widget with 35 /// [TabIndicatorSize.label], or the entire tab with [TabIndicatorSize.tab].
|
D | tabs.dart | 27 /// Defines how the bounds of the selected tab indicator are computed. 32 /// * [TabBarView], which displays a widget for the currently selected tab. 33 /// * [TabBar.indicator], which defines the appearance of the selected tab 34 /// indicator relative to the tab's bounds. 36 /// The tab indicator's bounds are as wide as the space occupied by the tab 37 /// in the tab bar: from the right edge of the previous tab to the left edge 38 /// of the next tab. 39 tab, 41 /// The tab's bounds are only as wide as the (centered) tab widget itself. 43 /// This value is used to align the tab's label, typically a [Tab] [all …]
|
D | tab_controller.dart | 11 /// Coordinates tab selection between a [TabBar] and a [TabBarView]. 13 /// The [index] property is the index of the selected tab and the [animation] 14 /// represents the current scroll positions of the tab bar and the tar bar view. 15 /// The selected tab's index can be changed with [animateTo]. 68 /// children: myTabs.map((Tab tab) { 69 /// final String label = tab.text.toLowerCase(); 72 /// 'This is the $label tab', 132 /// selected tab indicator as well as the scrollOffsets of the [TabBar] 136 /// selected tab is changed, the animation's value equals [index]. The 176 /// The index of the currently selected tab. [all …]
|
/third_party/selinux/checkpolicy/ |
D | Makefile | 22 CHECKOBJS = y.tab.o lex.yy.o queue.o module_compiler.o parse_util.o \ 27 GENERATED=lex.yy.c y.tab.c y.tab.h 41 y.tab.o: y.tab.c 47 y.tab.c: policy_parse.y 50 lex.yy.c: policy_scan.l y.tab.c 71 -rm -f $(TARGETS) $(CHECKPOLOBJS) $(CHECKMODOBJS) y.tab.c y.tab.h lex.yy.c
|
/third_party/musl/src/crypt/ |
D | crypt_md5.c | 30 static const uint32_t tab[64] = { variable 59 FF(a,b,c,d, W[i], 7, tab[i]); i++; in processblock() 60 FF(d,a,b,c, W[i], 12, tab[i]); i++; in processblock() 61 FF(c,d,a,b, W[i], 17, tab[i]); i++; in processblock() 62 FF(b,c,d,a, W[i], 22, tab[i]); i++; in processblock() 65 GG(a,b,c,d, W[(5*i+1)%16], 5, tab[i]); i++; in processblock() 66 GG(d,a,b,c, W[(5*i+1)%16], 9, tab[i]); i++; in processblock() 67 GG(c,d,a,b, W[(5*i+1)%16], 14, tab[i]); i++; in processblock() 68 GG(b,c,d,a, W[(5*i+1)%16], 20, tab[i]); i++; in processblock() 71 HH(a,b,c,d, W[(3*i+5)%16], 4, tab[i]); i++; in processblock() [all …]
|
/third_party/flutter/flutter/packages/flutter/lib/src/cupertino/ |
D | tab_scaffold.dart | 9 /// Coordinates tab selection between a [CupertinoTabBar] and a [CupertinoTabScaffold]. 11 /// The [index] property is the index of the selected tab. Changing its value 12 /// updates the actively displayed tab of the [CupertinoTabScaffold] the 13 /// [CupertinoTabController] controls, as well as the currently selected tab item of 41 /// child: const Text('Go to first tab'), 63 /// Creates a [CupertinoTabController] to control the tab index of [CupertinoTabScaffold] 75 /// The index of the currently selected tab. 77 /// Changing the value of [index] updates the actively displayed tab of the 79 /// as the currently selected tab item of its [CupertinoTabScaffold.tabBar]. 105 /// The scaffold lays out the tab bar at the bottom and the content between or [all …]
|
/third_party/ffmpeg/libavcodec/tests/ |
D | fft.c | 104 static void fft_ref(FFTComplex *tabr, FFTComplex *tab, int nbits) in fft_ref() argument 112 FFTComplex *q = tab; in fft_ref() 314 static inline void rdft_calc(RDFTContext *r, FFTSample *tab) in rdft_calc() argument 317 av_rdft_calc(r, tab); in rdft_calc() 319 r->rdft_calc(r, tab); in rdft_calc() 378 FFTComplex *tab, *tab1, *tab_ref; in main() local 447 tab = av_malloc_array(fft_size, sizeof(FFTComplex)); in main() 452 if (!(tab && tab1 && tab_ref && tab2)) in main() 528 memcpy(tab, tab1, fft_size * sizeof(FFTComplex)); in main() 529 fft_permute(s, tab); in main() [all …]
|
/third_party/ffmpeg/libavutil/ |
D | mem.c | 298 void **tab; in av_dynarray_add_nofree() local 299 memcpy(&tab, tab_ptr, sizeof(tab)); in av_dynarray_add_nofree() 301 FF_DYNARRAY_ADD(INT_MAX, sizeof(*tab), tab, *nb_ptr, { in av_dynarray_add_nofree() 302 tab[*nb_ptr] = elem; in av_dynarray_add_nofree() 303 memcpy(tab_ptr, &tab, sizeof(tab)); in av_dynarray_add_nofree() 312 void **tab; in av_dynarray_add() local 313 memcpy(&tab, tab_ptr, sizeof(tab)); in av_dynarray_add() 315 FF_DYNARRAY_ADD(INT_MAX, sizeof(*tab), tab, *nb_ptr, { in av_dynarray_add() 316 tab[*nb_ptr] = elem; in av_dynarray_add() 317 memcpy(tab_ptr, &tab, sizeof(tab)); in av_dynarray_add()
|
/third_party/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()
|
/third_party/mtdev/config-aux/ |
D | missing | 227 rm -f y.tab.c y.tab.h 234 cp "$SRCFILE" y.tab.c 238 cp "$SRCFILE" y.tab.h 243 if test ! -f y.tab.h; then 244 echo >y.tab.h 246 if test ! -f y.tab.c; then 247 echo 'main() { return 0; }' >y.tab.c
|