/external/opencensus-java/contrib/grpc_metrics/src/main/java/io/opencensus/contrib/grpc/metrics/ |
D | RpcMeasureConstants.java | 104 private static final String COUNT = "1"; field in RpcMeasureConstants 124 Measure.MeasureLong.create("grpc.io/client/error_count", "RPC Errors", COUNT); 199 "grpc.io/client/started_count", "Number of client RPCs (streams) started", COUNT); 211 "grpc.io/client/finished_count", "Number of client RPCs (streams) finished", COUNT); 222 "grpc.io/client/request_count", "Number of client RPC request messages", COUNT); 233 "grpc.io/client/response_count", "Number of client RPC response messages", COUNT); 276 "grpc.io/client/sent_messages_per_rpc", "Number of messages sent in the RPC", COUNT); 287 COUNT); 306 "grpc.io/client/started_rpcs", "Number of started client RPCs.", COUNT); 319 Measure.MeasureLong.create("grpc.io/server/error_count", "RPC Errors", COUNT); [all …]
|
D | RpcViewConstants.java | 127 @VisibleForTesting static final Aggregation COUNT = Count.create(); field in RpcViewConstants 315 COUNT, 331 COUNT, 427 COUNT, 440 COUNT, 601 COUNT, 617 COUNT, 700 COUNT, 713 COUNT, 828 COUNT, [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-ot-cff-common.hh | 82 template <typename COUNT> 103 return COUNT::static_size; in calculate_serialized_size() 125 COUNT *dest = c->allocate_min<COUNT> (); in serialize() 247 COUNT count; /* Number of object data. Note there are (count+1) offsets */ 252 DEFINE_SIZE_ARRAY (COUNT::static_size + HBUINT8::static_size, offsets); 255 template <typename COUNT, typename TYPE> 256 struct CFFIndexOf : CFFIndex<COUNT> 260 if (likely (index < CFFIndex<COUNT>::count)) in operator []() 261 …return ByteStr (CFFIndex<COUNT>::data_base () + CFFIndex<COUNT>::offset_at (index) - 1, CFFIndex<C… in operator []() 287 CFFIndex<COUNT>::set_offset_at (i, offset); in serialize() [all …]
|
/external/ltp/testcases/kernel/io/stress_floppy/datafiles/dumpdir/ |
D | generate.sh | 3 COUNT=0 13 COUNT=0 15 while [ $COUNT -le 10 ]; do 17 COUNT=$(( $COUNT + 1 ))
|
/external/bcc/tools/ |
D | funccount_example.txt | 11 FUNC COUNT 38 FUNC COUNT 175 FUNC COUNT 193 FUNC COUNT 205 FUNC COUNT 219 FUNC COUNT 232 FUNC COUNT 241 FUNC COUNT 250 FUNC COUNT 275 FUNC COUNT [all …]
|
D | argdist_example.txt | 16 COUNT EVENT 19 COUNT EVENT 22 COUNT EVENT 26 COUNT EVENT 30 COUNT EVENT 34 COUNT EVENT 38 It seems that the application is allocating blocks of size 16. The COUNT 149 COUNT EVENT 162 COUNT EVENT 194 COUNT EVENT [all …]
|
D | syscount_example.txt | 11 SYSCALL COUNT 32 SYSCALL COUNT 43 SYSCALL COUNT TIME (us) 68 PID COMM COUNT 90 SYSCALL COUNT 100 SYSCALL COUNT 118 SYSCALL COUNT 129 SYSCALL COUNT
|
/external/skia/tests/ |
D | ImageCacheTest.cpp | 42 static const int COUNT = 10; variable 46 for (int i = 0; i < COUNT; ++i) { in test_cache() 61 for (int i = 0; i < COUNT * 100; ++i) { in test_cache() 68 for (int i = 0; i < COUNT; ++i) { in test_cache() 77 for (int i = 0; i < COUNT; ++i) { in test_cache_purge_shared_id() 83 for (int i = 0; i < COUNT; ++i) { in test_cache_purge_shared_id() 95 for (int i = 0; i < COUNT; ++i) { in test_cache_purge_shared_id() 117 static const size_t defLimit = DIM * DIM * 4 * COUNT + 1024; // 1K slop in DEF_TEST()
|
/external/skqp/tests/ |
D | ImageCacheTest.cpp | 42 static const int COUNT = 10; variable 46 for (int i = 0; i < COUNT; ++i) { in test_cache() 61 for (int i = 0; i < COUNT * 100; ++i) { in test_cache() 68 for (int i = 0; i < COUNT; ++i) { in test_cache() 77 for (int i = 0; i < COUNT; ++i) { in test_cache_purge_shared_id() 83 for (int i = 0; i < COUNT; ++i) { in test_cache_purge_shared_id() 95 for (int i = 0; i < COUNT; ++i) { in test_cache_purge_shared_id() 117 static const size_t defLimit = DIM * DIM * 4 * COUNT + 1024; // 1K slop in DEF_TEST()
|
/external/autotest/contrib/ |
D | count_labels | 53 COUNT=0 64 COUNT=$(( COUNT + 1 )) 67 if [ $COUNT -ne 1 ]; then
|
/external/ltp/testcases/network/multicast/mc_opts/ |
D | mc_opts | 38 COUNT=1 39 while [ $COUNT -le 10 ]; do 55 COUNT=$(( $COUNT + 1 ))
|
/external/deqp/external/vulkancts/modules/vulkan/synchronization/ |
D | vktSynchronizationBasicSemaphoreTests.cpp | 156 enum QueuesIndexes {FIRST = 0, SECOND, COUNT}; in basicMultiQueueCase() enumerator 172 const float queuePriorities[COUNT] = {1.0f, 1.0f}; in basicMultiQueueCase() 173 VkDeviceQueueCreateInfo queueInfos[COUNT]; in basicMultiQueueCase() 174 Queues queues[COUNT] = in basicMultiQueueCase() 187 Move<VkCommandPool> cmdPool[COUNT]; in basicMultiQueueCase() 188 Move<VkCommandBuffer> cmdBuffer[COUNT]; in basicMultiQueueCase() 190 VkSubmitInfo submitInfo[COUNT]; in basicMultiQueueCase() 191 Move<VkFence> fence[COUNT]; in basicMultiQueueCase() 210 for (int queueNdx = 0; queueNdx < COUNT; ++queueNdx) in basicMultiQueueCase() 238 …CreateInfoCount = (queues[FIRST].queueFamilyIndex == queues[SECOND].queueFamilyIndex) ? 1 : COUNT; in basicMultiQueueCase() [all …]
|
D | vktSynchronizationBasicEventTests.cpp | 173 enum {SET=0, WAIT, COUNT}; in singleSubmissionCase() enumerator 180 …const Move<VkCommandBuffer> ptrCmdBuffer[COUNT] = {makeCommandBuffer(vk, device, *cmdPool), makeC… in singleSubmissionCase() 181 VkCommandBuffer cmdBuffers[COUNT] = {*ptrCmdBuffer[SET], *ptrCmdBuffer[WAIT]}; in singleSubmissionCase() 213 enum {SET=0, WAIT, COUNT}; in multiSubmissionCase() enumerator 218 const Move<VkFence> ptrFence[COUNT] = in multiSubmissionCase() 223 VkFence fence[COUNT] = {*ptrFence[SET], *ptrFence[WAIT]}; in multiSubmissionCase() 225 …const Move<VkCommandBuffer> ptrCmdBuffer[COUNT] = {makeCommandBuffer(vk, device, *cmdPool), makeC… in multiSubmissionCase() 226 VkCommandBuffer cmdBuffers[COUNT] = {*ptrCmdBuffer[SET], *ptrCmdBuffer[WAIT]}; in multiSubmissionCase() 227 const VkSubmitInfo submitInfo[COUNT] = in multiSubmissionCase() 273 enum {SET=0, WAIT, COUNT}; in secondaryCommandBufferCase() enumerator [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | CurrencyData.java | 67 …private final String[][] symbols = new String[SpacingType.COUNT.ordinal()][SpacingPattern.COUNT.or… 75 public static enum SpacingType { BEFORE, AFTER, COUNT }; enumConstant 83 COUNT; enumConstant 95 for (int i=0; i<SpacingType.COUNT.ordinal(); i++) { in CurrencySpacingInfo() 96 for (int j=0; j<SpacingPattern.COUNT.ordinal(); j++) { in CurrencySpacingInfo()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | CurrencyData.java | 50 …private final String[][] symbols = new String[SpacingType.COUNT.ordinal()][SpacingPattern.COUNT.or… 55 public static enum SpacingType { BEFORE, AFTER, COUNT }; enumConstant 60 COUNT; enumConstant 72 for (int i=0; i<SpacingType.COUNT.ordinal(); i++) { in CurrencySpacingInfo() 73 for (int j=0; j<SpacingPattern.COUNT.ordinal(); j++) { in CurrencySpacingInfo()
|
/external/skqp/bench/ |
D | RegionContainBench.cpp | 28 COUNT = 10, enumerator 33 return SkIRect::MakeXYWH(0, i*H/COUNT, w, H/COUNT); in randrect() 41 for (int i = 0; i < COUNT; i++) { in RegionContainBench()
|
/external/skia/bench/ |
D | RegionContainBench.cpp | 28 COUNT = 10, enumerator 33 return SkIRect::MakeXYWH(0, i*H/COUNT, w, H/COUNT); in randrect() 41 for (int i = 0; i < COUNT; i++) { in RegionContainBench()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | PluralRanges.java | 31 private boolean[] explicit = new boolean[StandardPlural.COUNT]; 47 private byte[] data = new byte[StandardPlural.COUNT * StandardPlural.COUNT]; 62 … data[start.ordinal() * StandardPlural.COUNT + end.ordinal()] = result == null ? (byte) -1 in set() 71 byte old = data[start.ordinal() * StandardPlural.COUNT + end.ordinal()]; in setIfNew() 76 … data[start.ordinal() * StandardPlural.COUNT + end.ordinal()] = result == null ? (byte) -1 in setIfNew() 84 byte result = data[start.ordinal() * StandardPlural.COUNT + end.ordinal()]; in get()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | PluralRanges.java | 33 private boolean[] explicit = new boolean[StandardPlural.COUNT]; 49 private byte[] data = new byte[StandardPlural.COUNT * StandardPlural.COUNT]; 64 … data[start.ordinal() * StandardPlural.COUNT + end.ordinal()] = result == null ? (byte) -1 in set() 73 byte old = data[start.ordinal() * StandardPlural.COUNT + end.ordinal()]; in setIfNew() 78 … data[start.ordinal() * StandardPlural.COUNT + end.ordinal()] = result == null ? (byte) -1 in setIfNew() 86 byte result = data[start.ordinal() * StandardPlural.COUNT + end.ordinal()]; in get()
|
/external/ltp/testcases/network/multicast/mc_member/ |
D | mc_member | 55 COUNT=1 56 while [ $COUNT -le 2 ] 123 COUNT=$(( $COUNT + 1 ))
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_rdlock/ |
D | 5-1.c | 24 #define COUNT 10 macro 37 for (i = 0; i < COUNT; i++) { in main() 46 for (i = 0; i < COUNT; i++) { in main()
|
/external/ltp/testcases/network/tcp_cmds/ping/ |
D | ping01.sh | 36 COUNT=${COUNT:-3} 49 EXPECT_PASS $PING_CMD -c $COUNT -s $packetsize $ipaddr \>/dev/null
|
D | ping02.sh | 25 COUNT=${COUNT:-3} 41 EXPECT_PASS $PING -c $COUNT -f -s $psize $ipaddr -p "$pat" \>/dev/null
|
/external/toybox/scripts/ |
D | make.sh | 284 COUNT=0 304 COUNT=$(($COUNT+1)) 310 [ "$COUNT" -lt "$CPUS" ] && break; 314 COUNT=$(($COUNT-1))
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_barrier_init/ |
D | 1-1.c | 27 #define COUNT 1 macro 37 rc = pthread_barrier_init(&barrier, NULL, COUNT); in main() 59 rc = pthread_barrier_init(&barrier, &ba, COUNT); in main()
|