HomeSort by relevance Sort by last modified time
    Searched full:zero (Results 226 - 250 of 11206) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/test/mjsunit/
keyed-call-generic.js 72 function zero () { return 0; } function
76 var fixed_array = [zero, one, two];
78 var dict_array = [ zero, one, two ];
81 var fast_prop = { zero: zero, one: one, two: two };
83 var normal_prop = { zero: zero, one: one, two: two };
88 var first3str = ['zero', 'one', 'two'];
113 testException([zero, one, /* hole */ ], [0, 1, 2], [false, false, true]);
math-min-max.js 43 // Prepare a non-Smi zero value.
45 var ZERO = (function() {
55 assertEquals(0, ZERO);
56 assertEquals(Infinity, 1/ZERO);
57 assertEquals(-Infinity, 1/-ZERO);
58 // Here we would like to have assertFalse(%_IsSmi(ZERO)); This is, however,
60 // us into the runtime system, which would quite legitimately put a Smi zero
62 assertFalse(%_IsSmi(-ZERO));
72 assertEquals(-Infinity, Infinity / Math.min(-0, ZERO));
73 assertEquals(-Infinity, Infinity / Math.min(ZERO, -0))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex.ops/
complex_divide_complex.pass.cpp 48 case zero:
51 case zero:
55 assert(classify(r) == zero);
58 assert(classify(r) == zero);
71 case zero:
78 assert(classify(r) == zero);
91 case zero:
111 case zero:
131 case zero:
complex_times_complex.pass.cpp 50 case zero:
53 case zero:
54 assert(classify(r) == zero);
57 assert(classify(r) == zero);
73 case zero:
74 assert(classify(r) == zero);
93 case zero:
113 case zero:
133 case zero:
  /external/oprofile/events/x86-64/family10/
events 34 event:0x01 counters:0,1,2,3 um:zero minimum:500 name:CYCLES_FPU_EMPTY : The number of cycles in which the PFU is empty
35 event:0x02 counters:0,1,2,3 um:zero minimum:500 name:DISPATCHED_FPU_OPS_FAST_FLAG : The number of FPU operations that use the fast flag interface
43 event:0x21 counters:0,1,2,3 um:zero minimum:500 name:PIPELINE_RESTART_DUE_TO_SELF_MODIFYING_CODE : Micro-architectural re-sync caused by self modifying code
44 event:0x22 counters:0,1,2,3 um:zero minimum:500 name:PIPELINE_RESTART_DUE_TO_PROBE_HIT : Micro-architectural re-sync caused by snoop
45 event:0x23 counters:0,1,2,3 um:zero minimum:500 name:LS_BUFFER_2_FULL_CYCLES : Cycles LS Buffer 2 Full
47 event:0x26 counters:0,1,2,3 um:zero minimum:500 name:RETIRED_CLFLUSH_INSTRUCTIONS : Retired CLFLUSH instructions
48 event:0x27 counters:0,1,2,3 um:zero minimum:500 name:RETIRED_CPUID_INSTRUCTIONS : Retired CPUID instructions
50 event:0x2b counters:0,1,2,3 um:zero minimum:500 name:SMIS_RECEIVED : Counts the number of SMIs received by the processor
53 event:0x40 counters:0,1,2,3 um:zero minimum:500 name:DATA_CACHE_ACCESSES : Data cache accesses
54 event:0x41 counters:0,1,2,3 um:zero minimum:500 name:DATA_CACHE_MISSES : Data cache misse
    [all...]
  /bootable/recovery/minadbd/
utils.h 23 * after each operation, the buffer is guaranteed to be zero-terminated,
37 * zero-terminated for safety.
43 * this will only write a terminating zero and return buffEnd.
50 /* tries to add a bytes to the buffer. the input can contain zero bytes,
51 * but a terminating zero will always be appended at the end anyway
61 * note: this doesn't place an initial terminating zero in the buffer,
  /external/openfst/src/include/fst/
random-weight.h 42 // The boolean 'allow_zero' below determines whether Zero() and zero
60 return Weight::Zero();
69 bool allow_zero_; // permit Zero() and zero divisors
92 return Weight::Zero();
101 bool allow_zero_; // permit Zero() and zero divisors
111 // One(), and Zero() if zero is allowed
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
switch-004.js 29 ZERO = new Number(0);
37 SwitchTest( ZERO, "ZERO" );
80 case new Number(0) : result += "new ZERO"; break;
83 case ZERO: result += "ZERO"; break;
  /system/core/adb/
utils.h 23 * after each operation, the buffer is guaranteed to be zero-terminated,
37 * zero-terminated for safety.
43 * this will only write a terminating zero and return buffEnd.
50 /* tries to add a bytes to the buffer. the input can contain zero bytes,
51 * but a terminating zero will always be appended at the end anyway
61 * note: this doesn't place an initial terminating zero in the buffer,
  /libcore/luni/src/test/java/tests/api/java/math/
BigIntegerTest.java 29 BigInteger zero = new BigInteger("0", 10); field in class:BigIntegerTest
94 assertTrue("Random number is negative", bi.compareTo(zero) >= 0);
100 assertTrue("Not zero", new BigInteger(0, rand).equals(BigInteger.ZERO));
117 assertTrue("Random number one is negative", bi.compareTo(zero) >= 0);
120 assertTrue("Random number two is negative", bi2.compareTo(zero) >= 0);
157 assertTrue("Incorrect value for pos number", bi.equals(BigInteger.ZERO
171 assertTrue("Incorrect value for pos number", bi.equals(BigInteger.ZERO
174 assertTrue("Incorrect value for neg number", bi.equals(BigInteger.ZERO
178 assertTrue("Incorrect value for zero", bi.equals(zero))
    [all...]
  /external/clang/test/Analysis/inlining/
DynDispatchBifurcate.m 81 return 5/[p getZero];// expected-warning {{Division by zero}}
90 return 5/m; // expected-warning {{Division by zero}}
109 return 5/value; // expected-warning {{Division by zero}}
114 return 5/p.value; // expected-warning {{Division by zero}}
121 return 5/[p value]; // expected-warning {{Division by zero}}
132 return 5/[p getZeroPublic];// expected-warning {{Division by zero}}
145 return 5/m; // expected-warning {{Division by zero}}
146 return 5/[p getZeroPublic];// expected-warning {{Division by zero}}
155 return 5/m; // expected-warning {{Division by zero}}
156 return 5/[p getZeroPublic];// expected-warning {{Division by zero}}
    [all...]
  /external/compiler-rt/lib/
muldf3.c 31 // Detect if a or b is zero, denormal, infinity, or NaN.
43 // infinity * non-zero = +/- infinity
45 // infinity * zero = NaN
50 // non-zero * infinity = +/- infinity
52 // zero * infinity = NaN
56 // zero * anything = +/- zero
58 // anything * zero = +/- zero
77 // zero. Normalizing this result is just a conditional left-shift by on
    [all...]
  /external/clang/test/CodeGen/
blockstret.c 85 printf("should be non-zero: %d\n", usesStruct(global));
92 printf("should be non-zero: %d\n", usesStruct(global));
93 printf("should be non-zero: %d\n", usesStruct(local));
94 printf("should be zero: %d\n", usesStruct(^void(int x){ }));
101 should be non-zero: 1
102 should be non-zero: 1
103 should be non-zero: 1
104 should be zero: 0
  /external/compiler-rt/lib/ubsan/lit_tests/Misc/
vla.c 3 // RUN: %t a 2>&1 | FileCheck %s --check-prefix=CHECK-ZERO
8 // CHECK-ZERO: vla.c:9:11: runtime error: variable length array bound evaluates to non-positive value 0
  /external/dnsmasq/contrib/lease-access/
README 6 is received. In that case if the exit code of the script is zero,
7 dnsmasq continues normally, and if non-zero the packet is ignored.
  /external/kernel-headers/original/linux/
if_hippi.h 85 __u8 start_d2_burst_boundary:1; /* must be zero */
86 __u8 reserved:6; /* must be zero */
90 __u16 d2_offset:3; /* must be zero */
93 __u8 reserved:6; /* must be zero */
94 __u8 start_d2_burst_boundary:1; /* must be zero */
97 __u16 d2_offset:3; /* must be zero */
99 __u16 reserved1:5; /* must be zero */
146 __u8 oui[HIPPI_OUI_LEN]; /* organizational universal id (zero)*/
  /external/llvm/test/CodeGen/Mips/
zeroreg.ll 7 ; CHECK: movn ${{[0-9]+}}, $zero
16 ; CHECK: movz ${{[0-9]+}}, $zero
  /external/llvm/test/CodeGen/X86/
uint_to_fp-2.ll 21 ; CHECK: xorps [[ZERO:%xmm[0-9]+]]
22 ; CHECK: movss {{.*}}, [[ZERO]]
  /external/llvm/test/MC/ELF/
align-text.s 5 .zero 1
7 .zero 1
  /external/valgrind/main/exp-bbv/tests/arm-linux/
million.S 17 bne big_loop @ repeat till zero
23 mov r0,#0 @ result is zero
  /libcore/luni/src/main/java/java/util/concurrent/
Delayed.java 4 * http://creativecommons.org/publicdomain/zero/1.0/
27 * @return the remaining delay; zero or negative values indicate
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
if_hippi.h 85 __u8 start_d2_burst_boundary:1; /* must be zero */
86 __u8 reserved:6; /* must be zero */
90 __u16 d2_offset:3; /* must be zero */
93 __u8 reserved:6; /* must be zero */
94 __u8 start_d2_burst_boundary:1; /* must be zero */
97 __u16 d2_offset:3; /* must be zero */
99 __u16 reserved1:5; /* must be zero */
146 __u8 oui[HIPPI_OUI_LEN]; /* organizational universal id (zero)*/
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_hippi.h 85 __u8 start_d2_burst_boundary:1; /* must be zero */
86 __u8 reserved:6; /* must be zero */
90 __u16 d2_offset:3; /* must be zero */
93 __u8 reserved:6; /* must be zero */
94 __u8 start_d2_burst_boundary:1; /* must be zero */
97 __u16 d2_offset:3; /* must be zero */
99 __u16 reserved1:5; /* must be zero */
146 __u8 oui[HIPPI_OUI_LEN]; /* organizational universal id (zero)*/
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_hippi.h 85 __u8 start_d2_burst_boundary:1; /* must be zero */
86 __u8 reserved:6; /* must be zero */
90 __u16 d2_offset:3; /* must be zero */
93 __u8 reserved:6; /* must be zero */
94 __u8 start_d2_burst_boundary:1; /* must be zero */
97 __u16 d2_offset:3; /* must be zero */
99 __u16 reserved1:5; /* must be zero */
146 __u8 oui[HIPPI_OUI_LEN]; /* organizational universal id (zero)*/
  /dalvik/vm/mterp/armv5te/
OP_CONST_HIGH16.S 3 FETCH(r0, 1) @ r0<- 0000BBBB (zero-extended)

Completed in 2794 milliseconds

1 2 3 4 5 6 7 8 91011>>