/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/armv6/ |
vp8_mse16x16_armv6.asm | 59 uxtb16 r6, r8 ; byte (two pixels) to halfwords 60 uxtb16 r7, r8, ror #8 ; another two pixels to halfwords 78 uxtb16 r6, r8 ; byte (two pixels) to halfwords 79 uxtb16 r7, r8, ror #8 ; another two pixels to halfwords 99 uxtb16 r6, r8 ; byte (two pixels) to halfwords 100 uxtb16 r7, r8, ror #8 ; another two pixels to halfwords 122 uxtb16 r6, r8 ; byte (two pixels) to halfwords 123 uxtb16 r7, r8, ror #8 ; another two pixels to halfwords
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.unique/ |
unique.pass.cpp | 101 int two = 2; local 161 ii[4].reset(&two); 162 ii[5].reset(&two); 163 ii[6].reset(&two);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/unord.hash/ |
enum.pass.cpp | 25 enum class Cardinals { zero, one, two, three, five=5 }; member in class:Cardinals
|
/ndk/tests/build/topological-sort/jni/ |
Android.mk | 6 # 1/ First, define a static library module named 'foo' with two source 7 # files (foo.c and foo2.c), which implement two functions
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/ |
xscale.s | 39 # Add two nop instructions to ensure that the
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mt/ |
relocs2.s | 14 ;; Note also that the two test variables (d2 & d3) are intentionally
|
/toolchain/binutils/binutils-2.25/gold/testsuite/ |
arm_farcall_thumb_arm.s | 2 @ Check that we can generate two types of stub in the same section.
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/ |
farcall-cond-thumb-arm.s | 2 @ Check that we can generate two types of stub in the same section.
|
farcall-thumb-arm.s | 2 @ Check that we can generate two types of stub in the same section.
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/ |
tls-ldgd-14.d | 12 # Check that we have proper NPTL/TLS markings and GOT for two 13 # R_CRIS_16_GOT_GD and two R_CRIS_16_DTPRELs against different
|
tls-ldgd-15.d | 12 # Check that we have proper NPTL/TLS markings and GOT for two 13 # R_CRIS_32_GOT_GD and two R_CRIS_32_DTPRELs against different
|
tls-ldgde-15.d | 13 # Check that we have proper NPTL/TLS markings and GOT for two 14 # R_CRIS_32_GOT_GD and two R_CRIS_32_DTPRELs against different
|
tls-leie-19.d | 14 # executable with two R_CRIS_32_TPREL and two R_CRIS_32_GOT_TPREL,
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-linkonce/ |
x.s | 1 ;# Main file, x.s, with the program (_start) referring to two
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/ |
x.s | 1 ;# Main file, x.s, with the program (_start) referring to two
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/sh64/ |
crange-2b.s | 2 ! SHcompact, and yet another with SHmedia. Two .cranges sections 3 ! generated by the assembler; two more needed at link time, as they will be
|
/external/v8/test/mjsunit/ |
smi-negative-zero.js | 33 var two = 2; variable 50 assertEquals(-Infinity, one / (minus_four % two), "foo1"); 52 assertEquals(Infinity, one / (four % two), "foo3"); 65 assertEquals(-Infinity, one / (-4 % two), "baz3"); 67 assertEquals(Infinity, one / (4 % two), "baz5");
|
array-functions-prototype-misc.js | 37 // Nicer for firefox 1.5. Unless you uncomment the following two lines, 147 var a = ['zero', ,'two']; 149 assertEquals("zero,baz,two", a.join(",")); 197 push_function(a, 'two'); 205 assertEquals("two", a[pos+1], "pos1:" + pos); 214 push_function(a, 'two'); 219 assertEquals("two", a[pos+3], "pos3"); 228 push_function(a, 'two'); 233 assertEquals("two", a[pos+1]);
|
/prebuilts/go/darwin-x86/src/crypto/rand/ |
util.go | 16 // a uint64. It does not include two because we ensure that the candidates are 55 // Don't let the value be too small, i.e, set the most significant two bits. 56 // Setting the top two bits, rather than just the top bit, 57 // means that when two of these values are multiplied together, 74 // a multiple of any of these primes we add two until it isn't.
|
/prebuilts/go/linux-x86/src/crypto/rand/ |
util.go | 16 // a uint64. It does not include two because we ensure that the candidates are 55 // Don't let the value be too small, i.e, set the most significant two bits. 56 // Setting the top two bits, rather than just the top bit, 57 // means that when two of these values are multiplied together, 74 // a multiple of any of these primes we add two until it isn't.
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/ |
SecP521R1Point.java | 294 protected ECFieldElement two(ECFieldElement x) method in class:SecP521R1Point 301 return two(x).add(x); 306 return two(two(x)); 311 return four(two(x));
|
/external/icu/icu4c/source/common/ |
listformatter.cpp | 36 const UnicodeString& two, 41 twoPattern(two, 2, 2, errorCode), 186 UnicodeString two, start, middle, end; local 187 getStringByKey(rb, "2", two, errorCode); 195 ListFormatInternal* result = new ListFormatInternal(two, start, middle, end, errorCode);
|
/external/skia/tests/ |
PathOpsExtendedTest.cpp | 170 static void scaleMatrix(const SkPath& one, const SkPath& two, SkMatrix& scale) { 172 larger.join(two.getBounds()); 234 static int pathsDrawTheSame(const SkPath& one, const SkPath& two, SkBitmap& bits, SkPath& scaledOne, 237 scaleMatrix(one, two, scale); 239 two.transform(scale, &scaledTwo); 243 bool drawAsciiPaths(const SkPath& one, const SkPath& two, bool drawPaths) { 248 const SkRect& bounds2 = two.getBounds(); 271 canvas.drawPath(two, paint); 291 const SkPath& two, SkBitmap& bitmap) { 294 (void) pathsDrawTheSame(one, two, bitmap, scaledOne, scaledTwo, errors2x2) [all...] |
/external/ImageMagick/www/api/ |
paint.php | 61 <p>By default target must match a particular pixel color exactly. However, in many cases two colors may differ by a small amount. The fuzz member of image defines how much tolerance is acceptable to consider two colors as the same. For example, set fuzz to 10 and the color red at intensities of 100 and 102 respectively are now interpreted as the same color for the purposes of the floodfill.</p> 143 <p>By default color must match a particular pixel color exactly. However, in many cases two colors may differ by a small amount. Fuzz defines how much tolerance is acceptable to consider two colors as the same. For example, set fuzz to 10 and the color red at intensities of 100 and 102 respectively are now interpreted as the same color.</p> 185 <p>By default color must match a particular pixel color exactly. However, in many cases two colors may differ by a small amount. Fuzz defines how much tolerance is acceptable to consider two colors as the same. For example, set fuzz to 10 and the color red at intensities of 100 and 102 respectively are now interpreted as the same color.</p> 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>
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
ConcurrentSkipListSubSetTest.java | 64 q.add(two); 345 assertEquals(two, e1); 506 SortedSet sm = set.subSet(two, four); 507 assertEquals(two, sm.first()); 511 assertTrue(sm.contains(two)); 518 assertEquals(two, k); 525 assertFalse(set.contains(two)); 537 SortedSet sm = set.subSet(two, three); 539 assertEquals(two, sm.first()); 540 assertEquals(two, sm.last()) [all...] |