HomeSort by relevance Sort by last modified time
    Searched defs:tt (Results 51 - 75 of 203) sorted by null

1 23 4 5 6 7 8 9

  /external/flatbuffers/tests/namespace_test/
namespace_test1_generated.h 137 static flatbuffers::TypeTable tt = { local
140 return &tt;
150 static flatbuffers::TypeTable tt = { local
153 return &tt;
166 static flatbuffers::TypeTable tt = { local
169 return &tt;
namespace_test2_generated.h 245 static flatbuffers::TypeTable tt = { local
248 return &tt;
268 static flatbuffers::TypeTable tt = { local
271 return &tt;
288 static flatbuffers::TypeTable tt = { local
291 return &tt;
  /external/freetype/src/base/
ftbitmap.c 595 FT_Byte* tt = t; local
605 tt[0] = (FT_Byte)( ( val & 0x80 ) >> 7 );
606 tt[1] = (FT_Byte)( ( val & 0x40 ) >> 6 );
607 tt[2] = (FT_Byte)( ( val & 0x20 ) >> 5 );
608 tt[3] = (FT_Byte)( ( val & 0x10 ) >> 4 );
609 tt[4] = (FT_Byte)( ( val & 0x08 ) >> 3 );
610 tt[5] = (FT_Byte)( ( val & 0x04 ) >> 2 );
611 tt[6] = (FT_Byte)( ( val & 0x02 ) >> 1 );
612 tt[7] = (FT_Byte)( val & 0x01 );
614 tt += 8
671 FT_Byte* tt = t; local
721 FT_Byte* tt = t; local
758 FT_Byte* tt = t; local
    [all...]
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
APIData.java 136 int tt = 0; local
145 tt += t;
149 pw.println("total apis: " + tt);
  /external/llvm/test/MC/ARM/
thumbv8m.s 169 // CHECK: tt r0, r1 @ encoding: [0x41,0xe8,0x00,0xf0]
170 tt r0, r1 label
172 // CHECK: tt r0, sp @ encoding: [0x4d,0xe8,0x00,0xf0]
173 tt r0, sp label
250 // UNDEF: tt r0, r1, r2
251 tt r0, r1, r2 label
253 // UNDEF: tt r0, [r1]
254 tt r0, [r1] label
256 // UNDEF: tt r0, r1, #4
257 tt r0, r1, # label
260 tt r0, #4 label
268 tt sp, r0 label
271 tt pc, r0 label
274 tt r0, pc label
    [all...]
  /external/ltp/pan/
tag_report.c 235 char *tag, *contact, *is, *mystime, *duration, *tt, *ti, *sl, *el; local
261 if ((tt = (char *)sym_get(keys, key_get)) == NULL) {
266 if (strcmp(tt, "exited")) {
267 test_result(tag, NULL, NULL, tt, keys);
293 if (strcmp(tt, "timeout")) {
336 if ((tt = (char *)sym_get(keys, key_get)) == NULL) {
337 tt = "No_Termination_Type";
367 ti, tt, sl, el);
  /external/mesa3d/src/mesa/swrast/
s_blend.c 188 const GLfloat tt = (GLfloat) t / 65535.0F; local
189 GLushort r = (GLushort) ((rgba[i][RCOMP] - dest[i][RCOMP]) * tt + dest[i][RCOMP]);
190 GLushort g = (GLushort) ((rgba[i][GCOMP] - dest[i][GCOMP]) * tt + dest[i][GCOMP]);
191 GLushort b = (GLushort) ((rgba[i][BCOMP] - dest[i][BCOMP]) * tt + dest[i][BCOMP]);
192 GLushort a = (GLushort) ((rgba[i][ACOMP] - dest[i][ACOMP]) * tt + dest[i][ACOMP]);
    [all...]
  /external/pdfium/third_party/lcms/src/
cmswtpnt.c 101 cmsFloat64Number tt; // slope of ISOTEMPERATURE. line member in struct:__anon31452
106 // {Mirek, Ut, Vt, Tt }
168 tj = isotempdata[j].tt;
  /external/syslinux/lzo/src/
lzo1x_9x.c 290 lzo_uint tt = t - 18; local
293 while (tt > 255)
295 tt -= 255;
298 assert(tt > 0);
299 *op++ = LZO_BYTE(tt);
  /external/tcpdump/
print-ip.c 107 int tt; local
110 tt = *cp;
111 if (tt == IPOPT_EOL)
113 else if (tt == IPOPT_NOP)
122 switch (tt) {
  /external/toybox/scripts/
config2help.c 359 int ff = strcspn(from, " ]"), tt = strcspn(to, " ]"); local
361 if (from[ff] == ']' && to[tt] == ']') {
362 try = xmprintf("[-%.*s%.*s] ", ff, from, tt, to);
363 qsort(try+2, ff+tt, 1, (void *)charsort);
365 that = skip_spaces(that+tt+3);
  /external/wpa_supplicant_8/src/utils/
os_win32.c 31 ULONGLONG tt; local
43 tt = (li.QuadPart - EPOCHFILETIME) / 10;
44 t->sec = (os_time_t) (tt / 1000000);
45 t->usec = (os_time_t) (tt % 1000000);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
sad_inline.h 351 register int32 tt = tmp; local
360 "r"(tt),
  /system/nfc/src/gki/common/
gki_buffer.cc 121 uint8_t i, tt, mb; local
125 for (tt = 0; tt < GKI_MAX_TASKS; tt++) {
127 p_cb->OSTaskQFirst[tt][mb] = NULL;
128 p_cb->OSTaskQLast[tt][mb] = NULL;
132 for (tt = 0; tt < GKI_NUM_TOTAL_BUF_POOLS; tt++) {
133 p_cb->pool_start[tt] = NULL
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
timemodule.c 408 time_t tt = time(NULL); local
409 buf = *localtime(&tt);
570 time_t tt = time(NULL); local
571 buf = *localtime(&tt);
595 time_t tt; local
601 tt = time(NULL);
606 tt = _PyTime_DoubleToTimet(dt);
607 if (tt == (time_t)-1 && PyErr_Occurred())
610 p = ctime(&tt);
632 time_t tt; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
timemodule.c 408 time_t tt = time(NULL); local
409 buf = *localtime(&tt);
570 time_t tt = time(NULL); local
571 buf = *localtime(&tt);
595 time_t tt; local
601 tt = time(NULL);
606 tt = _PyTime_DoubleToTimet(dt);
607 if (tt == (time_t)-1 && PyErr_Occurred())
610 p = ctime(&tt);
632 time_t tt; local
    [all...]
_lsprof.c 79 PY_LONG_LONG tt; member in struct:_ProfilerSubEntry
90 PY_LONG_LONG tt; /* total time in this entry */ member in struct:_ProfilerEntry
244 self->tt = 0;
277 self->tt = 0;
342 PY_LONG_LONG tt = CALL_TIMER(pObj) - self->t0; local
343 PY_LONG_LONG it = tt - self->subt;
345 self->previous->subt += tt;
348 entry->tt += tt;
359 subentry->tt += tt;
    [all...]
  /external/boringssl/src/crypto/asn1/
tasn_dec.c 84 const ASN1_TEMPLATE *tt, char opt,
88 const ASN1_TEMPLATE *tt, char opt,
160 const ASN1_TEMPLATE *tt, *errtt = NULL; local
313 tt = it->templates + i;
314 pchptr = asn1_get_field_ptr(pval, tt);
315 ASN1_template_free(pchptr, tt);
324 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)
    [all...]
  /external/clang/test/Analysis/
taint-tester.c 96 int tt = t; // expected-warning + {{tainted}} local
  /external/clang/test/SemaTemplate/
default-expr-arguments.cpp 330 void tt() { function in namespace:PR13758
  /external/icu/android_icu4j/src/main/java/android/icu/util/
RuleBasedTimeZone.java 173 TimeZoneTransition tt = getNextTransition(now, false); local
174 if (tt != null && tt.getTo().getDSTSavings() != 0) {
197 TimeZoneTransition tt = getNextTransition(time, false); local
198 if (tt == null) {
202 TimeZoneRule toRule = tt.getTo();
218 time = tt.getTime();
332 long tt = tzt.getTime(); local
333 if (tt > base || (inclusive && tt == base))
401 long tt = tzt.getTime(); local
497 long tt; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
RuleBasedTimeZone.java 188 TimeZoneTransition tt = getNextTransition(now, false); local
189 if (tt != null && tt.getTo().getDSTSavings() != 0) {
213 TimeZoneTransition tt = getNextTransition(time, false); local
214 if (tt == null) {
218 TimeZoneRule toRule = tt.getTo();
234 time = tt.getTime();
354 long tt = tzt.getTime(); local
355 if (tt > base || (inclusive && tt == base))
425 long tt = tzt.getTime(); local
522 long tt; local
    [all...]
  /external/python/cpython2/Modules/
timemodule.c 408 time_t tt = time(NULL); local
409 buf = *localtime(&tt);
570 time_t tt = time(NULL); local
571 buf = *localtime(&tt);
595 time_t tt; local
601 tt = time(NULL);
606 tt = _PyTime_DoubleToTimet(dt);
607 if (tt == (time_t)-1 && PyErr_Occurred())
610 p = ctime(&tt);
632 time_t tt; local
    [all...]
  /prebuilts/misc/windows/sdl2/test/
testautomation_audio.c 201 int t, tt; local
216 tt = t + SDLTest_RandomIntegerInRange(1,10);
217 nn = SDL_GetNumAudioDevices(tt);
218 SDLTest_AssertCheck(n==nn, "Verify result from SDL_GetNumAudioDevices(%i), expected same number of audio devices %i, got %i", tt, n, nn);
219 nn = SDL_GetNumAudioDevices(-tt);
220 SDLTest_AssertCheck(n==nn, "Verify result from SDL_GetNumAudioDevices(%i), expected same number of audio devices %i, got %i", -tt, n, nn);
233 tt = t + SDLTest_RandomIntegerInRange(1,10);
234 nameAgain = SDL_GetAudioDeviceName(i, tt);
235 SDLTest_AssertCheck(nameAgain != NULL, "Verify result from SDL_GetAudioDeviceName(%i, %i) is not NULL", i, tt);
237 SDLTest_AssertCheck(nameAgain[0] != '\0', "Verify result from SDL_GetAudioDeviceName(%i, %i) is not empty, got: '%s'", i, tt, nameAgain)
240 i, t, i, tt); local
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_lgamma_r.c 109 /* tt = -(tail of tf) */
110 tt = -3.63867699703950536541e-18, /* 0xBC50C7CA, 0xA48A971F */ variable
263 p = z*p1-(tt-w*(p2+y*p3));

Completed in 952 milliseconds

1 23 4 5 6 7 8 9