/packages/apps/UnifiedEmail/src/org/apache/commons/io/comparator/ |
SizeFileComparator.java | 109 long size1 = 0; local 111 size1 = sumDirectoryContents && file1.exists() ? FileUtils.sizeOfDirectory(file1) : 0; 113 size1 = file1.length(); 121 long result = size1 - size2;
|
/external/clang/test/CodeGenCXX/ |
vla-lambda-capturing.cpp | 95 // CHECK: [[SIZE1:%.+]] = call {{.*}}[[INTPTR_T]] 97 // CHECK: [[BUFFER2_ADDR:%.+]] = alloca [[INTPTR_T]], [[INTPTR_T]] [[SIZE1]] 105 // CHECK: store i{{[0-9]+}} [[SIZE1]], i{{[0-9]+}}* [[CAP_SIZE1_REF]] 127 // CHECK: [[SIZE1:%.+]] = load i{{[0-9]+}}, i{{[0-9]+}}* [[SIZE1_REF]] 133 // CHECK: [[ELEM_OFFSET:%.+]] = mul {{.*}} i{{[0-9]+}} [[N]], [[SIZE1]] 135 // CHECK: [[SIZEOF:%.+]] = mul {{.*}} i{{[0-9]+}} {{[0-9]+}}, [[SIZE1]] 144 // CHECK: store i{{[0-9]+}} [[SIZE1]], i{{[0-9]+}}* [[SIZE1_REF]] 160 // CHECK: [[SIZE1:%.+]] = load i{{[0-9]+}}, i{{[0-9]+}}* [[SIZE1_REF]] 165 // CHECK: [[SIZEOF_BUFFER2:%.+]] = mul {{.*}} i{{[0-9]+}} {{[0-9]+}}, [[SIZE1]] 168 // CHECK: [[MUL:%.+]] = mul {{.*}} i{{[0-9]+}} [[SIZE2]], [[SIZE1]] [all...] |
/external/proguard/src/proguard/util/ |
ArrayUtil.java | 249 * @param size1 the size of the first array. 257 public static int compare(byte[] array1, int size1, 260 int minSize = Math.min(size1, size2); 274 return size1 < size2 ? -1 : 275 size1 == size2 ? 0 : 283 * @param size1 the size of the first array. 291 public static int compare(short[] array1, int size1, 294 int minSize = Math.min(size1, size2); 308 return size1 < size2 ? -1 : 309 size1 == size2 ? 0 [all...] |
/external/opencv3/modules/imgproc/include/opencv2/imgproc/ |
types_c.h | 70 /** linear convolution with \f$\texttt{size1}\times\texttt{size2}\f$ box kernel (all 1's). If 74 /** linear convolution with \f$\texttt{size1}\times\texttt{size2}\f$ box kernel (all 75 1's) with subsequent scaling by \f$1/(\texttt{size1}\cdot\texttt{size2})\f$ */ 77 /** linear convolution with a \f$\texttt{size1}\times\texttt{size2}\f$ Gaussian kernel */ 79 /** median filter with a \f$\texttt{size1}\times\texttt{size1}\f$ square aperture */ 81 /** bilateral filter with a \f$\texttt{size1}\times\texttt{size1}\f$ square aperture, color 82 sigma= sigma1 and spatial sigma= sigma2. If size1=0, the aperture square side is set to
|
/development/scripts/ |
compare-installed-size.py | 96 # filename, module, size1, size2, size2-size1
|
/external/freetype/src/pfr/ |
pfrload.c | 355 FT_UInt n, count, size1; local 379 size1 = 1 + 1 + 1 + 2 + 2 + 1; 381 size1++; 384 size1++; 387 size1++; 390 size1++; 393 size1++; 397 PFR_CHECK( count * size1 );
|
/external/llvm/test/CodeGen/PowerPC/ |
2007-11-16-landingpad-split.ll | 26 %size1 = trunc i64 %size to i32 ; <i32> [#uses=1] 27 %tmp17 = alloca i8*, i32 %size1 ; <i8**> [#uses=1]
|
/prebuilts/go/darwin-x86/src/unicode/utf8/ |
utf8_test.go | 238 r1, size1 := DecodeRune(b[i:]) 248 if size1 != size2 { 249 t.Errorf("DecodeRune/DecodeRuneInString(%q) size mismatch %d/%d", s[i:], size1, size2) 252 si += size1 256 r1, size1 := DecodeLastRune(b[0:si]) 258 if size1 != size2 { 259 t.Errorf("DecodeLastRune/DecodeLastRuneInString(%q, %d) size mismatch %d/%d", s, si, size1, size2) 270 si -= size1
|
/prebuilts/go/linux-x86/src/unicode/utf8/ |
utf8_test.go | 238 r1, size1 := DecodeRune(b[i:]) 248 if size1 != size2 { 249 t.Errorf("DecodeRune/DecodeRuneInString(%q) size mismatch %d/%d", s[i:], size1, size2) 252 si += size1 256 r1, size1 := DecodeLastRune(b[0:si]) 258 if size1 != size2 { 259 t.Errorf("DecodeLastRune/DecodeLastRuneInString(%q, %d) size mismatch %d/%d", s, si, size1, size2) 270 si -= size1
|
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/ |
AndroidCameraCapabilities.java | 251 public int compare(Size size1, Size size2) { 252 return (size1.width() == size2.width() ? size1.height() - size2.height() : 253 size1.width() - size2.width());
|
/external/elfutils/tests/ |
run-strip-reloc.sh | 50 SIZE1=$(stat -c%s $debugfile1) 52 test \( \( $is_ET_REL -eq 1 \) -a \( $SIZE1 -gt $SIZE2 \) \) \ 53 -o \( \( $is_ET_REL -eq 0 \) -a \( $SIZE1 -eq $SIZE2 \) \) ||
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/SampleCode/ |
AMRWB_E_SAMPLE.c | 87 int size1 = 0; local 191 size1 = (int)strlen(VOAMRWB_RFC3267_HEADER_INFO); 192 memcpy(outBuf, VOAMRWB_RFC3267_HEADER_INFO, size1); 193 outBuf += size1; 217 fwrite(OutputBuf, 1, outData.Length + size1, fdst);
|
/external/opencv/cv/src/ |
cvemd.cpp | 117 static CvStatus icvInitEMD( const float *signature1, int size1, 177 int dims, size1, size2; local 186 size1 = signature1->rows; 199 if( flow->rows != size1 || flow->cols != size2 ) 223 if( cost->rows != size1 || cost->cols != size2 ) 255 IPPI_CALL( result = icvInitEMD( signature1->data.fl, size1, 334 icvInitEMD( const float* signature1, int size1, 354 buffer_size = (size1+1) * (size2+1) * (sizeof( float ) + /* cost */ 357 (size1 + size2 + 2) * (sizeof( CvNode2D ) + /* _x */ 362 (size1+1) * (sizeof( float * ) + sizeof( char * ) + /* rows pointers for * [all...] |
/external/opencv3/modules/imgproc/src/ |
emd.cpp | 117 static int icvInitEMD( const float *signature1, int size1, 171 int dims, size1, size2; local 180 size1 = signature1->rows; 193 if( flow->rows != size1 || flow->cols != size2 ) 217 if( cost->rows != size1 || cost->cols != size2 ) 249 result = icvInitEMD( signature1->data.fl, size1, 323 static int icvInitEMD( const float* signature1, int size1, 343 buffer_size = (size1+1) * (size2+1) * (sizeof( float ) + /* cost */ 346 (size1 + size2 + 2) * (sizeof( CvNode2D ) + /* _x */ 351 (size1+1) * (sizeof( float * ) + sizeof( char * ) + /* rows pointers for * [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZSelectionDAGInfo.cpp | 103 unsigned Size1 = Bytes == 16 ? 8 : 1 << findLastSet(Bytes); 104 unsigned Size2 = Bytes - Size1; 105 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, 110 DAG.getConstant(Size1, DL, PtrVT)); 111 DstPtrInfo = DstPtrInfo.getWithOffset(Size1); 113 std::min(Align, Size1), DstPtrInfo);
|
/art/runtime/ |
reference_table.cc | 141 const size_t size1 = obj1->SizeOf(); local 143 if (size1 != size2) { 144 return size1 < size2;
|
/external/llvm/lib/Fuzzer/ |
FuzzerInterface.h | 104 size_t CrossOver(const uint8_t *Data1, size_t Size1, const uint8_t *Data2, 163 virtual size_t CrossOver(const uint8_t *Data1, size_t Size1, 166 return MD.CrossOver(Data1, Size1, Data2, Size2, Out, MaxOutSize);
|
/external/flac/libFLAC/include/private/ |
memory.h | 56 void *safe_malloc_mul_2op_p(size_t size1, size_t size2);
|
/external/llvm/test/Transforms/GVN/ |
2009-01-21-SortInvalidation.ll | 8 define fastcc i32 @byte_re_match_2_internal(%struct.re_pattern_buffer* nocapture %bufp, i8* %string1, i32 %size1, i8* %string2, i32 %size2, i32 %pos, %struct.re_registers* %regs, i32 %stop) nounwind {
|
/prebuilts/go/darwin-x86/src/runtime/ |
string.go | 189 size1 := 0 191 size1 += runetochar(dum[:], r) 193 s, b := rawstringtmp(buf, size1+3) 197 if size2 >= size1 {
|
/prebuilts/go/linux-x86/src/runtime/ |
string.go | 189 size1 := 0 191 size1 += runetochar(dum[:], r) 193 s, b := rawstringtmp(buf, size1+3) 197 if size2 >= size1 {
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/pfr/ |
pfrload.c | 457 FT_UInt n, count, size1; local 481 size1 = 1 + 1 + 1 + 2 + 2 + 1; 483 size1++; 486 size1++; 489 size1++; 492 size1++; 495 size1++; 499 PFR_CHECK( count * size1 );
|
/external/javassist/src/main/javassist/ |
CtClassType.java | 540 int size1, size2; local 544 size1 = 0; 548 size1 = anno1.length; 561 Object[] result = new Object[size1 + size2]; 562 for (int i = 0; i < size1; i++) 566 result[j + size1] = toAnnoType(anno2[j], cp); 572 for (int i = 0 ; i < size1 ; i++){ 606 int size1, size2; local 610 size1 = 0; 614 size1 = anno1.length [all...] |
/external/llvm/lib/Transforms/Scalar/ |
MergedLoadStoreMotion.cpp | 154 // The mergeLoad/Store algorithms could have Size0 * Size1 complexity, 155 // where Size0 and Size1 are the #instructions on the two sides of 157 // Control is enforced by the check Size0 * Size1 < MagicCompileTimeControl. 365 int Size1 = Succ1->size(); 378 if (NLoads * Size1 >= MagicCompileTimeControl) 526 int Size1 = Pred1->size(); 543 if (NStores * Size1 >= MagicCompileTimeControl)
|
/external/mesa3d/src/gallium/drivers/r300/ |
r300_emit.c | 836 unsigned size1, size2, offset1, offset2, stride1, stride2; local 848 size1 = hw_format_size[i]; 851 OUT_CS(R300_VBPNTR_SIZE0(size1) | R300_VBPNTR_STRIDE0(vb1->stride) | 859 size1 = hw_format_size[i]; 861 OUT_CS(R300_VBPNTR_SIZE0(size1) | R300_VBPNTR_STRIDE0(vb1->stride)); 874 size1 = hw_format_size[i]; 894 OUT_CS(R300_VBPNTR_SIZE0(size1) | R300_VBPNTR_STRIDE0(stride1) | 902 size1 = hw_format_size[i]; 913 OUT_CS(R300_VBPNTR_SIZE0(size1) | R300_VBPNTR_STRIDE0(stride1)); [all...] |