HomeSort by relevance Sort by last modified time
    Searched refs:abcd (Results 1 - 25 of 28) sorted by null

1 2

  /external/clang/test/Lexer/
constants.c 24 'abcd' // expected-warning {{multi-character character constant}}
38 int e = 'abcd'; // still warn: expected-warning {{multi-character character constant}}
42 int f = 'abcd'; // ignored.
  /external/eigen/bench/
check_cache_queries.cpp 10 int abcd[4]; \
11 abcd[0] = abcd[1] = abcd[2] = abcd[3] = 0;\
12 EIGEN_CPUID(abcd, CODE, 0); \
14 << (int*)(abcd[0]) << " " << (int*)(abcd[1]) << " " \
15 << (int*)(abcd[2]) << " " << (int*)(abcd[3]) << " " << std::endl;
28 int abcd[4]; local
    [all...]
  /external/icu4c/test/intltest/
strtest.cpp 194 StringPiece abcd(abcdefg_chars, 4);
195 if(abcd.empty() || abcd.data()!=abcdefg_chars || abcd.length()!=4 || abcd.size()!=4) {
207 StringPiece sp(abcd, -1);
209 errln("StringPiece(abcd, -1) failed");
211 sp=StringPiece(abcd, 5);
213 errln("StringPiece(abcd, 5) failed");
215 sp=StringPiece(abcd, 2)
    [all...]
  /external/eigen/Eigen/src/Core/util/
Memory.h 740 # define EIGEN_CPUID(abcd,func,id) \
741 __asm__ __volatile__ ("xchgl %%ebx, %%esi;cpuid; xchgl %%ebx,%%esi": "=a" (abcd[0]), "=S" (abcd[1]), "=c" (abcd[2]), "=d" (abcd[3]) : "a" (func), "c" (id));
744 # define EIGEN_CPUID(abcd,func,id) \
745 __asm__ __volatile__ ("cpuid": "=a" (abcd[0]), "=b" (abcd[1]), "=c" (abcd[2]), "=d" (abcd[3]) : "a" (func), "c" (id) )
765 int abcd[4]; local
797 int abcd[4]; local
885 int abcd[4]; local
901 int abcd[4]; local
    [all...]
  /external/webkit/LayoutTests/fast/url/script-tests/
anchor.js 12 ["a\\nb\\rc\\td", "abcd"],
segments-from-data-url.js 58 ["http://foo/abcd?efgh?ijkl", ["http:","foo","","/abcd","?efgh?ijkl",""]],
59 ["http://foo/abcd#foo?bar", ["http:","foo","","/abcd","","#foo?bar"]],
segments.js 58 ["http://foo/abcd?efgh?ijkl", ["http:","foo","","/abcd","?efgh?ijkl",""]],
59 ["http://foo/abcd#foo?bar", ["http:","foo","","/abcd","","#foo?bar"]],
  /external/clang/test/Sema/
block-literal.c 65 myfunc(^(int abcd) {
  /external/valgrind/main/none/tests/amd64/
gen_insn_test.pl 234 if ($preset =~ /^([abcd][lh]|[abcd]x|e[abcd]x|r[abcd]x)\.(sb|ub|sw|uw|sd|ud|sq|uq|ps|pd)\[([^\]]+)\]$/)
354 if ($arg =~ /^([abcd]l|[abcd]x|e[abcd]x|r[abcd]x|r8|r16|r32|r64|mm|xmm|m8|m16|m32|m64|m128)\.(sb|ub|sw|uw|sd|ud|sq|uq|ps|pd)\[([^\]]+)\]$/)
509 elsif ($result =~ /^([abcd][lh]|[abcd]x|e[abcd]x|r[abcd]x)\.(sb|ub|sw|uw|sd|ud|sq|uq|ps|pd)\[([^\]]+)\]$/
    [all...]
  /external/valgrind/main/none/tests/x86/
gen_insn_test.pl 211 if ($preset =~ /^([abcd][lh]|[abcd]x|e[abcd]x)\.(sb|ub|sw|uw|sd|ud|sq|uq|ps|pd)\[([^\]]+)\]$/)
331 if ($arg =~ /^([abcd]l|[abcd]x|e[abcd]x|r8|r16|r32|mm|xmm|m8|m16|m32|m64|m128)\.(sb|ub|sw|uw|sd|ud|sq|uq|ps|pd)\[([^\]]+)\]$/)
486 elsif ($result =~ /^([abcd][lh]|[abcd]x|e[abcd]x)\.(sb|ub|sw|uw|sd|ud|sq|uq|ps|pd)\[([^\]]+)\]$/)
  /external/clang/test/Parser/
