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

1 2 3 4

  /external/dropbear/libtomcrypt/testprof/
dsa_test.c 7 unsigned char msg[16], out[1024], out2[1024]; local
25 y = sizeof(out2);
26 DO(dsa_decrypt_key(out, x, out2, &y, &key));
28 if (y != 16 || memcmp(out2, msg, 16)) {
47 x = sizeof(out2);
48 DO(dsa_export(out2, &x, PK_PRIVATE, &key));
49 DO(dsa_import(out2, x, &key2));
57 x = sizeof(out2);
58 DO(dsa_export(out2, &x, PK_PUBLIC, &key));
60 DO(dsa_import(out2, x, &key2))
    [all...]
  /external/e2fsprogs/tests/
run_e2fsck 20 if [ "$OUT2"x = x ]; then
21 OUT2=$test_name.2.log
57 $FSCK $SECOND_FSCK_OPT -N test_filesys $TMPFILE > $OUT2.new 2>&1
59 echo Exit status is $status >> $OUT2.new
60 sed -e '1d' $OUT2.new | sed -e '/^JFS DEBUG:/d' > $OUT2
61 rm -f $OUT2.new
75 cmp -s $OUT2 $EXP2
88 diff $DIFF_OPTS $EXP2 $OUT2 >> $test_name.failed
95 unset IMAGE FSCK_OPT SECOND_FSCK_OPT OUT1 OUT2 EXP1 EXP2
    [all...]
run_mke2fs 5 OUT2=$test_name.2.log
Makefile.in 56 @OUT1=${EXPECT1} OUT2=${EXPECT2} ./test_script ${TDIR}
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/
dowhile-007.js 33 function DoWhileObject( out1, out2, out3, in1 ) {
35 this.breakOutTwo = out2;
  /system/core/sh/
output.h 54 extern struct output *out2;
78 #define out2c(c) outc(c, out2);
output.c 82 struct output *out2 = &errout; variable in typeref:struct:output
93 out2 = &errout;
129 outstr(p, out2);
138 if (file == out2)
237 doformat(out2, fmt, ap);
239 flushout(out2);
  /external/chromium/third_party/icu/source/test/intltest/
tstnrapi.cpp 81 UnicodeString out, out2; local
88 iter.getText(out2);
89 if( out!=out2 ||
  /external/icu4c/test/intltest/
tstnrapi.cpp 80 UnicodeString out, out2; local
87 iter.getText(out2);
88 if( out!=out2 ||
  /external/openssl/crypto/des/asm/
des_enc.m4 105 #define out2 %o2
152 ld [out2+256], local1
158 ld [out2+260], local2
163 ld [out2+280], out4 ! loop counter
167 ld [out2+264], local3
203 ld [out2+272], local7
237 ld [out2+284], local5 ! 0x0000FC00 used in the rounds
248 ld [out2+284], local5 ! 0x0000FC00 used in the rounds
305 ld [out2+284], local5 ! 0x0000FC00
338 ldub [out2+local1], local1 ! 7 (and 0xFC
    [all...]
  /external/quake/quake/src/QW/client/
gl_rmisc.c 339 byte *out2; local
341 out2 = (byte *)pixels;
344 for (i=0 ; i< (int) scaled_height ; i++, out2 += scaled_width)
350 out2[j] = translate[inrow[frac>>16]];
352 out2[j+1] = translate[inrow[frac>>16]];
354 out2[j+2] = translate[inrow[frac>>16]];
356 out2[j+3] = translate[inrow[frac>>16]];
  /external/quake/quake/src/WinQuake/
gl_rmisc.cpp 337 byte *out2; local
339 out2 = (byte *)pixels;
342 for (i=0 ; i< (int) scaled_height ; i++, out2 += scaled_width)
348 out2[j] = translate[inrow[frac>>16]];
350 out2[j+1] = translate[inrow[frac>>16]];
352 out2[j+2] = translate[inrow[frac>>16]];
354 out2[j+3] = translate[inrow[frac>>16]];
  /cts/tests/tests/view/src/android/view/animation/cts/
CycleInterpolatorTest.java 220 final float out2 = cycleInterpolator.getInterpolation(0.125f); local
228 final float delta1 = out2 - out1;
229 final float delta2 = out3 - out2;
  /frameworks/base/media/libstagefright/rtsp/
rtp_test.cpp 60 AString out1, out2;
62 encodeBase64(kPPS, sizeof(kPPS), &out2);
63 printf("params=%s,%s\n", out1.c_str(), out2.c_str());
  /external/grub/stage2/
serial.h 65 /* Turn on DTR, RTS, and OUT2. */
  /external/openssl/crypto/aes/asm/
aes-ia64.S 336 add out2=2,in0
340 { .mmi; ld1 r18=[out2],4
344 { .mmi; ld1 r22=[out2],4
348 { .mmi; ld1 r26=[out2],4
352 { .mmi; ld1 r30=[out2]
383 { .mii; ADDP out2=2,in1
392 { .mii; st1 [out2]=r17,4
399 st1 [out2]=r21,4 }//;;
403 st1 [out2]=r25,4
409 st1 [out2]=r2
    [all...]
  /frameworks/base/core/tests/coretests/src/android/text/
TextUtilsTest.java 286 String out2 = TextUtils.ellipsize(s2, p, i, kind).toString(); local
296 assertEquals("wid " + i + " pass " + j, out1, out2);
297 assertEquals("wid " + i + " pass " + j, out2, out3);
  /external/jpeg/
jccolor.c 319 static void copyquads(const UINT32 in[], UINT32 out0[], UINT32 out1[], UINT32 out2[], int col4)
328 *out2++ = PACK(B2(src0), B1(src1), B0(src2), B3(src2));
367 UINT32* out2 = (UINT32*)outptr2; local
368 copyquads(in, out0, out1, out2, col4);
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/statements/
break.js 59 out2:
continue.js 62 out2:
  /system/core/sh/bltin/
bltin.h 54 #define stderr out2
  /external/libvpx/examples/includes/HTML-Toc-0.91/t/
update.t 62 open(FILE, ">a.out2") || die "Can't create a.out2: $!";
  /external/ipsec-tools/src/racoon/
admin.c 197 goto out2;
200 goto out2;
205 out2:
  /external/libffi/src/ia64/
unix.S 79 ld8 out2 = [in0], 16
193 mov out2 = in3
331 add out2 = 16, sp
  /external/chromium/third_party/icu/source/test/cintltst/
cdtdptst.c 275 UChar* out2 = myDateFormat(fmt, d); local
276 if(u_strcmp(out1, out2) !=0)

Completed in 834 milliseconds

1 2 3 4