HomeSort by relevance Sort by last modified time
    Searched refs:S32 (Results 26 - 50 of 59) sorted by null

12 3

  /external/libjpeg-turbo/md5/
md5.c 282 #define S32 11
286 HH (d, a, b, c, x[ 8], S32, 0x8771f681); /* 34 */
290 HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9); /* 38 */
294 HH (d, a, b, c, x[ 0], S32, 0xeaa127fa); /* 42 */
298 HH (d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */
  /external/v8/test/webkit/fast/js/kde/
md5-1.js 168 var S32 = 11;
279 d = HH ( d, a, b, c, x[ 8], S32, 0x8771f681); /* 34 */
283 d = HH ( d, a, b, c, x[ 4], S32, 0x4bdecfa9); /* 38 */
287 d = HH ( d, a, b, c, x[ 0], S32, 0xeaa127fa); /* 42 */
291 d = HH ( d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */
  /external/clang/test/CodeGenCXX/
microsoft-abi-static-initializers.cpp 91 static S S32;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV7/
Filt_6k_7k_neon.s 192 VADD.S32 Q9,Q9,Q10
195 VADD.S32 Q11,Q11,Q12
197 VQRSHRN.S32 D28,Q9,#15
200 VQRSHRN.S32 D29,Q11,#15
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_TransformDequantChromaDCFromPair_s.s 81 qDqntCoeff QN Q1.S32
omxVCM4P10_PredictIntraChroma_8x8_s.s 144 dHVValS32 DN D3.S32
145 dHVTempS32 DN D2.S32
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/
armVCM4P10_InterpolateLuma_HalfDiagHorVer4x4_unsafe_s.S 166 VQRSHRUN.S32 d0,q5,#10
167 VQRSHRUN.S32 d2,q6,#10
168 VQRSHRUN.S32 d4,q2,#10
169 VQRSHRUN.S32 d6,q3,#10
omxVCM4P10_PredictIntraChroma_8x8_s.S 181 VRSHR.S32 d3,d3,#5
omxVCM4P10_PredictIntra_16x16_s.S 217 VPADDL.S32 q11,q11
  /external/ipsec-tools/src/racoon/missing/crypto/sha2/
sha2.c 195 #define S32(b,x) (((x) >> (b)) | ((x) << (32 - (b))))
204 #define Sigma0_256(x) (S32(2, (x)) ^ S32(13, (x)) ^ S32(22, (x)))
205 #define Sigma1_256(x) (S32(6, (x)) ^ S32(11, (x)) ^ S32(25, (x)))
206 #define sigma0_256(x) (S32(7, (x)) ^ S32(18, (x)) ^ R(3 , (x)))
207 #define sigma1_256(x) (S32(17, (x)) ^ S32(19, (x)) ^ R(10, (x))
    [all...]
  /external/lz4/programs/
datagen.c 48 typedef int32_t S32;
54 typedef signed int S32;
bench.c 87 typedef int32_t S32;
93 typedef signed int S32;
frametest.c 59 typedef int32_t S32;
65 typedef signed int S32;
fullbench.c 93 typedef int32_t S32;
99 typedef signed int S32;
fuzzer.c 58 typedef int32_t S32;
64 typedef signed int S32;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
MD5Digest.java 153 private static final int S32 = 11;
261 d = rotateLeft(d + H(a, b, c) + X[ 8] + 0x8771f681, S32) + a;
265 d = rotateLeft(d + H(a, b, c) + X[ 4] + 0x4bdecfa9, S32) + a;
269 d = rotateLeft(d + H(a, b, c) + X[ 0] + 0xeaa127fa, S32) + a;
273 d = rotateLeft(d + H(a, b, c) + X[12] + 0xe6db99e5, S32) + a;
  /external/ppp/pppd/
md5.c 255 #define S32 11
259 HH ( d, a, b, c, in[ 8], S32, UL(2272392833)); /* 34 */
263 HH ( d, a, b, c, in[ 4], S32, UL(1272893353)); /* 38 */
267 HH ( d, a, b, c, in[ 0], S32, UL(3936430074)); /* 42 */
271 HH ( d, a, b, c, in[12], S32, UL(3873151461)); /* 46 */
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra_s.s 133 qCoeffTab QN Q1.S32
140 qtemp1 QN Q3.S32
154 qtempPred1 QN Q5.S32
  /external/llvm/test/Bindings/OCaml/
target.ml 44 let layout = "e-p:32:32-f64:32:64-v64:32:64-v128:32:128-n32-S32" in
  /external/llvm/unittests/ADT/
StringRefTest.cpp 505 int32_t S32;
523 bool S32Success = StringRef(Signed[i].Str).getAsInteger(0, S32);
526 EXPECT_EQ(S32, Signed[i].Expected);
  /external/lz4/lib/
lz4.c 162 typedef int32_t S32;
168 typedef signed int S32;
354 return DeBruijnBytePos[((U32)((val & -(S32)val) * 0x077CB531U)) >> 27];
    [all...]
xxhash.c 111 typedef int32_t S32;
117 typedef signed int S32;
lz4frame.c 81 typedef int32_t S32;
87 typedef signed int S32;
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
structurally_valid.cc 76 #define S32 (kExitReplace32)
338 #undef S32
  /external/deqp/framework/common/
tcuTexture.cpp     [all...]

Completed in 632 milliseconds

12 3