Searched defs:s8 (Results 1 - 25 of 58) sorted by relevance

123

/external/clang/test/CodeGenCXX/
H A D2010-06-22-ZeroBitfield.cpp4 struct s8 { s8_0 a; s8_1 b; }; struct
5 s8 f8() { return s8(); }
H A Dx86_32-arguments.cpp106 // CHECK-LABEL: define void @_Z2f8v(%struct.s8* noalias sret %agg.result)
109 struct s8 { s8_0 a; s8_1 b; }; struct
110 s8 f8() { return s8(); }
/external/clang/test/Sema/
H A Dno-documentation-warn-tagdecl-specifier.c41 struct s8 { int is8; }; struct
42 /** @return s8 Test 8 */
43 struct s4 *f8(struct s8 *p);
H A Dpragma-align-mac68k.c71 struct s8 { struct
75 extern int a8_0[sizeof(struct s8) == 2 ? 1 : -1];
76 extern int a8_1[__alignof(struct s8) == 2 ? 1 : -1];
H A Dtransparent-union.c54 aligned_struct8 s8; // expected-warning{{alignment of field}} member in union:__anon19165
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dtypes.h17 typedef signed char s8; typedef
/external/chromium_org/v8/test/mjsunit/
H A Duri.js49 var s8 = String.fromCharCode(cc8_1)+String.fromCharCode(cc8_2); variable
63 assertEquals('%F0%90%80%80', encodeURI(s8));
74 assertEquals(cc8_1, decodeURI(encodeURI(s8)).charCodeAt(0));
75 assertEquals(cc8_2, decodeURI(encodeURI(s8)).charCodeAt(1));
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DHex.java145 public static String s8(long v) { method in class:Hex
/external/elfutils/0.153/libcpu/
H A Dmemory-access.h89 int64_t s8; member in union:unaligned
146 return up->s8;
/external/smali/util/src/main/java/org/jf/util/
H A DHex.java157 public static String s8(long v) { method in class:Hex
/external/clang/test/CodeGen/
H A Dregparm-struct.c106 struct s8 { struct
110 __attribute__((regparm(3))) void f12(struct s8 a, int b);
113 struct s8 x = {41, 42};
H A Dbitfield-2.c294 struct __attribute__((packed)) s8 { struct
301 struct s8 g8 = { 0xF };
303 int f8_load(struct s8 *a0) {
306 int f8_store(struct s8 *a0) {
309 int f8_reload(struct s8 *a0) {
317 struct s8 g8 = { 0xdeadbeef, 0xdeadbeef, 0xdeadbeef, 0xdeadbeef };
H A Dms_struct-bitfield.c105 int s8 = sizeof(t8); variable
106 // CHECK: @s8 = global i32 0
107 // CHECK-ARM: @s8 = global i32 0
H A Darm-arguments.c49 // APCS-GNU: struct.s8* noalias sret
51 struct s8 { struct { int : 0; } f0[1]; }; struct
52 struct s8 f8(void) {}
95 void f16(struct s8 a0) {}
110 struct s19 { int f0; struct s8 f1; };
116 struct s20 { struct s8 f1; int f0; };
/external/pixman/pixman/
H A Dpixman-mips-dspr2-asm.h66 #define s8 $30 macro
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dstringutil.cc305 const StringHolder& s7, const StringHolder& s8) {
308 s5.Length() + s6.Length() + s7.Length() + s8.Length() + 1);
316 result += s8;
324 const StringHolder& s7, const StringHolder& s8,
328 s5.Length() + s6.Length() + s7.Length() + s8.Length() +
337 result += s8;
346 const StringHolder& s7, const StringHolder& s8,
351 s5.Length() + s6.Length() + s7.Length() + s8.Length() +
360 result += s8;
371 const StringHolder& s7, const StringHolder& s8,
302 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8) argument
321 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8, const StringHolder& s9) argument
343 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8, const StringHolder& s9, const StringHolder& s10, const StringHolder& s11) argument
368 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8, const StringHolder& s9, const StringHolder& s10, const StringHolder& s11, const StringHolder& s12) argument
[all...]
/external/chromium_org/third_party/smhasher/src/
H A DSpooky.h136 uint64 &s8, uint64 &s9, uint64 &s10,uint64 &s11)
144 s6 += data[6]; s8 ^= s4; s5 ^= s6; s6 = Rot64(s6,39); s5 += s7;
145 s7 += data[7]; s9 ^= s5; s6 ^= s7; s7 = Rot64(s7,57); s6 += s8;
146 s8 += data[8]; s10 ^= s6; s7 ^= s8; s8 = Rot64(s8,55); s7 += s9;
147 s9 += data[9]; s11 ^= s7; s8 ^= s9; s9 = Rot64(s9,54); s8 += s10;
148 s10 += data[10]; s0 ^= s8; s
132 Mix( const uint64 *data, uint64 &s0, uint64 &s1, uint64 &s2, uint64 &s3, uint64 &s4, uint64 &s5, uint64 &s6, uint64 &s7, uint64 &s8, uint64 &s9, uint64 &s10,uint64 &s11) argument
[all...]
/external/clang/test/CXX/class/class.union/
H A Dp1.cpp94 struct s8 { struct in union:U3
95 s8(...) = delete; // expected-note {{because it is a variadic function}} expected-warning {{C++11}}
/external/elfutils/0.153/libdw/
H A Dmemory-access.h190 int64_t s8; member in union:unaligned
260 return up->s8;
/external/icu/icu4c/source/i18n/
H A Dcollationfastlatin.cpp798 const uint8_t *s8, int32_t &sIndex, int32_t sLength) {
803 uint8_t t1 = s8[sIndex];
804 uint8_t t2 = s8[i2];
821 const uint8_t *s8, int32_t &sIndex) {
826 return table[((c - 0xc2) << 6) + s8[sIndex++]]; // 0080..017F
828 uint8_t t2 = s8[sIndex + 1];
841 const UChar *s16, const uint8_t *s8, int32_t &sIndex, int32_t &sLength) {
871 c2 = s8[nextIndex++];
875 0x80 <= (t = s8[nextIndex]) && t <= 0xbf) {
881 if(c2 == 0xe2 && s8[nextInde
797 lookupUTF8(const uint16_t *table, UChar32 c, const uint8_t *s8, int32_t &sIndex, int32_t sLength) argument
820 lookupUTF8Unsafe(const uint16_t *table, UChar32 c, const uint8_t *s8, int32_t &sIndex) argument
840 nextPair(const uint16_t *table, UChar32 c, uint32_t ce, const UChar *s16, const uint8_t *s8, int32_t &sIndex, int32_t &sLength) argument
[all...]
/external/libunwind/include/
H A Ddwarf_i.h33 int8_t s8; member in union:__anon24651
51 *val = mvp->s8;
52 *addr += sizeof (mvp->s8);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dusettest.c604 static const char* s8="\xE0\xB8\x81\xE3\x80\x80"; local
623 3!=uset_spanUTF8(idSet, s8, 6, USET_SPAN_CONTAINED) ||
624 0!=uset_spanUTF8(idSet, s8, 6, USET_SPAN_NOT_CONTAINED) ||
625 6!=uset_spanBackUTF8(idSet, s8, 6, USET_SPAN_CONTAINED) ||
626 3!=uset_spanBackUTF8(idSet, s8, 6, USET_SPAN_NOT_CONTAINED)
643 3!=uset_spanUTF8(idSet, s8, 6, USET_SPAN_CONTAINED) ||
644 0!=uset_spanUTF8(idSet, s8, 6, USET_SPAN_NOT_CONTAINED) ||
645 6!=uset_spanBackUTF8(idSet, s8, 6, USET_SPAN_CONTAINED) ||
646 3!=uset_spanBackUTF8(idSet, s8, 6, USET_SPAN_NOT_CONTAINED)
/external/icu/icu4c/source/test/cintltst/
H A Dusettest.c604 static const char* s8="\xE0\xB8\x81\xE3\x80\x80"; local
623 3!=uset_spanUTF8(idSet, s8, 6, USET_SPAN_CONTAINED) ||
624 0!=uset_spanUTF8(idSet, s8, 6, USET_SPAN_NOT_CONTAINED) ||
625 6!=uset_spanBackUTF8(idSet, s8, 6, USET_SPAN_CONTAINED) ||
626 3!=uset_spanBackUTF8(idSet, s8, 6, USET_SPAN_NOT_CONTAINED)
643 3!=uset_spanUTF8(idSet, s8, 6, USET_SPAN_CONTAINED) ||
644 0!=uset_spanUTF8(idSet, s8, 6, USET_SPAN_NOT_CONTAINED) ||
645 6!=uset_spanBackUTF8(idSet, s8, 6, USET_SPAN_CONTAINED) ||
646 3!=uset_spanBackUTF8(idSet, s8, 6, USET_SPAN_NOT_CONTAINED)
/external/chromium_org/third_party/icu/source/common/
H A Dunisetspan.cpp328 uint8_t *s8=utf8+utf8Count; local
329 int32_t length8=appendUTF8(s16, length16, s8, utf8Length-utf8Count);
336 spanLength=spanSet.spanUTF8((const char *)s8, length8, USET_SPAN_CONTAINED);
340 spanLength=length8-spanSet.spanBackUTF8((const char *)s8, length8, USET_SPAN_CONTAINED);
366 uint8_t *s8=utf8+utf8Count; local
367 int32_t length8=appendUTF8(s16, length16, s8, utf8Length-utf8Count);
976 const uint8_t *s8=utf8; local
986 s8+=length8;
994 U8_BACK_1(s8, 0, overlap); // Length of the string minus the last code point.
1009 matches8(s+pos-overlap, s8, length
1156 const uint8_t *s8=utf8; local
1448 const uint8_t *s8=utf8; local
1491 const uint8_t *s8=utf8; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/mips/dspr2/
H A Dvp9_itrans16_dspr2.c915 int s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, s13, s14, s15; local
952 s8 = x8 * cospi_17_64 + x9 * cospi_15_64;
961 x0 = dct_const_round_shift(s0 + s8);
969 x8 = dct_const_round_shift(s0 - s8);
987 s8 = x8 * cospi_4_64 + x9 * cospi_28_64;
1004 x8 = dct_const_round_shift(s8 + s12);
1008 x12 = dct_const_round_shift(s8 - s12);
1022 s8 = x8;
1039 x8 = s8 + s10;
1041 x10 = s8
[all...]

Completed in 555 milliseconds

123