/external/chromium_org/ipc/ |
ipc_sync_message_unittest.h | 23 // out1 is false 26 // out1 is true, out2 is 2 29 // out1 is false, out2 is 3, out3 is "0_3" 32 // in1 must be 1, out1 is true 35 // in1 must be false, out1 is true, out2 is 12 38 // in1 must be 3, out1 is "1_3", out2 is 13, out3 is false 41 // in1 must be 1, in2 must be false, out1 is true 44 // in1 must be false, in2 must be 2, out1 is true, out2 is 22 47 // in1 must be 3, in2 must be true, out1 is "2_3", out2 is 23, out3 is false 50 // in1 must be 1, in2 must be false, in3 must be "3_1", out1 is tru [all...] |
ipc_sync_message_unittest.cc | 27 void On_0_1(bool* out1) { 28 *out1 = false; 31 void On_0_2(bool* out1, int* out2) { 32 *out1 = true; 36 void On_0_3(bool* out1, int* out2, std::string* out3) { 37 *out1 = false; 42 void On_1_1(int in1, bool* out1) { 44 *out1 = true; 47 void On_1_2(bool in1, bool* out1, int* out2) { 49 *out1 = true [all...] |
/external/llvm/test/Linker/ |
2004-02-17-WeakStrongLinkage.ll | 2 ; RUN: echo "@me = global i32* null" | llvm-as > %t.out1.bc 3 ; RUN: llvm-link %t.out1.bc %t.out2.bc -o /dev/null
|
2003-08-20-OpaqueTypeResolve.ll | 1 ; RUN: llvm-as < %s > %t.out1.bc 3 ; RUN: llvm-link %t.out1.bc %t.out2.bc
|
2003-08-23-RecursiveOpaqueTypeResolve.ll | 4 ; RUN: llvm-as < %s > %t.out1.bc 6 ; RUN: llvm-link %t.out1.bc %t.out2.bc
|
2003-08-24-InheritPtrSize.ll | 4 ; RUN: llvm-as < %s > %t.out1.bc 6 ; RUN: llvm-link %t.out1.bc %t.out2.bc 2>&1 | FileCheck %s
|
2003-08-28-TypeResolvesGlobal.ll | 1 ; RUN: llvm-as < %s > %t.out1.bc 3 ; RUN: llvm-link %t.out2.bc %t.out1.bc
|
2004-12-03-DisagreeingType.ll | 3 ; RUN: llvm-as < %s > %t.out1.bc 4 ; RUN: llvm-link %t.out1.bc %t.out2.bc -S | FileCheck %s
|
2003-08-28-TypeResolvesGlobal2.ll | 1 ; RUN: llvm-as < %s > %t.out1.bc 3 ; RUN: llvm-link %t.out2.bc %t.out1.bc
|
2003-08-28-TypeResolvesGlobal3.ll | 1 ; RUN: llvm-as < %s > %t.out1.bc 3 ; RUN: llvm-link %t.out2.bc %t.out1.bc
|
2005-12-06-AppendingZeroLengthArrays.ll | 3 ; RUN: llvm-as < %s > %t.out1.bc 4 ; RUN: llvm-link %t.out1.bc %t.out2.bc -S | FileCheck %s
|
/external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/ |
x86SP_FFT_CToC_FC32_Fwd_Radix4_fs.c | 31 OMX_F32 *out1 = out0 + n_by_4; local 32 OMX_F32 *out2 = out1 + n_by_4; 48 // CADD t2, out1, out3 49 t2.Re = out1[0] + out3[0]; 50 t2.Im = out1[n] + out3[n]; 52 // CSUB t3, out1, out3 53 t3.Re = out1[0] - out3[0]; 54 t3.Im = out1[n] - out3[n]; 64 // CADD_SUB_X out1, t1, t3 65 out1[0] = t1.Re + t3.Im [all...] |
x86SP_FFT_CToC_FC32_Fwd_Radix2_fs.c | 24 OMX_F32 *out1 = out0 + (n >> 1); local 30 // CSUB out1, in0, in1 31 out1[0] = in0[0] - in1[0]; 32 out1[n] = in0[1] - in1[1];
|
x86SP_FFT_CToC_FC32_Fwd_Radix2_ls.c | 27 OMX_F32 *out1 = out0 + (n >> 1); local 37 // CSUB out1, in0, t 38 out1[0] = in0[0] - t.Re; 39 out1[n] = in0[n] - t.Im;
|
x86SP_FFT_CToC_FC32_Fwd_Radix2_ms.c | 33 OMX_F32 *out1 = out0 + (n >> 1); local 43 // CSUB out1, in0, t 44 out1[0] = in0[0] - t.Re; 45 out1[n] = in0[n] - t.Im;
|
x86SP_FFT_CToC_FC32_Inv_Radix2_fs.c | 25 OMX_F32 *out1 = out0 + n_by_2; local 31 // CSUB out1, in0, in1 32 out1[0] = in0[0] - in1[0]; 33 out1[n] = in0[n] - in1[n];
|
x86SP_FFT_CToC_FC32_Inv_Radix2_ls.c | 27 OMX_F32 *out1 = out0 + (n >> 1); local 37 // CSUB out1, in0, t 38 out1[0] = in0[0] - t.Re; 39 out1[n] = in0[n] - t.Im;
|
x86SP_FFT_CToC_FC32_Inv_Radix2_ms.c | 33 OMX_F32 *out1 = out0 + (n >> 1); local 43 // CSUB out1, in0, t 44 out1[0] = in0[0] - t.Re; 45 out1[n] = in0[n] - t.Im;
|
/external/llvm/test/CodeGen/R600/ |
default-fp-mode.ll | 6 define void @test_kernel(float addrspace(1)* %out0, double addrspace(1)* %out1) nounwind { 8 store double 0.0, double addrspace(1)* %out1
|
extract_vector_elt_i16.ll | 11 %out1 = getelementptr i16 addrspace(1)* %out, i32 1 13 store i16 %p0, i16 addrspace(1)* %out1, align 2 25 %out1 = getelementptr i16 addrspace(1)* %out, i32 1 27 store i16 %p0, i16 addrspace(1)* %out1, align 2
|
/external/deqp/data/gles2/shaders/ |
conditionals.test | 28 output float out1 = [ 1.0 | 0.0 | 0.0 ]; 37 out1 = 1.0; 41 out1 = 0.0; 53 output float out1 = [ 1.0 | 0.0 | 0.0 ]; 62 out1 = 1.0; 64 out0 = 1.0, out1 = 0.0; 75 output float out1 = [ 1.0 | 0.0 | 0.0 ]; 84 out1 = 1.0; 86 out0 = 1.0, out1 = 0.0; 97 output float out1 = [ 1.0 | 0.0 | 0.0 ] [all...] |
/external/chromium_org/tools/gyp/test/win/vs-macros/ |
vcinstalldir.gyp | 15 'outputs': ['out1'], 16 'action': ['python', 'test_exists.py', '$(VCInstallDir)', 'out1']
|
/external/e2fsprogs/tests/ |
run_e2fsck | 16 if [ "$OUT1"x = x ]; then 17 OUT1=$test_name.1.log 46 cp /dev/null $OUT1 50 $FSCK $FSCK_OPT -N test_filesys $TMPFILE > $OUT1.new 2>&1 52 echo Exit status is $status >> $OUT1.new 53 sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" $OUT1.new >> $OUT1 54 rm -f $OUT1.new 68 cmp -s $OUT1 $EXP1 99 diff $DIFF_OPTS $EXP1 $OUT1 >> $test_name.faile [all...] |
run_mke2fs | 6 OUT1=$test_name.1.log 15 sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" > $OUT1; 17 sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" >> $OUT1' 18 AFTER_CMD='$DUMPE2FS $TMPFILE 2>&1 | sed -f $cmd_dir/filter.sed >> $OUT1'
|
/external/chromium_org/third_party/webrtc/base/ |
optionsfile_unittest.cc | 59 std::string out1, out2; local 60 EXPECT_FALSE(store_->GetStringValue(kTestOptionA, &out1)); 68 EXPECT_TRUE(store_->GetStringValue(kTestOptionA, &out1)); 70 EXPECT_EQ(kTestString1, out1); 78 EXPECT_FALSE(store_->GetStringValue(kTestOptionA, &out1)); 85 int out1, out2; local 86 EXPECT_FALSE(store_->GetIntValue(kTestOptionA, &out1)); 94 EXPECT_TRUE(store_->GetIntValue(kTestOptionA, &out1)); 96 EXPECT_EQ(kTestInt1, out1); 104 EXPECT_FALSE(store_->GetIntValue(kTestOptionA, &out1)); 124 std::string out1; local [all...] |