Home
last modified time | relevance | path

Searched refs:num1 (Results 1 – 20 of 20) sorted by relevance

/external/e2fsprogs/resize/
Dtest_extent.c23 __u64 num1, num2; in do_test() local
51 num1 = num2 = 0; in do_test()
57 num1 = strtoul(arg1, 0, 0); in do_test()
68 retval = ext2fs_create_extent_table(&extent, num1); in do_test()
85 retval = ext2fs_add_extent_entry(extent, num1, num2); in do_test()
89 num2 = ext2fs_extent_translate(extent, num1); in do_test()
100 &num1, &num2, &size); in do_test()
106 num1, num2, size); in do_test()
/external/opencv/cv/src/
Dcvcontourtree.cpp84 int *num_p, *num_n, *num1, *num2; /* numbers of input contour points */ in icvCreateContourTree() local
162 num1 = num_p; in icvCreateContourTree()
173 num1 = num_p; in icvCreateContourTree()
183 num1 = num_n; in icvCreateContourTree()
188 nm = num1[0]; in icvCreateContourTree()
190 nmp1 = num1[i - 1]; in icvCreateContourTree()
192 nmp2 = num1[i - 2]; in icvCreateContourTree()
194 nmp3 = num1[i - 3]; in icvCreateContourTree()
196 nmn1 = num1[1]; in icvCreateContourTree()
198 nmn2 = num1[2]; in icvCreateContourTree()
[all …]
/external/fec/
Ddecode_rs.c32 data_t u,q,tmp,num1,num2,den,discr_r; local
231 num1 = 0;
234 num1 ^= ALPHA_TO[MODNN(omega[i] + i * root[j])];
252 if (num1 != 0 && loc[j] >= PAD) {
253 data[loc[j]-PAD] ^= ALPHA_TO[MODNN(INDEX_OF[num1] + INDEX_OF[num2] + NN - INDEX_OF[den])];
Ddecode_rs.h74 data_t u,q,tmp,num1,num2,den,discr_r; variable
267 num1 = 0;
270 num1 ^= ALPHA_TO[MODNN(omega[i] + i * root[j])];
288 if (num1 != 0 && loc[j] >= PAD) {
289 data[loc[j]-PAD] ^= ALPHA_TO[MODNN(INDEX_OF[num1] + INDEX_OF[num2] + NN - INDEX_OF[den])];
/external/libvncserver/libvncserver/
Dwebsockets.c441 unsigned long num1 = 0, num2 = 0; in webSocketsGenMd5() local
450 num1 = num1 * 10 + (key1[i] - 48); in webSocketsGenMd5()
453 num1 = num1 / spaces1; in webSocketsGenMd5()
466 buf[0] = (num1 & 0xff000000) >> 24; in webSocketsGenMd5()
467 buf[1] = (num1 & 0xff0000) >> 16; in webSocketsGenMd5()
468 buf[2] = (num1 & 0xff00) >> 8; in webSocketsGenMd5()
469 buf[3] = num1 & 0xff; in webSocketsGenMd5()
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/
DTexturePackerFileProcessor.java189 int num1 = 0, num2 = 0; in processDir()
194 num1 = Integer.parseInt(matcher.group(2)); in processDir()
208 if (compare != 0 || num1 == num2) return compare; in processDir()
209 return num1 - num2; in processDir()
/external/opencv/cvaux/src/
Dcvbgfg_common.cpp58 int num1 = cvCountNonZero(tmp_image); in cvRefineForegroundMaskBySegm() local
61 if( num2 > num1*0.5 ) in cvRefineForegroundMaskBySegm()
/external/lzma/CPP/Common/
DMyString.cpp393 AString::AString(const char *s1, unsigned num1, const char *s2, unsigned num2) in AString() argument
395 SetStartLen(num1 + num2); in AString()
397 memcpy(chars, s1, num1); in AString()
398 memcpy(chars + num1, s2, num2 + 1); in AString()
827 UString::UString(const wchar_t *s1, unsigned num1, const wchar_t *s2, unsigned num2) in UString() argument
829 SetStartLen(num1 + num2); in UString()
831 wmemcpy(chars, s1, num1); in UString()
832 wmemcpy(chars + num1, s2, num2 + 1); in UString()
DMyString.h180 AString(const char *s1, unsigned num1, const char *s2, unsigned num2);
338 UString(const wchar_t *s1, unsigned num1, const wchar_t *s2, unsigned num2);
/external/apache-xml/src/main/java/org/apache/xpath/objects/
DXNodeSet.java551 double num1 = bool() ? 1.0 : 0.0; in compare() local
554 result = comparator.compareNumbers(num1, num2); in compare()
572 double num1 = getNumberFromNode(node); in compare() local
574 if (comparator.compareNumbers(num1, num2)) in compare()
/external/sqlite/android/
Dsqlite3_android.cpp83 char const * num1 = (char const *)sqlite3_value_text(argv[0]); in phone_numbers_equal() local
91 if (num1 == NULL || num2 == NULL) { in phone_numbers_equal()
98 android::phone_number_compare_strict(num1, num2) : in phone_numbers_equal()
99 android::phone_number_compare_loose(num1, num2)); in phone_numbers_equal()
/external/llvm/test/CodeGen/X86/
D2010-05-10-DAGCombinerBug.ll5 define i32 @CXB30130(i32 %num1, i16* nocapture %num2, float* nocapture %num3, double* nocapture %nu…
D2012-11-30-misched-dbg.ll8 ; CHECK: DEBUG_VALUE: num1
71 !4 = !DILocalVariable(name: "num1", line: 815, scope: !5, file: !14, type: !15)
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/closure/string/
Dstring.js382 var num1 = parseInt(a, 10);
383 if (!isNaN(num1)) {
385 if (!isNaN(num2) && num1 - num2) {
386 return num1 - num2;
/external/clang/test/SemaObjC/
Dobjc-literal-nsnumber.m16 …id num1 = @(x); // expected-error {{definition of class NSNumber must be available to use Objectiv…
26 …id num1 = @(x); // expected-error {{definition of class NSNumber must be available to use Objectiv…
/external/boringssl/src/crypto/bn/
Dbn_test.cc97 static const int num1 = 50; // additional tests for some functions variable
394 for (int i = 0; i < num0 + num1; i++) { in test_sub()
395 if (i < num1) { in test_sub()
403 if (!BN_rand(b.get(), 400 + i - num1, 0, 0)) { in test_sub()
452 for (int i = 0; i < num0 + num1; i++) { in test_div()
453 if (i < num1) { in test_div()
460 } else if (!BN_rand(b.get(), 50 + 3 * (i - num1), 0, 0)) { in test_div()
690 for (int i = 0; i < num0 + num1; i++) { in test_mul()
691 if (i <= num1) { in test_mul()
696 } else if (!BN_rand(b.get(), i - num1, 0, 0)) { in test_mul()
/external/libopus/celt/
Dpitch.c112 opus_val16 num0, num1, num2, num3, num4; in celt_fir5() local
115 num1=num[1]; in celt_fir5()
128 sum = MAC16_16(sum,num1,mem1); in celt_fir5()
/external/pdfium/xfa/src/fxbarcode/qrcode/
DBC_QRCoderEncoder.cpp697 int32_t num1 = content[i] - '0'; in AppendNumericBytes() local
701 bits->AppendBits(num1 * 100 + num2 * 10 + num3, 10, e); in AppendNumericBytes()
705 bits->AppendBits(num1 * 10 + num2, 7, e); in AppendNumericBytes()
708 bits->AppendBits(num1, 4, e); in AppendNumericBytes()
/external/fonttools/Lib/fontTools/misc/
DpsCharStrings.py881 num1 = self.pop()
882 d1 = num1//num2
883 d2 = num1/num2
/external/lldb/test/functionalities/data-formatter/data-formatter-objc/
Dmain.m146 NSNumber* num1 = [NSNumber numberWithInt:5];