Searched defs:tmp (Results 1 - 25 of 2459) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Duint128_t.c10 __uint128_t tmp; local
12 tmp = val;
13 tmp *= numer;
14 tmp /= denom;
16 return tmp;
H A Dvla-3.c8 char __attribute__((aligned(16))) tmp[size+32]; local
11 adr(tmp);
H A Dbuiltins-systemz-error2.c8 v16i8 tmp = __builtin_s390_vaq(a, b); // expected-error {{'__builtin_s390_vaq' needs target feature vector}} local
9 return tmp;
H A D2007-08-01-LoadStoreAlign.c14 int tmp = t.b; local
15 u.b = tmp;
16 return tmp;
/external/llvm/unittests/Support/
H A Dformatted_raw_ostream_test.cpp24 char tmp[100] = ""; local
27 C.write(tmp, 100);
/external/ltp/lib/newlib_tests/
H A Dtst_res_hexd.c23 char tmp[] = "Hello from tst_res_hexd"; local
25 tst_res_hexd(TPASS, tmp, sizeof(tmp), "%s%d", "dump", 1);
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/pthread_h/
H A D7-1-buildonly.c16 int tmp; variable
20 tmp = pthread_equal(a, b);
/external/testng/src/test/java/test/tmp/
H A DAFactory.java1 package test.tmp;
H A DBase.java1 package test.tmp;
H A DIgnoreUntil.java1 package test.tmp;
H A DTest1.java1 package test.tmp;
H A DBeforeGroupTest.java1 package test.tmp;
H A DRetryAnalyzer.java1 package test.tmp;
H A DStaticInitializerTest.java1 package test.tmp;
/external/testng/src/test/java/test/tmp/verify/
H A DVerify.java1 package test.tmp.verify;
/external/clang/test/Sema/
H A Dstruct-cast.c12 struct S tmp; variable in typeref:struct:S
15 tmp = (struct S)foo();
/external/clang/test/SemaTemplate/
H A Ddefault-expr-arguments-2.cpp15 // CHECK: VarDecl{{.*}}tmp 'bar<int>'
17 bar<int> tmp; local
/external/e2fsprogs/lib/uuid/
H A Dpack.c41 uint32_t tmp; local
44 tmp = uu->time_low;
45 out[3] = (unsigned char) tmp;
46 tmp >>= 8;
47 out[2] = (unsigned char) tmp;
48 tmp >>= 8;
49 out[1] = (unsigned char) tmp;
50 tmp >>= 8;
51 out[0] = (unsigned char) tmp;
53 tmp
[all...]
H A Dunpack.c42 uint32_t tmp; local
44 tmp = *ptr++;
45 tmp = (tmp << 8) | *ptr++;
46 tmp = (tmp << 8) | *ptr++;
47 tmp = (tmp << 8) | *ptr++;
48 uu->time_low = tmp;
50 tmp
[all...]
/external/testng/src/test/java/test/tmp/b/
H A DTmpB.java1 package test.tmp.b;
/external/testng/src/test/java/test/tmp/p2/
H A DServiceTest.java1 package test.tmp.p2;
/external/adhd/cras/src/common/
H A Dsfh.c44 uint32_t tmp; local
55 tmp = (get16bits (data+2) << 11) ^ hash;
56 hash = (hash << 16) ^ tmp;
/external/clang/test/CodeGenCXX/
H A D2007-05-03-VectorInit.cpp10 float4 tmp = {a,a,a,a}; local
11 return tmp;
/external/kmod/shared/
H A Dscratchbuf.c33 char *tmp; local
39 tmp = realloc(buf->bytes, size);
40 if (tmp == NULL)
43 tmp = malloc(size);
44 if (tmp == NULL)
46 memcpy(tmp, buf->bytes, buf->size);
50 buf->bytes = tmp;
/external/ltp/testcases/open_posix_testsuite/include/
H A Dtimespec.h26 struct timespec *tmp; local
27 tmp = t1;
29 t2 = tmp;

Completed in 2570 milliseconds

1234567891011>>