HomeSort by relevance Sort by last modified time
    Searched defs:res1 (Results 1 - 25 of 159) sorted by null

1 2 3 4 5 6 7

  /external/valgrind/memcheck/tests/
buflen_check.c 8 int res1, res2, res3; local
11 res1 = socket(PF_UNIX, SOCK_STREAM, 0);
12 if (res1 == 0) {
18 res2 = getsockname(res1, NULL, &len); /* NULL is bogus */
19 res3 = getsockname(res1, &name, NULL); /* NULL is bogus */
unit_libcbase.c 369 Long res1 = VG_(strtoll10)(a[i].str, &endptr1); local
371 //printf("res1 = %lld, *endptr1 = '%c'\n", res1, *endptr1);
373 CHECK(a[i].res == res1 && a[i].endptr_val == *endptr1);
374 CHECK(res2 == res1 && *endptr2 == *endptr1);
424 Long res1 = VG_(strtoll16)(a[i].str, &endptr1); local
426 //printf(" res1 = %lld, *endptr1 = '%c'\n", res1, *endptr1);
428 CHECK(a[i].res == res1 && a[i].endptr_val == *endptr1);
429 CHECK(res2 == res1 && *endptr2 == *endptr1)
    [all...]
  /external/valgrind/none/tests/amd64/
fxtract.c 5 double arg, res1, res2; variable
14 "\tfstpl res1\n"
22 res1 = res2 = 0.0;
24 printf("%17.10e -> %14.10f %14.10f\n", arg, res1, res2);
  /external/valgrind/none/tests/x86/
fxtract.c 5 double arg, res1, res2; variable
13 "\tfstpl " VG_SYM(res1) "\n"
21 res1 = res2 = 0.0;
23 printf("%17.10e -> %14.10f %14.10f\n", arg, res1, res2);
  /external/icu/icu4c/source/test/intltest/
sdtfmtts.cpp 144 UnicodeString res1, res2; local
147 res1 = def.format(d, res1, pos1);
148 logln( (UnicodeString) "" + d + " formatted to " + res1);
dcfmapts.cpp 175 UnicodeString res1, res2, res3, res4; local
178 res1 = def.format(d, res1, pos1);
179 logln( (UnicodeString) "" + (int32_t) d + " formatted to " + res1);
dtfmapts.cpp 164 UnicodeString res1, res2, res3; local
168 res1 = fr->format(d, res1, pos1, status);
172 logln( (UnicodeString) "" + d + " formatted to " + res1);
nmfmapts.cpp 122 UnicodeString res1, res2, res3, res4, res5, res6; local
125 res1 = cur_fr->format(d, res1);
126 logln( (UnicodeString) "" + (int32_t) d + " formatted to " + res1);
330 UnicodeString res0, res1, res2, res3, res4, res5; local
336 f1->format(n, res1);
347 logln((UnicodeString)"f1 src int: " + res1);
366 if (res4 != res1) {
376 if (res1 != ures4) {
  /external/libvpx/libvpx/vp9/common/mips/dspr2/
vp9_intrapred4_dspr2.c 90 int32_t res0, res1; local
126 "sra %[res1], %[resr], 16 \n\t"
127 "lbux %[res1], %[res1](%[cm]) \n\t"
133 "sb %[res1], 1(%[dst]) \n\t"
135 "sra %[res1], %[resl], 16 \n\t"
136 "lbux %[res1], %[res1](%[cm]) \n\t"
145 "sb %[res1], 3(%[dst]) \n\t"
153 "sra %[res1], %[resr], 16 \n\t
    [all...]
vp9_intrapred8_dspr2.c 161 int32_t res0, res1, res2, res3; local
194 "sra %[res1], %[reshw], 16 \n\t"
197 "lbux %[res1], %[res1](%[cm]) \n\t"
202 "sb %[res1], 1(%[dst]) \n\t"
218 "sra %[res1], %[reshw], 16 \n\t"
223 "lbux %[res1], %[res1](%[cm]) \n\t"
228 "sb %[res1], 5(%[dst]) \n\t"
247 "sra %[res1], %[reshw], 16 \n\t
    [all...]
  /frameworks/base/tools/aapt2/
ResourceTypeExtensions.h 79 uint16_t res1; member in struct:aapt::Public_header
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/mips/dspr2/
vp9_intrapred4_dspr2.c 90 int32_t res0, res1; local
126 "sra %[res1], %[resr], 16 \n\t"
127 "lbux %[res1], %[res1](%[cm]) \n\t"
133 "sb %[res1], 1(%[dst]) \n\t"
135 "sra %[res1], %[resl], 16 \n\t"
136 "lbux %[res1], %[res1](%[cm]) \n\t"
145 "sb %[res1], 3(%[dst]) \n\t"
153 "sra %[res1], %[resr], 16 \n\t
    [all...]
vp9_intrapred8_dspr2.c 161 int32_t res0, res1, res2, res3; local
194 "sra %[res1], %[reshw], 16 \n\t"
197 "lbux %[res1], %[res1](%[cm]) \n\t"
202 "sb %[res1], 1(%[dst]) \n\t"
218 "sra %[res1], %[reshw], 16 \n\t"
223 "lbux %[res1], %[res1](%[cm]) \n\t"
228 "sb %[res1], 5(%[dst]) \n\t"
247 "sra %[res1], %[reshw], 16 \n\t
    [all...]
  /external/clang/test/SemaCXX/
altivec.cpp 20 int res1[vec_step(arg1) == 8 ? 1 : -1]; local
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestSimpleDateFormatAPI.java 77 StringBuffer res1 = new StringBuffer(); local
82 res1 = def.format(d, res1, pos1);
83 logln( "" + d.getTime() + " formatted to " + res1);
IntlTestDateFormatAPI.java 99 StringBuffer res1 = new StringBuffer(); local
105 res1 = fr.format(d, res1, pos1);
106 logln("" + d.getTime() + " formatted to " + res1);
IntlTestNumberFormatAPI.java 82 String res1 = new String(); local
93 res1 = cur_fr.format(d);
94 logln( "" + d + " formatted to " + res1);
  /external/mesa3d/src/gallium/tests/graw/
occlusion-query.c 161 uint64_t res1, res2; local
187 info.ctx->get_query_result(info.ctx, q1, TRUE, &res1);
190 printf("result1 = %lu result2 = %lu\n", res1, res2);
191 if (res1 < expected1_min || res1 > expected1_max)
  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/drawable/
IconTest.java 112 final Bitmap res1 = ((BitmapDrawable) getContext().getDrawable(R.drawable.landscape)) local
123 res1.compress(Bitmap.CompressFormat.PNG, 100,
124 new FileOutputStream(new File(dir, "res1-original.png")));
126 new FileOutputStream(new File(dir, "res1-test.png")));
127 if (!equalBitmaps(res1, test1)) {
128 findBitmapDifferences(res1, test1);
129 fail("res1 differs, check " + dir);
225 final Icon res1 = Icon.createWithResource(getContext(), R.drawable.landscape); local
226 imgs.add(res1);
  /bionic/libc/kernel/uapi/linux/
fib_rules.h 40 __u8 res1; member in struct:fib_rule_hdr
  /development/ndk/platforms/android-21/include/linux/
fib_rules.h 40 __u8 res1; member in struct:fib_rule_hdr
  /device/generic/goldfish/camera/
QemuClient.cpp 360 const status_t res1 = query->completeQuery(res); local
361 ALOGE_IF(res1 != NO_ERROR && res1 != res,
363 __FUNCTION__, res1, query->mQuery);
364 return res1;
  /external/deqp/modules/gles3/functional/
es3fShaderPackingFunctionTests.cpp 214 const deUint16 res1 = (deUint16)(res >> 16); local
216 const int diff1 = de::abs((int)ref1 - (int)res1);
302 const float res1 = outputs[valNdx].y(); local
305 const deUint32 diff1 = getUlpDiff(ref1, res1);
314 << ", got vec2(" << HexFloat(res0) << ", " << HexFloat(res1) << ")"
405 const deUint16 res1 = (deUint16)(res >> 16); local
407 const int diff1 = de::abs((int)ref1 - (int)res1);
493 const float res1 = outputs[valNdx].y(); local
496 const deUint32 diff1 = getUlpDiff(ref1, res1);
505 << ", got vec2(" << HexFloat(res0) << ", " << HexFloat(res1) << ")"
601 const deUint16 res1 = (deUint16)(res >> 16); local
704 const float res1 = outputs[valNdx].y(); local
    [all...]
  /external/iproute2/include/linux/
fib_rules.h 25 __u8 res1; /* reserved */ member in struct:fib_rule_hdr
  /external/kernel-headers/original/uapi/linux/
fib_rules.h 25 __u8 res1; /* reserved */ member in struct:fib_rule_hdr

Completed in 2524 milliseconds

1 2 3 4 5 6 7