HomeSort by relevance Sort by last modified time
    Searched full:x76 (Results 1 - 25 of 1050) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
RC2Engine.java 24 (byte)0xc6, (byte)0x7e, (byte)0x37, (byte)0x83, (byte)0x2b, (byte)0x76, (byte)0x53, (byte)0x8e,
210 int x76, x54, x32, x10; local
212 x76 = ((in[inOff + 7] & 0xff) << 8) + (in[inOff + 6] & 0xff);
219 x10 = rotateWordLeft(x10 + (x32 & ~x76) + (x54 & x76) + workingKey[i ], 1);
220 x32 = rotateWordLeft(x32 + (x54 & ~x10) + (x76 & x10) + workingKey[i+1], 2);
221 x54 = rotateWordLeft(x54 + (x76 & ~x32) + (x10 & x32) + workingKey[i+2], 3);
222 x76 = rotateWordLeft(x76 + (x10 & ~x54) + (x32 & x54) + workingKey[i+3], 5);
225 x10 += workingKey[x76 & 63]
267 int x76, x54, x32, x10; local
    [all...]
  /external/stlport/stlport/
valarray 22 # define _STLP_OUTERMOST_HEADER_ID 0x76
27 #if (_STLP_OUTERMOST_HEADER_ID == 0x76)
33 #if (_STLP_OUTERMOST_HEADER_ID != 0x76) || defined (_STLP_IMPORT_VENDOR_STD)
41 #if (_STLP_OUTERMOST_HEADER_ID == 0x76)
  /ndk/sources/cxx-stl/stlport/stlport/
valarray 22 # define _STLP_OUTERMOST_HEADER_ID 0x76
27 #if (_STLP_OUTERMOST_HEADER_ID == 0x76)
33 #if (_STLP_OUTERMOST_HEADER_ID != 0x76) || defined (_STLP_IMPORT_VENDOR_STD)
41 #if (_STLP_OUTERMOST_HEADER_ID == 0x76)
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/
valarray 22 # define _STLP_OUTERMOST_HEADER_ID 0x76
27 #if (_STLP_OUTERMOST_HEADER_ID == 0x76)
33 #if (_STLP_OUTERMOST_HEADER_ID != 0x76) || defined (_STLP_IMPORT_VENDOR_STD)
41 #if (_STLP_OUTERMOST_HEADER_ID == 0x76)
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/
valarray 22 # define _STLP_OUTERMOST_HEADER_ID 0x76
27 #if (_STLP_OUTERMOST_HEADER_ID == 0x76)
33 #if (_STLP_OUTERMOST_HEADER_ID != 0x76) || defined (_STLP_IMPORT_VENDOR_STD)
41 #if (_STLP_OUTERMOST_HEADER_ID == 0x76)
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/
valarray 22 # define _STLP_OUTERMOST_HEADER_ID 0x76
27 #if (_STLP_OUTERMOST_HEADER_ID == 0x76)
33 #if (_STLP_OUTERMOST_HEADER_ID != 0x76) || defined (_STLP_IMPORT_VENDOR_STD)
41 #if (_STLP_OUTERMOST_HEADER_ID == 0x76)
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/
valarray 22 # define _STLP_OUTERMOST_HEADER_ID 0x76
27 #if (_STLP_OUTERMOST_HEADER_ID == 0x76)
33 #if (_STLP_OUTERMOST_HEADER_ID != 0x76) || defined (_STLP_IMPORT_VENDOR_STD)
41 #if (_STLP_OUTERMOST_HEADER_ID == 0x76)
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/
valarray 22 # define _STLP_OUTERMOST_HEADER_ID 0x76
27 #if (_STLP_OUTERMOST_HEADER_ID == 0x76)
33 #if (_STLP_OUTERMOST_HEADER_ID != 0x76) || defined (_STLP_IMPORT_VENDOR_STD)
41 #if (_STLP_OUTERMOST_HEADER_ID == 0x76)
  /external/chromium_org/third_party/icu/source/test/intltest/
