HomeSort by relevance Sort by last modified time
    Searched refs:tt (Results 26 - 50 of 169) sorted by null

12 3 4 5 6 7

  /cts/tests/tests/media/libmediandkjni/
native-media-jni.cpp 286 for (int tt = 0; tt < numtracks; tt++) {
287 if (!sawInputEOS[tt]) {
290 int bufidx = AMediaCodec_dequeueInputBuffer(codec[tt], 5000);
292 AMediaCodec_queueInputBuffer(codec[tt], bufidx, 0, 0, 0,
294 sawInputEOS[tt] = true;
302 for (int tt = 0; tt < numtracks; tt++)
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
NativeDecoderTest.java 283 for (int tt = 0; tt < codec.length; tt++) {
284 if (!sawInputEOS[tt]) {
287 int bufidx = codec[tt].dequeueInputBuffer(5000);
289 codec[tt].queueInputBuffer(bufidx, 0, 0, 0,
291 sawInputEOS[tt] = true;
298 for (int tt = 0; tt < codec.length; tt++)
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftbitmap.c 509 FT_Byte* tt = t; local
519 tt[0] = (FT_Byte)( ( val & 0x80 ) >> 7 );
520 tt[1] = (FT_Byte)( ( val & 0x40 ) >> 6 );
521 tt[2] = (FT_Byte)( ( val & 0x20 ) >> 5 );
522 tt[3] = (FT_Byte)( ( val & 0x10 ) >> 4 );
523 tt[4] = (FT_Byte)( ( val & 0x08 ) >> 3 );
524 tt[5] = (FT_Byte)( ( val & 0x04 ) >> 2 );
525 tt[6] = (FT_Byte)( ( val & 0x02 ) >> 1 );
526 tt[7] = (FT_Byte)( val & 0x01 );
528 tt += 8
591 FT_Byte* tt = t; local
643 FT_Byte* tt = t; local
683 FT_Byte* tt = t; local
    [all...]
  /external/freetype/src/base/
ftbitmap.c 502 FT_Byte* tt = t; local
512 tt[0] = (FT_Byte)( ( val & 0x80 ) >> 7 );
513 tt[1] = (FT_Byte)( ( val & 0x40 ) >> 6 );
514 tt[2] = (FT_Byte)( ( val & 0x20 ) >> 5 );
515 tt[3] = (FT_Byte)( ( val & 0x10 ) >> 4 );
516 tt[4] = (FT_Byte)( ( val & 0x08 ) >> 3 );
517 tt[5] = (FT_Byte)( ( val & 0x04 ) >> 2 );
518 tt[6] = (FT_Byte)( ( val & 0x02 ) >> 1 );
519 tt[7] = (FT_Byte)( val & 0x01 );
521 tt += 8
584 FT_Byte* tt = t; local
636 FT_Byte* tt = t; local
676 FT_Byte* tt = t; local
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/isc/
ev_timers.c 370 idle_timer *tt; local
373 OKNEW(tt);
374 tt->func = func;
375 tt->uap = uap;
376 tt->lastTouched = ctx->lastEventTime;
377 tt->max_idle = max_idle;
379 if (evSetTimer(opaqueCtx, idle_timeout, tt,
382 FREE(tt);
386 tt->timer = opaqueID->opaque;
394 idle_timer *tt = del->uap local
409 idle_timer *tt = timer->uap; local
425 idle_timer *tt = t->uap; local
    [all...]
  /external/chromium_org/third_party/tlslite/tlslite/utils/
rijndael.py 236 tt = 0
240 tt = tk[KC - 1]
241 tk[0] ^= (S[(tt >> 16) & 0xFF] & 0xFF) << 24 ^ \
242 (S[(tt >> 8) & 0xFF] & 0xFF) << 16 ^ \
243 (S[ tt & 0xFF] & 0xFF) << 8 ^ \
244 (S[(tt >> 24) & 0xFF] & 0xFF) ^ \
253 tt = tk[KC // 2 - 1]
254 tk[KC // 2] ^= (S[ tt & 0xFF] & 0xFF) ^ \
255 (S[(tt >> 8) & 0xFF] & 0xFF) << 8 ^ \
256 (S[(tt >> 16) & 0xFF] & 0xFF) << 16 ^
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
filter.rb 9 If a lexer grammar specifies the <tt>filter = true</t> option, the generated
11 <tt>next_token</tt> to catch RecognitionErrors and skip ahead in the input until
  /external/chromium_org/third_party/boringssl/src/crypto/asn1/
tasn_prn.c 165 const ASN1_TEMPLATE *tt, const ASN1_PCTX *pctx);
195 const ASN1_TEMPLATE *tt; local
274 tt = it->templates + i;
275 tmpfld = asn1_get_field_ptr(fld, tt);
276 if (!asn1_template_print_ctx(out, tmpfld, indent, tt, pctx))
308 for(i = 0, tt = it->templates; i < it->tcount; i++, tt++)
311 seqtt = asn1_do_adb(fld, tt, 1);
340 const ASN1_TEMPLATE *tt, const ASN1_PCTX *pctx)
345 flags = tt->flags
    [all...]
tasn_dec.c 81 const ASN1_TEMPLATE *tt, char opt,
85 const ASN1_TEMPLATE *tt, char opt,
139 const unsigned char **in, long len, const ASN1_TEMPLATE *tt)
143 return asn1_template_ex_d2i(pval, in, len, tt, 0, &c);
155 const ASN1_TEMPLATE *tt, *errtt = NULL; local
313 for (i = 0, tt=it->templates; i < it->tcount; i++, tt++)
315 pchptr = asn1_get_field_ptr(pval, tt);
319 ret = asn1_template_ex_d2i(pchptr, &p, len, tt, 1, ctx);
327 errtt = tt;
    [all...]
tasn_enc.c 70 const ASN1_TEMPLATE *tt,
129 const ASN1_TEMPLATE *tt = NULL; local
218 for (i = 0, tt = it->templates; i < it->tcount; tt++, i++)
222 seqtt = asn1_do_adb(pval, tt, 1);
236 for (i = 0, tt = it->templates; i < it->tcount; tt++, i++)
240 seqtt = asn1_do_adb(pval, tt, 1);
261 const ASN1_TEMPLATE *tt)
263 return asn1_template_ex_i2d(pval, out, tt, -1, 0)
    [all...]
  /external/openssl/crypto/asn1/
tasn_prn.c 165 const ASN1_TEMPLATE *tt, const ASN1_PCTX *pctx);
195 const ASN1_TEMPLATE *tt; local
274 tt = it->templates + i;
275 tmpfld = asn1_get_field_ptr(fld, tt);
276 if (!asn1_template_print_ctx(out, tmpfld, indent, tt, pctx))
308 for(i = 0, tt = it->templates; i < it->tcount; i++, tt++)
311 seqtt = asn1_do_adb(fld, tt, 1);
340 const ASN1_TEMPLATE *tt, const ASN1_PCTX *pctx)
344 flags = tt->flags
    [all...]
tasn_dec.c 84 const ASN1_TEMPLATE *tt, char opt,
88 const ASN1_TEMPLATE *tt, char opt,
142 const unsigned char **in, long len, const ASN1_TEMPLATE *tt)
146 return asn1_template_ex_d2i(pval, in, len, tt, 0, &c);
158 const ASN1_TEMPLATE *tt, *errtt = NULL; local
323 for (i = 0, tt=it->templates; i < it->tcount; i++, tt++)
325 pchptr = asn1_get_field_ptr(pval, tt);
329 ret = asn1_template_ex_d2i(pchptr, &p, len, tt, 1, ctx);
337 errtt = tt;
    [all...]
tasn_enc.c 74 const ASN1_TEMPLATE *tt,
133 const ASN1_TEMPLATE *tt = NULL; local
222 for (i = 0, tt = it->templates; i < it->tcount; tt++, i++)
226 seqtt = asn1_do_adb(pval, tt, 1);
240 for (i = 0, tt = it->templates; i < it->tcount; tt++, i++)
244 seqtt = asn1_do_adb(pval, tt, 1);
265 const ASN1_TEMPLATE *tt)
267 return asn1_template_ex_i2d(pval, out, tt, -1, 0)
    [all...]
  /external/bison/doc/
refcard.tex 181 \def\tt{\eighttt}
264 \def\kbd#1{{\tt#1}\null} %\null so not an abbrev even if period follows
267 \obeylines\obeyspaces\parskip0pt\tt}
276 \tt}
320 \key{Generate token and {\tt YYSTYPE} definitions.} {-d}
322 \key{Don't put {\tt \#line} directives in the parser.} {-l}
326 \key{Emulate {\tt yacc} (generate {\tt y.tab.*} files).} {-y}
329 {\bf Note:} The token and {\tt YYSTYPE} definitions are generated
330 to a file called {\tt y.tab.h} if the {\tt -y} option is used
    [all...]
  /external/aac/libMpegTPEnc/src/
tpenc_latm.h 127 TRANSPORT_TYPE tt; member in struct:__anon4813
169 * \param tt the specific TRANSPORT_TYPE to be used, either TT_MP4_LOAS, TT_MP4_LATM_MCP1 or TT_MP4_LATM_MCP0 LOAS
179 TRANSPORT_TYPE tt,
  /external/chromium_org/third_party/angle/tests/compiler_tests/
VariablePacker_test.cpp 73 for (size_t tt = 0; tt < ArraySize(types); ++tt) {
74 sh::GLenum type = types[tt];
122 for (size_t tt = 0; tt < ArraySize(types); ++tt) {
123 GLenum type = types[tt];
  /external/chromium_org/third_party/skia/third_party/lua/src/
lstring.h 28 #define isreserved(s) ((s)->tsv.tt == LUA_TSHRSTR && (s)->tsv.extra > 0)
34 #define eqshrstr(a,b) check_exp((a)->tsv.tt == LUA_TSHRSTR, (a) == (b))
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/walkers/
table_walker.js 34 this.tt = new cvox.TraverseTable(null);
51 return this.tt.goToCell(position);
67 this.tt.goToCell(position);
108 return this.tt.goToCell([0, 0]);
120 return this.tt.goToLastCell();
132 return this.tt.goToCell([position[0], 0]);
144 return this.tt.goToRowLastCell();
156 return this.tt.goToCell([0, position[1]]);
168 return this.tt.goToColLastCell();
181 return this.tt.goToCell([position[0] + (sel.isReversed() ? -1 : 1)
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
token.rb 231 * <tt>type</tt>
232 * <tt>channel</tt>
233 * <tt>text</tt>
234 * <tt>input</tt>
235 * <tt>start</tt>
    [all...]
  /external/openssl/crypto/des/asm/
des-586.pl 245 local($a,$b,$tt,$shift,$mask,$last)=@_;
248 &mov( $tt, $a );
256 &xor( $tt, $a );
260 &xor( $tt, $a );
268 local($l,$r,$tt,$lr)=@_;
270 &R_PERM_OP($l,$r,$tt, 4,"0xf0f0f0f0",$l);
271 &R_PERM_OP($r,$tt,$l,20,"0xfff0000f",$l);
272 &R_PERM_OP($l,$tt,$r,14,"0x33333333",$r);
273 &R_PERM_OP($tt,$r,$l,22,"0x03fc03fc",$r);
274 &R_PERM_OP($l,$r,$tt, 9,"0xaaaaaaaa",$r)
    [all...]
  /external/openfst/src/include/fst/extensions/far/
compile-strings.h 147 FarTokenType tt,
167 if (tt == FTT_SYMBOL) {
169 } else if (tt == FTT_BYTE) {
171 } else if (tt == FTT_UTF8) {
261 << (tt == FTT_BYTE ? "byte" :
262 (tt == FTT_UTF8 ? "utf8" :
263 (tt == FTT_SYMBOL ? "symbol" : "unknown")))
  /external/clang/test/CodeGenCXX/
ptr-to-datamember.cpp 35 template <typename T> struct TT {
81 TT<I> tt; local
86 tt.pti = &I::x;
96 printf("%d\n", i.*tt.pti);
  /external/openssl/crypto/des/
des_locl.h 406 register DES_LONG tt; \
407 PERM_OP(r,l,tt, 4,0x0f0f0f0fL); \
408 PERM_OP(l,r,tt,16,0x0000ffffL); \
409 PERM_OP(r,l,tt, 2,0x33333333L); \
410 PERM_OP(l,r,tt, 8,0x00ff00ffL); \
411 PERM_OP(r,l,tt, 1,0x55555555L); \
416 register DES_LONG tt; \
417 PERM_OP(l,r,tt, 1,0x55555555L); \
418 PERM_OP(r,l,tt, 8,0x00ff00ffL); \
419 PERM_OP(l,r,tt, 2,0x33333333L);
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
nasm-pp.c 1994 Token *t, *tt, **tptr, *origline; local
2338 Token *t, *tt, *param_start, *macro_start, *last, **tptr, *origline; local
3804 Token *tt; local
3846 Token *t, *tt, **tail, *thead; local
4087 Token *t, *tt, *mstart, **tail, *thead; local
4641 Token **params, *t, *tt; local
4944 Token *t, *tt, **tail; local
    [all...]
  /external/bzip2/
bzip.css 64 code, tt, pre { font-size: 120%; }
65 code, tt { color: #761596; }

Completed in 653 milliseconds

12 3 4 5 6 7