cxx-altivec.cpp 169 __vector float abcd; member in class:VectorClassMultipleMembers
  /external/v8/test/mjsunit/
regexp-static.js 122 assertEquals('abcd', 'abcd'.replace(re, f));
array-join.js 93 assertEquals("abcd", a.join("")); // Must not throw.
for-in-special-cases.js 75 var elements = Accumulate("abcd");
string-index.js 190 var str = 'abcd', arr = ['a', 'b', 'c', 'd', undefined, undefined];
  /external/valgrind/main/VEX/priv/
guest_s390_helpers.c 414 UInt uvwxy = ((high_surrogate >> 6) & 0xf) + 1; // abcd + 1
471 UInt uvwxy = ((high_surrogate >> 6) & 0xf) + 1; // abcd + 1
513 UInt abcd = (uvwxy - 1) & 0xf; local
516 UInt high_surrogate = (0xd8 << 8) | (abcd << 6) | efghij;
567 UInt abcd = srcval >> 12; local
570 UInt byte1 = 0xe0 | abcd;
715 UInt abcd = byte1 & 0xf; local
720 retval = (abcd << 12) | (efghij << 6) | klmnop;
763 UInt abcd = (uvwxy - 1) & 0xf; local
764 UInt high_surrogate = (0xd8 << 8) | (abcd << 6) | (efgh << 2) | ij
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
InstructionCodec.java 775 int abcd = in.read(); local
776 int a = nibble0(abcd);
777 int b = nibble1(abcd);
778 int c = nibble2(abcd);
779 int d = nibble3(abcd);
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
InstructionCodec.java 908 int abcd = in.read(); local
909 int a = nibble0(abcd);
910 int b = nibble1(abcd);
911 int c = nibble2(abcd)
    [all...]
  /external/v8/test/mjsunit/compiler/
optimized-for-in.js 192 tryFunction("0a1b2c3d", function () { return "abcd"; }, c);
197 return "abcd";
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnMathUtils.cpp 404 float abcd = interpolate(abc, bcd, t); local
409 dst[6] = abcd;
  /external/chromium/net/data/proxy_resolver_v8_unittest/
pac_library_unittest.js 132 t.expectTrue(isInNetEx("3ffe:8311:ffff:abcd:1234:dead:beef:101",
141 t.expectFalse(isInNetEx("3fff:8311:ffff:abcd:1234:dead:beef:101",
  /external/valgrind/main/none/tests/s390x/
cu42.stdout.exp 163 UTF16: 0078 d000 d88c df33 d8c1 dc04 abcd
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
perlstress-001.js 495 string = 'abcd';
628 string = 'abcd';
630 expectedmatch = Array('abcd', 'a');
648 pattern = /abcd*efg/;
691 string = 'abcd';
712 string = 'abcd';
714 expectedmatch = Array('abcd', 'bc', 'd');
719 string = 'abcd';
721 expectedmatch = Array('abcd', 'bc', 'd');
726 string = 'abcd';
    [all...]
  /external/skia/legacy/src/core/
SkGeometry.cpp 575 SkScalar abcd = SkScalarInterp(abc, bcd, t); local
580 dst[6] = abcd;
    [all...]
  /external/skia/src/core/
SkGeometry.cpp 575 SkScalar abcd = SkScalarInterp(abc, bcd, t); local
580 dst[6] = abcd;
    [all...]

Completed in 1121 milliseconds

1 2