/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...] |
/external/chromium_org/v8/test/mjsunit/ |
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...] |
/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/llvm/test/MC/Mips/ |
do_switch1.s | 27 addiu $1, $zero, 2 34 addiu $2, $zero, 4 45 addiu $2, $zero, 1 49 addiu $2, $zero, 2 53 addiu $2, $zero, 0 57 addiu $2, $zero, 3
|
do_switch2.s | 28 addiu $1, $zero, 2 35 addiu $2, $zero, 4 47 addiu $2, $zero, 1 51 addiu $2, $zero, 2 55 addiu $2, $zero, 0 59 addiu $2, $zero, 3
|
/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/builtins/ |
fp_mul_impl.inc | 26 // Detect if a or b is zero, denormal, infinity, or NaN. 38 // infinity * non-zero = +/- infinity 40 // infinity * zero = NaN 45 //? non-zero * infinity = +/- infinity 47 // zero * infinity = NaN 51 // zero * anything = +/- zero 53 // anything * zero = +/- zero 72 // zero. Normalizing this result is just a conditional left-shift by on [all...] |
/external/ceres-solver/internal/ceres/ |
block_sparse_matrix_test.cc | 72 Vector y_a = Vector::Zero(A_->num_rows()); 73 Vector y_b = Vector::Zero(A_->num_rows()); 75 Vector x = Vector::Zero(A_->num_cols()); 84 Vector y_a = Vector::Zero(A_->num_cols()); 85 Vector y_b = Vector::Zero(A_->num_cols()); 87 Vector x = Vector::Zero(A_->num_rows()); 96 Vector y_a = Vector::Zero(A_->num_cols()); 97 Vector y_b = Vector::Zero(A_->num_cols());
|
/external/chromium_org/net/tools/quic/ |
quic_epoll_clock.cc | 19 return QuicTime::Zero().Add( 24 return QuicTime::Zero().Add(
|
/external/chromium_org/third_party/webrtc/modules/audio_processing/aec/ |
aec_core.h | 99 // Non-zero enables, zero disables. 102 // Returns non-zero if reported delay is enabled and zero if disabled. 108 // echo_cancellation_impl.h. Non-zero enables, zero disables. 111 // Returns non-zero if delay correction is enabled and zero if disabled.
|
/external/clang/test/CodeGen/ |
blockstret.c | 92 printf("should be non-zero: %d\n", usesStruct(global)); 99 printf("should be non-zero: %d\n", usesStruct(global)); 100 printf("should be non-zero: %d\n", usesStruct(local)); 101 printf("should be zero: %d\n", usesStruct(^void(int x){ })); 108 should be non-zero: 1 109 should be non-zero: 1 110 should be non-zero: 1 111 should be zero: 0
|
/external/compiler-rt/test/ubsan/TestCases/Misc/ |
vla.c | 3 // RUN: %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/uapi/linux/ |
if_hippi.h | 84 __u8 start_d2_burst_boundary:1; /* must be zero */ 85 __u8 reserved:6; /* must be zero */ 89 __u16 d2_offset:3; /* must be zero */ 92 __u8 reserved:6; /* must be zero */ 93 __u8 start_d2_burst_boundary:1; /* must be zero */ 96 __u16 d2_offset:3; /* must be zero */ 98 __u16 reserved1:5; /* must be zero */ 143 __u8 oui[HIPPI_OUI_LEN]; /* organizational universal id (zero)*/
|
/external/libcxx/test/containers/sequences/array/array.zero/ |
Android.mk | 17 test_makefile := external/libcxx/test/containers/sequences/array/array.zero/Android.mk 19 test_name := containers/sequences/array/array.zero/tested_elsewhere
|
/external/libcxx/test/containers/sequences/dynarray/dynarray.zero/ |
Android.mk | 17 test_makefile := external/libcxx/test/containers/sequences/dynarray/dynarray.zero/Android.mk 19 test_name := containers/sequences/dynarray/dynarray.zero/default
|
/external/llvm/test/Analysis/Lint/ |
check-zero-divide.ll | 24 ; CHECK: Undefined behavior: Division by zero 31 ; CHECK: Undefined behavior: Division by zero 38 ; CHECK: Undefined behavior: Division by zero 45 ; CHECK: Undefined behavior: Division by zero 52 ; CHECK: Undefined behavior: Division by zero 59 ; CHECK: Undefined behavior: Division by zero 66 ; CHECK: Undefined behavior: Division by zero 73 ; CHECK: Undefined behavior: Division by zero
|
/external/llvm/test/CodeGen/X86/ |
fast-isel-select.ll | 3 ; select. Otherwise, we may account for a non-zero value whereas the 4 ; lsb is zero.
|
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
|
zero.s | 3 .zero 4 4 .zero 1,42
|
/external/valgrind/main/exp-bbv/tests/arm-linux/ |
million.S | 17 bne big_loop @ repeat till zero 23 mov r0,#0 @ result is zero
|
/external/valgrind/main/none/tests/mips32/ |
test_fcsr.c | 9 "ctc1 $zero, $31" "\n\t" 14 "ctc1 $zero, $31" "\n\t"
|
/external/valgrind/main/none/tests/mips64/ |
test_fcsr.c | 9 "ctc1 $zero, $31" "\n\t" 15 "ctc1 $zero, $31" "\n\t"
|
/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
|