/external/deqp/framework/common/ |
tcuAstcUtil.cpp | 55 inline deUint32 getBits (deUint32 src, int low, int high) 57 const int numBits = (high-low) + 1; 221 deUint32 getBits (int low, int high) const 224 DE_ASSERT(de::inBounds(high, 0, 128)); 225 DE_ASSERT(de::inRange(high-low+1, 0, 32)); 227 if (high-low+1 == 0) 231 const int word1Ndx = high / WORD_BITS; 236 return (deUint32)((m_words[word0Ndx] & ((((Word)1 << high%WORD_BITS << 1) - 1))) >> ((Word)low % WORD_BITS)); 242 (deUint32)((m_words[word1Ndx] & (((Word)1 << high%WORD_BITS << 1) - 1)) << (high-low - high%WORD_BITS)) [all...] |
/external/icu/icu4c/source/i18n/ |
usrchimp.h | 58 int32_t high; member in struct:PCEI
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
row_x86.asm | 125 vperm2i128 m2, m2, m0, 0x31 // high 128 of ymm2 and high 128 of ymm0
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
variance_impl_mmx.asm | 106 psubsw mm2, mm3 ; A-B (high order) to MM2 129 psubsw mm2, mm3 ; A-B (high order) to MM2 152 psubsw mm2, mm3 ; A-B (high order) to MM2 175 psubsw mm2, mm3 ; A-B (high order) to MM2 198 psubsw mm2, mm3 ; A-B (high order) to MM2 222 psubsw mm2, mm3 ; A-B (high order) to MM2 245 psubsw mm2, mm3 ; A-B (high order) to MM2 268 psubsw mm2, mm3 ; A-B (high order) to MM2
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/ |
LZMADecoder.java | 195 return rc.decodeBitTree(high)
|
/external/opencv3/modules/imgproc/test/ |
test_convhull.cpp | 211 CvScalar low, high; member in class:CV_BaseShapeDescrTest 226 low = high = cvScalarAll(0); 283 a[k] = high.val[k] - low.val[k]; 370 high.val[i] = (cvtest::randReal(rng)-0.5)*low_high_range*2; 371 if( low.val[i] > high.val[i] ) 374 CV_SWAP( low.val[i], high.val[i], t ); 376 if( high.val[i] < low.val[i] + 1 ) 377 high.val[i] += 1; [all...] |
test_histograms.cpp | 80 double low, high, range_delta; member in class:CV_BaseHistTest 166 high = cvtest::getMaxVal(img_type); 170 high = 1000; 171 low = -high; 174 range_delta = (cvtest::randInt(rng) % 2)*(high-low)*0.05; 180 double _low = low + range_delta, _high = high - range_delta; 1189 cvtest::randUni( rng, images_i, Scalar::all(low), Scalar::all(high) ); [all...] |
/external/opencv3/samples/gpu/performance/ |
performance.h | 183 cv::Scalar high);
|
/external/pdfium/core/src/fpdfapi/fpdf_font/ |
ttgsubtable.cpp | 34 int low = 0, high = count - 1; local 35 while (low <= high) { 36 int mid = (low + high) / 2; 40 high = mid - 1;
|
/external/v8/src/compiler/ |
node-matchers.h | 117 bool IsInRange(const T& low, const T& high) const { 118 return this->HasValue() && low <= this->Value() && this->Value() <= high; 154 bool IsInRange(const T& low, const T& high) const { 155 return this->HasValue() && low <= this->Value() && this->Value() <= high;
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/ |
vp9_variance_impl_mmx.asm | 107 psubsw mm2, mm3 ; A-B (high order) to MM2 131 psubsw mm2, mm3 ; A-B (high order) to MM2 154 psubsw mm2, mm3 ; A-B (high order) to MM2 177 psubsw mm2, mm3 ; A-B (high order) to MM2 200 psubsw mm2, mm3 ; A-B (high order) to MM2 224 psubsw mm2, mm3 ; A-B (high order) to MM2 247 psubsw mm2, mm3 ; A-B (high order) to MM2 270 psubsw mm2, mm3 ; A-B (high order) to MM2
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
cursesf.h | 765 Integer_Field(int prec, long low=0L, long high=0L) 767 precision(prec), lower_limit(low), upper_limit(high) { 783 Numeric_Field(int prec, double low=0.0, double high=0.0) 785 precision(prec), lower_limit(low), upper_limit(high) {
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
cursesf.h | 765 Integer_Field(int prec, long low=0L, long high=0L) 767 precision(prec), lower_limit(low), upper_limit(high) { 783 Numeric_Field(int prec, double low=0.0, double high=0.0) 785 precision(prec), lower_limit(low), upper_limit(high) {
|
/toolchain/binutils/binutils-2.25/bfd/ |
dwarf2.c | 197 bfd_vma high; member in struct:arange 1938 int low, high, mid; local [all...] |
/toolchain/binutils/binutils-2.25/opcodes/ |
h8300-dis.c | 600 int count, high; local 603 high = regno[1]; 605 outfn (stream, "@sp+,er%d-er%d", high - count, high);
|
/external/valgrind/VEX/priv/ |
guest_s390_helpers.c | 1016 "ldr 4,%[high]\n\t" \ 1020 : [high] "f"(hi), [low] "f"(lo) \ 1591 Int high = (Int)(cc_dep1 >> 32); local [all...] |
/external/ImageMagick/www/api/ |
paint.php | 227 <p>As there is one fuzz value for the all the channels, TransparentPaintImage() is not suitable for the operations like chroma, where the tolerance for similarity of two color component (RGB) can be different. Thus we define this method to take two target pixels (one low and one high) and all the pixels of an image which are lying between these two pixels are made transparent.</p> 233 const PixelInfo *low,const PixelInfo *high,const Quantum opacity, 252 <dt>high</dt> 253 <dd>the high target color. </dd>
|
/external/apache-http/src/org/apache/http/impl/auth/ |
DigestScheme.java | 464 int high = ((binaryData[i] & 0xf0) >> 4); local 465 buffer[i * 2] = HEXADECIMAL[high];
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python2/crcmod/ |
crcmod.py | 214 # operation to get the high byte. 299 high = low*2 300 if low <= poly < high: 319 # to build up the tables needed in the CRC algorithm. Assumes the high order
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python3/crcmod/ |
crcmod.py | 215 # operation to get the high byte. 299 high = low*2 300 if low <= poly < high: 316 # to build up the tables needed in the CRC algorithm. Assumes the high order
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod_osx/crcmod/ |
crcmod.py | 214 # operation to get the high byte. 299 high = low*2 300 if low <= poly < high: 319 # to build up the tables needed in the CRC algorithm. Assumes the high order
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
PluralRules.java | 1287 long high = low; local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
PluralRules.java | 1241 long high = low; local [all...] |
/external/mesa3d/src/gallium/drivers/radeon/ |
SIGenRegisterInfo.pl | 31 def high : SubRegIndex; 49 let SubRegIndices = [low, high]; 179 my @subregs_64 = ('low', 'high');
|
/external/messageformat/java/com/ibm/icu/simple/ |
PluralRules.java | 1232 long high = low; local [all...] |