/external/mesa3d/prebuilt-intermediates/perf/ |
D | gen_perf_metrics.c | 43274 struct gen_perf_query_counter *counter = query->counters; in hsw_register_render_basic_counter_query() local 43356 counter = &query->counters[query->n_counters++]; in hsw_register_render_basic_counter_query() 43357 counter->oa_counter_read_uint64 = hsw__render_basic__gpu_core_clocks__read; in hsw_register_render_basic_counter_query() 43358 counter->name = "GPU Core Clocks"; in hsw_register_render_basic_counter_query() 43359 counter->desc = "The total number of GPU core clocks elapsed during the measurement."; in hsw_register_render_basic_counter_query() 43360 counter->symbol_name = "GpuCoreClocks"; in hsw_register_render_basic_counter_query() 43361 counter->category = "GPU"; in hsw_register_render_basic_counter_query() 43362 counter->type = GEN_PERF_COUNTER_TYPE_EVENT; in hsw_register_render_basic_counter_query() 43363 counter->data_type = GEN_PERF_COUNTER_DATA_TYPE_UINT64; in hsw_register_render_basic_counter_query() 43364 counter->units = GEN_PERF_COUNTER_UNITS_CYCLES; in hsw_register_render_basic_counter_query() [all …]
|
/external/vixl/src/aarch64/ |
D | instrument-aarch64.cc | 133 Counter* counter = new Counter(kCounterList[i].name, kCounterList[i].type); in Instrument() local 134 counters_.push_back(counter); in Instrument() 160 static Counter* counter = GetCounter("Instruction"); in Update() local 161 VIXL_ASSERT(counter->GetType() == Cumulative); in Update() 162 counter->Increment(); in Update() 164 if ((sample_period_ != 0) && counter->IsEnabled() && in Update() 165 (counter->GetCount() % sample_period_) == 0) { in Update() 212 static Counter* counter = GetCounter("Instruction"); in DumpEventMarker() local 218 counter->GetCount()); in DumpEventMarker() 260 static Counter* counter = GetCounter("PC Addressing"); in VisitPCRelAddressing() local [all …]
|
/external/grpc-grpc/tools/run_tests/performance/ |
D | massage_qps_stats.py | 28 "core_client_calls_created"] = massage_qps_stats_helpers.counter( 31 "core_server_calls_created"] = massage_qps_stats_helpers.counter( 33 stats["core_cqs_created"] = massage_qps_stats_helpers.counter( 36 "core_client_channels_created"] = massage_qps_stats_helpers.counter( 39 "core_client_subchannels_created"] = massage_qps_stats_helpers.counter( 42 "core_server_channels_created"] = massage_qps_stats_helpers.counter( 44 stats["core_syscall_poll"] = massage_qps_stats_helpers.counter( 46 stats["core_syscall_wait"] = massage_qps_stats_helpers.counter( 48 stats["core_pollset_kick"] = massage_qps_stats_helpers.counter( 51 "core_pollset_kicked_without_poller"] = massage_qps_stats_helpers.counter( [all …]
|
/external/guava/guava-tests/test/com/google/common/io/ |
D | CountingInputStreamTest.java | 31 private CountingInputStream counter; field in CountingInputStreamTest 36 counter = new CountingInputStream(new ByteArrayInputStream(new byte[20])); in setUp() 40 assertEquals(0, counter.getCount()); in testReadSingleByte() 41 assertEquals(0, counter.read()); in testReadSingleByte() 42 assertEquals(1, counter.getCount()); in testReadSingleByte() 46 assertEquals(10, counter.read(new byte[10])); in testReadArray() 47 assertEquals(10, counter.getCount()); in testReadArray() 51 assertEquals(3, counter.read(new byte[10], 1, 3)); in testReadArrayRange() 52 assertEquals(3, counter.getCount()); in testReadArrayRange() 56 assertEquals(10, counter.skip(10)); in testSkip() [all …]
|
D | CountingOutputStreamTest.java | 31 CountingOutputStream counter = new CountingOutputStream(out); in testCount() local 33 assertEquals(written, counter.getCount()); in testCount() 35 counter.write(0); in testCount() 38 assertEquals(written, counter.getCount()); in testCount() 41 counter.write(data); in testCount() 44 assertEquals(written, counter.getCount()); in testCount() 46 counter.write(data, 0, 5); in testCount() 49 assertEquals(written, counter.getCount()); in testCount() 51 counter.write(data, 2, 5); in testCount() 54 assertEquals(written, counter.getCount()); in testCount() [all …]
|
/external/guava/android/guava-tests/test/com/google/common/io/ |
D | CountingInputStreamTest.java | 31 private CountingInputStream counter; field in CountingInputStreamTest 36 counter = new CountingInputStream(new ByteArrayInputStream(new byte[20])); in setUp() 40 assertEquals(0, counter.getCount()); in testReadSingleByte() 41 assertEquals(0, counter.read()); in testReadSingleByte() 42 assertEquals(1, counter.getCount()); in testReadSingleByte() 46 assertEquals(10, counter.read(new byte[10])); in testReadArray() 47 assertEquals(10, counter.getCount()); in testReadArray() 51 assertEquals(3, counter.read(new byte[10], 1, 3)); in testReadArrayRange() 52 assertEquals(3, counter.getCount()); in testReadArrayRange() 56 assertEquals(10, counter.skip(10)); in testSkip() [all …]
|
D | CountingOutputStreamTest.java | 31 CountingOutputStream counter = new CountingOutputStream(out); in testCount() local 33 assertEquals(written, counter.getCount()); in testCount() 35 counter.write(0); in testCount() 38 assertEquals(written, counter.getCount()); in testCount() 41 counter.write(data); in testCount() 44 assertEquals(written, counter.getCount()); in testCount() 46 counter.write(data, 0, 5); in testCount() 49 assertEquals(written, counter.getCount()); in testCount() 51 counter.write(data, 2, 5); in testCount() 54 assertEquals(written, counter.getCount()); in testCount() [all …]
|
/external/libchrome/base/test/ |
D | test_mock_time_task_runner_unittest.cc | 32 int counter = 0; in TEST() local 36 base::Bind([](int* counter) { *counter += 1; }, Unretained(&counter))); in TEST() argument 39 base::Bind([](int* counter) { *counter += 32; }, Unretained(&counter))); in TEST() argument 42 base::Bind([](int* counter) { *counter += 256; }, Unretained(&counter)), in TEST() argument 46 base::Bind([](int* counter) { *counter += 64; }, Unretained(&counter)), in TEST() argument 50 base::Bind([](int* counter) { *counter += 1024; }, in TEST() argument 51 Unretained(&counter)), in TEST() 55 base::Bind([](int* counter) { *counter += 4096; }, in TEST() argument 56 Unretained(&counter)), in TEST() 60 EXPECT_EQ(expected_value, counter); in TEST() [all …]
|
/external/python/cryptography/vectors/cryptography_vectors/asymmetric/DSA/FIPS_186-2/ |
D | PQGGen.txt | 9 counter = 0 11 counter = 1 13 counter = 2 15 counter = 3 17 counter = 4 27 counter = 0 29 counter = 1 31 counter = 2 33 counter = 3 35 counter = 4 [all …]
|
/external/perfetto/src/base/ |
D | task_runner_unittest.cc | 59 int counter = 0; in TEST_F() local 60 task_runner.PostTask([&counter] { counter = (counter << 4) | 1; }); in TEST_F() 61 task_runner.PostTask([&counter] { counter = (counter << 4) | 2; }); in TEST_F() 62 task_runner.PostTask([&counter] { counter = (counter << 4) | 3; }); in TEST_F() 63 task_runner.PostTask([&counter] { counter = (counter << 4) | 4; }); in TEST_F() 66 EXPECT_EQ(0x1234, counter); in TEST_F() 71 int counter = 0; in TEST_F() local 72 task_runner.PostDelayedTask([&counter] { counter = (counter << 4) | 1; }, 5); in TEST_F() 73 task_runner.PostDelayedTask([&counter] { counter = (counter << 4) | 2; }, 10); in TEST_F() 74 task_runner.PostDelayedTask([&counter] { counter = (counter << 4) | 3; }, 15); in TEST_F() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | loop-micro-op-buffer-size-t99.ll | 18 ; CHECK: %counter = phi i32 [ 0, %entry ], [ %inc.3, %loop.inc.3 ] 19 ; CHECK: %val = add nuw nsw i32 %counter, 5 20 ; CHECK: %val1 = add nuw nsw i32 %counter, 6 21 ; CHECK: %val2 = add nuw nsw i32 %counter, 7 22 ; CHECK: %val3 = add nuw nsw i32 %counter, 8 23 ; CHECK: %val4 = add nuw nsw i32 %counter, 9 24 ; CHECK: %val5 = add nuw nsw i32 %counter, 10 25 ; CHECK-NOT: %val = add i32 %counter, 5 26 ; CHECK-NOT: %val = add i32 %counter, 6 27 ; CHECK-NOT: %val = add i32 %counter, 7 [all …]
|
/external/tensorflow/tensorflow/core/lib/random/ |
D | philox_random.h | 133 PhiloxRandom(ResultType counter, Key key) : counter_(counter), key_(key) {} in PhiloxRandom() argument 136 ResultType const& counter() const { return counter_; } in counter() function 163 ResultType counter = counter_; in operator() local 168 counter = ComputeSingleRound(counter, key); in operator() 170 counter = ComputeSingleRound(counter, key); in operator() 172 counter = ComputeSingleRound(counter, key); in operator() 174 counter = ComputeSingleRound(counter, key); in operator() 176 counter = ComputeSingleRound(counter, key); in operator() 178 counter = ComputeSingleRound(counter, key); in operator() 180 counter = ComputeSingleRound(counter, key); in operator() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/PlaceSafepoints/ |
D | finite-loops.ll | 20 %counter = phi i32 [ 0 , %entry ], [ %counter.inc , %loop ] 21 %counter.inc = add i32 %counter, 1 22 %counter.cmp = icmp slt i32 %counter.inc, 16 23 br i1 %counter.cmp, label %loop, label %exit 42 %counter = phi i32 [ 0 , %entry ], [ %counter.inc , %continue ] 43 %counter.inc = add i32 %counter, 1 44 %counter.cmp = icmp slt i32 %counter.inc, 16 48 br i1 %counter.cmp, label %loop, label %exit 67 %counter = phi i8 [ 0 , %entry ], [ %counter.inc , %loop ] 68 %counter.inc = add nsw i8 %counter, 1 [all …]
|
/external/llvm/test/Transforms/PlaceSafepoints/ |
D | finite-loops.ll | 20 %counter = phi i32 [ 0 , %entry ], [ %counter.inc , %loop ] 21 %counter.inc = add i32 %counter, 1 22 %counter.cmp = icmp slt i32 %counter.inc, 16 23 br i1 %counter.cmp, label %loop, label %exit 42 %counter = phi i32 [ 0 , %entry ], [ %counter.inc , %continue ] 43 %counter.inc = add i32 %counter, 1 44 %counter.cmp = icmp slt i32 %counter.inc, 16 48 br i1 %counter.cmp, label %loop, label %exit 67 %counter = phi i8 [ 0 , %entry ], [ %counter.inc , %loop ] 68 %counter.inc = add nsw i8 %counter, 1 [all …]
|
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/ |
D | window.cpp | 8 int counter = 0; variable 12 [&counter](rxcpp::observable<int> v){ in __anond3cd9c6b0102() 13 int id = counter++; in __anond3cd9c6b0102() 24 int counter = 0; variable 28 [&counter](rxcpp::observable<int> v){ in __anond3cd9c6b0402() 29 int id = counter++; in __anond3cd9c6b0402() 40 int counter = 0; variable 49 [&counter](rxcpp::observable<long> v){ in __anond3cd9c6b0702() 50 int id = counter++; in __anond3cd9c6b0702() 61 int counter = 0; variable [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoopUnroll/X86/ |
D | store_cost.ll | 26 %counter = phi i32 [0, %entry], [%inc, %loop.inc] 30 %ptr = getelementptr [1024 x i32], [1024 x i32]* %0, i32 0, i32 %counter 31 store i32 %counter, i32* %ptr 32 %val = add i32 %counter, 5 33 %xptr = getelementptr [1024 x i32], [1024 x i32]* %x0, i32 0, i32 %counter 35 %val1 = add i32 %counter, 6 36 %xptr1 = getelementptr [1024 x i32], [1024 x i32]* %x01, i32 0, i32 %counter 38 %val2 = add i32 %counter, 7 39 %xptr2 = getelementptr [1024 x i32], [1024 x i32]* %x02, i32 0, i32 %counter 41 %val3 = add i32 %counter, 8 [all …]
|
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/ |
D | ReflectionLongAdderCounterTest.java | 27 private ReflectionLongAdderCounter counter = new ReflectionLongAdderCounter(); field in ReflectionLongAdderCounterTest 31 assertEquals(0, counter.value()); in testInitialValue() 36 counter.add(1); in testIncrement() 37 assertEquals(1, counter.value()); in testIncrement() 42 counter.add(2); in testIncrementDelta() 43 assertEquals(2, counter.value()); in testIncrementDelta() 48 counter.add(2); in testIncrementMulti() 49 counter.add(1); in testIncrementMulti() 50 assertEquals(3, counter.value()); in testIncrementMulti() 55 counter.add(2); in testDecrement() [all …]
|
/external/u-boot/include/asm-generic/ |
D | atomic.h | 6 typedef struct { volatile int counter; } atomic_t; member 8 typedef struct { volatile long long counter; } atomic64_t; member 10 typedef struct { volatile long counter; } atomic64_t; member 15 #define atomic_read(v) ((v)->counter) 16 #define atomic_set(v, i) ((v)->counter = (i)) 25 v->counter += i; in atomic_add() 34 v->counter -= i; in atomic_sub() 43 ++v->counter; in atomic_inc() 52 --v->counter; in atomic_dec() 62 val = v->counter; in atomic_dec_and_test() [all …]
|
/external/mesa3d/src/intel/perf/ |
D | gen_perf.py | 197 def output_rpn_equation_code(set, counter, equation): argument 219 …able " + operand + " in equation " + equation + " for " + set.name + " :: " + counter.get('name')); 229 …counter.get('name') + ".\nThis is probably due to some unhandled RPN function, in the equation \""… 241 def splice_rpn_expression(set, counter, expression): argument 257 … " + operand + " in expression " + expression + " for " + set.name + " :: " + counter.get('name')); 266 …counter.get('name') + ".\nThis is probably due to some unhandled RPN operation, in the expression … 271 def output_counter_read(gen, set, counter): argument 273 c("/* {0} :: {1} */".format(set.name, counter.get('name'))) 275 if counter.read_hash in hashed_funcs: 276 c("#define %s \\" % counter.read_sym) [all …]
|
/external/libvpx/libvpx/vpx_dsp/mips/ |
D | sad_mmi.c | 362 int counter) { in vpx_sad64x() argument 365 mips_reg l_counter = counter; in vpx_sad64x() 377 MMI_ADDIU(%[counter], %[counter], -0x02) in vpx_sad64x() 381 [ftmp4]"=&f"(ftmp4), [ftmp5]"=&f"(ftmp5), [counter]"+&r"(l_counter), in vpx_sad64x() 404 int counter) { in vpx_sad_avg64x() argument 407 mips_reg l_counter = counter; in vpx_sad_avg64x() 421 MMI_ADDIU(%[counter], %[counter], -0x02) in vpx_sad_avg64x() 425 [ftmp4]"=&f"(ftmp4), [ftmp5]"=&f"(ftmp5), [counter]"+&r"(l_counter), in vpx_sad_avg64x() 448 int counter) { in vpx_sad32x() argument 451 mips_reg l_counter = counter; in vpx_sad32x() [all …]
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/ |
D | ProbeCounterTest.java | 28 private ProbeCounter counter; field in ProbeCounterTest 32 counter = new ProbeCounter(); in setup() 37 assertFalse(counter.hasMethods()); in testInitial() 38 assertEquals(0, counter.getCount()); in testInitial() 43 counter.visitTotalProbeCount(42); in testVisitTotalProbeCount() 44 assertEquals(42, counter.getCount()); in testVisitTotalProbeCount() 49 assertNull(counter.visitMethod(0, "<clinit>", null, null, null)); in testVisitClinitMethod() 50 assertFalse(counter.hasMethods()); in testVisitClinitMethod() 55 counter.visitMethod(Opcodes.ACC_ABSTRACT, "foo", null, null, null); in testVisitAbstractMethod() 56 assertFalse(counter.hasMethods()); in testVisitAbstractMethod() [all …]
|
/external/tcpdump/tests/ |
D | sflow_multiple_counter_30_pdus.out | 3 expanded counter sample (4), length 172, seqnum 87096, type 0, idx 55, records 2 4 enterprise 0, Generic counter (1) length 88 11 enterprise 0, Ethernet counter (2) length 52 15 expanded counter sample (4), length 172, seqnum 87096, type 0, idx 56, records 2 16 enterprise 0, Generic counter (1) length 88 23 enterprise 0, Ethernet counter (2) length 52 27 expanded counter sample (4), length 172, seqnum 87099, type 0, idx 57, records 2 28 enterprise 0, Generic counter (1) length 88 35 enterprise 0, Ethernet counter (2) length 52 39 expanded counter sample (4), length 172, seqnum 87096, type 0, idx 60, records 2 [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
D | SICBlockCipher.java | 24 private byte[] counter; field in SICBlockCipher 40 this.counter = new byte[blockSize]; in SICBlockCipher() 104 cipher.processBlock(counter, 0, counterOut, 0); in calculateByte() 111 if (byteCount == counter.length) in calculateByte() 130 if (counter[i] != IV[i]) in checkCounter() 140 int i = counter.length - pos; in incrementCounterAt() 143 if (++counter[i] != 0) in incrementCounterAt() 152 byte old = counter[counter.length - 1]; in incrementCounter() 154 counter[counter.length - 1] += offSet; in incrementCounter() 156 if (old != 0 && counter[counter.length - 1] < old) in incrementCounter() [all …]
|
/external/bcc/tests/cc/ |
D | test_perf_event.cc | 81 auto counter = counter_table[0]; variable 84 REQUIRE(counter.counter >= 0); 85 REQUIRE(counter.enabled > 0); 86 REQUIRE(counter.running >= 0); 87 REQUIRE(counter.running <= counter.enabled); 131 auto counter = counter_table[0]; variable 134 REQUIRE(counter.counter >= 0); 139 REQUIRE(counter.enabled >= 800000000); 140 REQUIRE(counter.running >= 0); 141 REQUIRE(counter.running <= counter.enabled);
|
/external/libcxxabi/test/ |
D | unwind_06.pass.cpp | 23 volatile int counter; variable 28 for (counter = 100; counter; --counter) in try1() 38 for (counter = 100; counter; --counter) in try2() 49 for (counter = 100; counter; --counter) in try3() 61 for (counter = 100; counter; --counter) in try4() 74 for (counter = 100; counter; --counter) in try5() 88 for (counter = 100; counter; --counter) in try6() 103 for (counter = 100; counter; --counter) in try7() 119 for (counter = 100; counter; --counter) in try8()
|