trcoll.cpp 32 {0x76, 0x00E4, 0x74, 0},
37 {0x76, 0x6f, 0x0131, 0x64, 0},
40 {0x76, 0x6f, 0x0131, 0x64, 0},
46 {0x76, 0x62, 0x74, 0},
48 {0x76, 0x6f, 0x69, 0x64, 0},
51 {0x76, 0x6f, 0x69, 0x64, 0},
53 {0x76, 0x6f, 0x69, 0x64, 0},
54 {0x76, 0x6f, 0x69, 0x64, 0},
ficoll.cpp 46 {0x76, 0x61, 0x74, 0},
48 {0x4c, 0x00E5, 0x76, 0x69, 0},
53 {0x76, 0x61, 0x74, 0},
57 {0x76, 0x61, 0x74, 0}
  /external/dropbear/libtomcrypt/src/ciphers/
rc2.c 141 unsigned x76, x54, x32, x10, i; local
149 x76 = ((unsigned)pt[7] << 8) + (unsigned)pt[6];
155 x10 = (x10 + (x32 & ~x76) + (x54 & x76) + xkey[4*i+0]) & 0xFFFF;
158 x32 = (x32 + (x54 & ~x10) + (x76 & x10) + xkey[4*i+1]) & 0xFFFF;
161 x54 = (x54 + (x76 & ~x32) + (x10 & x32) + xkey[4*i+2]) & 0xFFFF;
164 x76 = (x76 + (x10 & ~x54) + (x32 & x54) + xkey[4*i+3]) & 0xFFFF;
165 x76 = ((x76 << 5) | (x76 >> 11))
218 unsigned x76, x54, x32, x10; local
    [all...]
  /external/icu4c/test/intltest/
trcoll.cpp 32 {0x76, 0x00E4, 0x74, 0},
37 {0x76, 0x6f, 0x0131, 0x64, 0},
40 {0x76, 0x6f, 0x0131, 0x64, 0},
46 {0x76, 0x62, 0x74, 0},
48 {0x76, 0x6f, 0x69, 0x64, 0},
51 {0x76, 0x6f, 0x69, 0x64, 0},
53 {0x76, 0x6f, 0x69, 0x64, 0},
54 {0x76, 0x6f, 0x69, 0x64, 0},
ficoll.cpp 46 {0x76, 0x61, 0x74, 0},
48 {0x4c, 0x00E5, 0x76, 0x69, 0},
53 {0x76, 0x61, 0x74, 0},
57 {0x76, 0x61, 0x74, 0}
  /external/oprofile/events/x86-64/family15h/
events 15 event:0x76 counters:0,1,2 um:zero minimum:50000 name:CPU_CLK_UNHALTED : Cycles outside of halt state
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/
predef_table.h 26 "\x00\x71\x00\x72\x00\x73\x00\x74\x00\x75\x00\x76\x00\x77\x00\x78"
52 "\x00\x71\x00\x72\x00\x73\x00\x74\x00\x75\x00\x76\x00\x77\x00\x78"
75 "\x00\x75\x00\x75\x00\x75\x00\x76\x00\x76\x00\x76\x00\x76\x00\x77"
80 "\x00\x71\x00\x77\x00\x73\x00\x7a\x00\x76\x00\x67\x00\x68\x00\x6e"
81 "\x00\x78\x00\x64\x00\x66\x00\x76\x00\x65\x00\x72\x00\x66\x00\x63"
83 "\x00\x67\x00\x76\x00\x63\x00\x64\x00\x74\x00\x79\x00\x68\x00\x62"
84 "\x00\x76\x00\x66\x00\x79\x00\x75\x00\x6a\x00\x6e\x00\x62\x00\x67
    [all...]
  /external/llvm/test/CodeGen/ARM/
