HomeSort by relevance Sort by last modified time
    Searched defs:odd (Results 1 - 25 of 28) sorted by null

1 2

  /external/stlport/test/unit/
unary.h 11 struct odd : public unary_function<int, bool> { struct in inherits:unary_function
count_test.cpp 24 static int odd(int a_);
62 int elements = count_if(numbers.begin(), numbers.end(), odd);
66 count_if(numbers.begin(), numbers.end(), odd, elements);
70 int CountTest::odd(int a_) function in class:CountTest
rm_cp_test.cpp 46 static bool odd(int a_) function
88 replace_if(v1.begin(), v1.end(), odd, 42);
163 replace_copy_if(v1.begin(), v1.end(), v2.begin(), odd, 42);
205 remove_if((int*)numbers, (int*)numbers + 6, odd);
236 remove_copy_if((int*)numbers, (int*)numbers + 6, (int*)result, odd);
find_test.cpp 29 static bool odd(int a_);
78 int *location = find_if((int*)numbers, (int*)numbers + 6, odd);
84 int *out_range = find_if((int*)numbers_even, (int*)numbers_even + 6, odd);
107 bool FindTest::odd(int a_) function in class:FindTest
  /ndk/tests/device/test-gnustl-full/unit/
unary.h 11 struct odd : public unary_function<int, bool> { struct in inherits:unary_function
count_test.cpp 24 static int odd(int a_);
62 int elements = count_if(numbers.begin(), numbers.end(), odd);
66 count_if(numbers.begin(), numbers.end(), odd, elements);
70 int CountTest::odd(int a_) function in class:CountTest
rm_cp_test.cpp 46 static bool odd(int a_) function
88 replace_if(v1.begin(), v1.end(), odd, 42);
163 replace_copy_if(v1.begin(), v1.end(), v2.begin(), odd, 42);
205 remove_if((int*)numbers, (int*)numbers + 6, odd);
236 remove_copy_if((int*)numbers, (int*)numbers + 6, (int*)result, odd);
find_test.cpp 29 static bool odd(int a_);
78 int *location = find_if((int*)numbers, (int*)numbers + 6, odd);
84 int *out_range = find_if((int*)numbers_even, (int*)numbers_even + 6, odd);
107 bool FindTest::odd(int a_) function in class:FindTest
  /ndk/tests/device/test-stlport/unit/
unary.h 11 struct odd : public unary_function<int, bool> { struct in inherits:unary_function
count_test.cpp 24 static int odd(int a_);
62 int elements = count_if(numbers.begin(), numbers.end(), odd);
66 count_if(numbers.begin(), numbers.end(), odd, elements);
70 int CountTest::odd(int a_) function in class:CountTest
rm_cp_test.cpp 46 static bool odd(int a_) function
88 replace_if(v1.begin(), v1.end(), odd, 42);
163 replace_copy_if(v1.begin(), v1.end(), v2.begin(), odd, 42);
205 remove_if((int*)numbers, (int*)numbers + 6, odd);
236 remove_copy_if((int*)numbers, (int*)numbers + 6, (int*)result, odd);
find_test.cpp 29 static bool odd(int a_);
78 int *location = find_if((int*)numbers, (int*)numbers + 6, odd);
84 int *out_range = find_if((int*)numbers_even, (int*)numbers_even + 6, odd);
107 bool FindTest::odd(int a_) function in class:FindTest
  /external/opencv/cvaux/src/
cvvideo.cpp 53 CvMat odd_stub, *odd = (CvMat*)fieldOdd; local
59 CV_CALL( odd = cvGetMat( odd, &odd_stub ));
61 if( !CV_ARE_TYPES_EQ( frame, even ) || !CV_ARE_TYPES_EQ( frame, odd ))
64 if( frame->cols != even->cols || frame->cols != odd->cols ||
65 frame->rows != even->rows*2 || odd->rows != even->rows )
75 memcpy( odd->data.ptr + even->step*y,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
CdmaSmsSubaddress.java 23 public byte odd; field in class:CdmaSmsSubaddress
  /external/llvm/lib/Target/CellSPU/
SPUNopFiller.cpp 33 bool isEvenPlace; // the instruction slot (mem address) at hand is even/odd
60 odd = 3 } SPUOpPlace; enumerator in enum:__anon10436::SPUNopFiller::__anon10437
75 assert( isEvenPlace && "basic block start from odd address");
91 // padd: odd(wrong), even(wrong), ...
92 // to: nop(corr), odd(corr), even(corr)...
93 if( isEvenPlace && this_optype == odd && next_optype == even ) {
100 // padd: even(wrong), odd(wrong), ...
101 // to: lnop(corr), even(corr), odd(corr)...
102 else if ( !isEvenPlace && this_optype == even && next_optype == odd){
119 if (getOpPlacement( *J ) == odd) {
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
crc32.c 378 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ local
384 /* put operator for one zero bit in odd */
385 odd[0] = 0xedb88320L; /* CRC-32 polynomial */
388 odd[n] = row;
393 gf2_matrix_square(even, odd);
395 /* put operator for four zero bits in odd */
396 gf2_matrix_square(odd, even);
402 gf2_matrix_square(even, odd);
411 /* another iteration of the loop with odd and even swapped *
    [all...]
  /external/zlib/src/
crc32.c 363 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ local
369 /* put operator for one zero bit in odd */
370 odd[0] = 0xedb88320UL; /* CRC-32 polynomial */
373 odd[n] = row;
378 gf2_matrix_square(even, odd);
380 /* put operator for four zero bits in odd */
381 gf2_matrix_square(odd, even);
387 gf2_matrix_square(even, odd);
396 /* another iteration of the loop with odd and even swapped *
    [all...]
  /external/mesa3d/src/pixelflinger2/
llvm_texture.cpp 226 Value * odd = NULL; local
239 odd = builder.CreateAnd(tc, builder.getInt32(1 << SHIFT), name("tc_odd"));
257 odd = builder.CreateICmpNE(odd, builder.getInt32(0));
260 condBranch.ifCond(odd);
texture.cpp 114 unsigned odd = 0; local
119 odd = tc & (1 << shift);
132 tc = odd ? size - 1 - tc : tc;
  /external/chromium/chrome/browser/autofill/
credit_card.cc 409 bool odd = false; local
416 if (odd) {
422 odd = !odd;
  /external/icu4c/test/intltest/
testidna.cpp 996 UChar odd[MAX_DEST_SIZE]; local
    [all...]
  /external/llvm/lib/Target/ARM/
ARMAsmPrinter.cpp 239 bool odd = SReg & 0x1; local
248 if (odd) {
544 RegIdx |= 1; //The odd register is also the higher-numbered one of a pair.
    [all...]
  /frameworks/native/libs/gui/tests/
SurfaceTexture_test.cpp 1194 android_native_rect_t odd = {23, 78, 123, 477}; local
    [all...]
  /external/icu4c/test/cintltst/
cbiditst.c 1006 UBool odd; local
    [all...]
  /hardware/ril/include/telephony/
ril_cdma_sms.h 128 unsigned char odd; member in struct:__anon19287

Completed in 564 milliseconds

1 2