2009-09-28-LdStOptiBug.ll 11 %x76 = fmul double %y.0, 0.000000e+00 ; <double> [#uses=1]
13 %tmpr = fadd double %x.0, %x76 ; <double> [#uses=1]
  /external/chromium_org/third_party/icu/source/data/mappings/
ibm-935_P110-1999.ucm 315 <U03A7> \x41\x76 |0
470 <U223D> \x45\x76 |0
639 <U3011> \x44\x76 |0
840 <U3116> \x46\x76 |0
1110 <U4FB5> \x54\x76 |0
1195 <U50E6> \x5D\x76 |0
1308 <U5206> \x4C\x76 |0
1489 <U53C8> \x5A\x76 |0
1622 <U54A7> \x60\x76 |0
    [all...]
icu-internal-25546.ucm 154 <U0076> \x76 |0
221 <U00B9> \x29\x76 |0
225 <U00BD> \x28\x76 |0
363 <U03C7> \x25\x76 |0
531 <U2286> \x21\x76 |0
917 <U30F6> \x2B\x76 |0
1004 <U3186> \x24\x76 |0
1153 <U4E03> \x76\x52 |0
1198 <U4E91> \x69\x76 |0
1219 <U4EC4> \x76\x31 |
    [all...]
iso-ir-165.ucm 119 <U0076> \x2A\x76 |0
304 <U2165> \x22\x76 |0
471 <U25A0> \x21\x76 |0
673 <U30F6> \x25\x76 |0
818 <U4E26> \x2C\x76 |0
821 <U4E2A> \x38\x76 |0
833 <U4E3D> \x40\x76 |0
885 <U4EA1> \x4D\x76 |0
910 <U4EC5> \x3D\x76 |0
937 <U4EF0> \x51\x76 |
    [all...]
  /external/icu4c/data/mappings/
ibm-935_P110-1999.ucm 315 <U03A7> \x41\x76 |0
470 <U223D> \x45\x76 |0
639 <U3011> \x44\x76 |0
840 <U3116> \x46\x76 |0
1110 <U4FB5> \x54\x76 |0
1195 <U50E6> \x5D\x76 |0
1308 <U5206> \x4C\x76 |0
1489 <U53C8> \x5A\x76 |0
1622 <U54A7> \x60\x76 |0
    [all...]
icu-internal-25546.ucm 154 <U0076> \x76 |0
221 <U00B9> \x29\x76 |0
225 <U00BD> \x28\x76 |0
363 <U03C7> \x25\x76 |0
531 <U2286> \x21\x76 |0
917 <U30F6> \x2B\x76 |0
1004 <U3186> \x24\x76 |0
1153 <U4E03> \x76\x52 |0
1198 <U4E91> \x69\x76 |0
1219 <U4EC4> \x76\x31 |
    [all...]
iso-ir-165.ucm 119 <U0076> \x2A\x76 |0
304 <U2165> \x22\x76 |0
471 <U25A0> \x21\x76 |0
673 <U30F6> \x25\x76 |0
818 <U4E26> \x2C\x76 |0
821 <U4E2A> \x38\x76 |0
833 <U4E3D> \x40\x76 |0
885 <U4EA1> \x4D\x76 |0
910 <U4EC5> \x3D\x76 |0
937 <U4EF0> \x51\x76 |
    [all...]
  /external/chromium_org/components/webdata/encryptor/
ie7_password_unittest_win.cc 21 "\x00\x00\x00\x00\x4e\xfa\x67\x76\x22\x94\xc8\x01"
22 "\x08\x00\x00\x00\x12\x00\x00\x00\x4e\xfa\x67\x76"
  /external/chromium_org/net/quic/
quic_framer_test.cc 540 0x10, 0x32, 0x54, 0x76,
572 0x10, 0x32, 0x54, 0x76,
626 0x10, 0x32, 0x54, 0x76,
788 0x10, 0x32, 0x54, 0x76,
847 0x10, 0x32, 0x54, 0x76,
902 0x10, 0x32, 0x54, 0x76,
    [all...]
  /external/chromium_org/third_party/icu/source/test/testdata/
ibm9027.ucm 60 <U03A7> \x41\x76 |0
307 <U2502> \x46\x76 |0
386 <U266A> \x43\x76 |0
406 <U3011> \x44\x76 |0
630 <U3125> \x45\x76 |0
1003 <U504B> \x72\x76 |0
1119 <U50F6> \x80\x76 |0
1384 <U52BC> \x6B\x76 |0
    [all...]

Completed in 2457 milliseconds

1 2 3 4 5 6 7 8 91011>>