/external/javassist/src/main/javassist/bytecode/ |
D | InnerClassesAttribute.java | 60 public int innerClassIndex(int nth) { in innerClassIndex() argument 61 return ByteArray.readU16bit(get(), nth * 8 + 2); in innerClassIndex() 72 public String innerClass(int nth) { in innerClass() argument 73 int i = innerClassIndex(nth); in innerClass() 83 public void setInnerClassIndex(int nth, int index) { in setInnerClassIndex() argument 84 ByteArray.write16bit(index, get(), nth * 8 + 2); in setInnerClassIndex() 90 public int outerClassIndex(int nth) { in outerClassIndex() argument 91 return ByteArray.readU16bit(get(), nth * 8 + 4); in outerClassIndex() 100 public String outerClass(int nth) { in outerClass() argument 101 int i = outerClassIndex(nth); in outerClass() [all …]
|
D | ExceptionTable.java | 97 public int startPc(int nth) { in startPc() argument 98 return entries.get(nth).startPc; in startPc() 107 public void setStartPc(int nth, int value) { in setStartPc() argument 108 entries.get(nth).startPc = value; in setStartPc() 116 public int endPc(int nth) { in endPc() argument 117 return entries.get(nth).endPc; in endPc() 126 public void setEndPc(int nth, int value) { in setEndPc() argument 127 entries.get(nth).endPc = value; in setEndPc() 135 public int handlerPc(int nth) { in handlerPc() argument 136 return entries.get(nth).handlerPc; in handlerPc() [all …]
|
D | LongVector.java | 49 int nth = elements >> ABITS; in addElement() local 52 if (nth >= len) { in addElement() 58 if (objects[nth] == null) in addElement() 59 objects[nth] = new ConstInfo[ASIZE]; in addElement() 61 objects[nth][offset] = value; in addElement()
|
/external/iptables/extensions/ |
D | libxt_statistic.c | 41 .flags = XTOPT_INVERT | XTOPT_PUT, XTOPT_POINTER(s, u.nth.every), 44 .flags = XTOPT_PUT, XTOPT_POINTER(s, u.nth.packet), 72 --info->u.nth.every; in statistic_parse() 93 if (info->u.nth.packet > info->u.nth.every) in statistic_check() 97 info->u.nth.count = info->u.nth.every - info->u.nth.packet; in statistic_check() 113 info->u.nth.every + 1); in print_match() 114 if (info->u.nth.packet || *prefix) in print_match() 115 printf(" %spacket %u", prefix, info->u.nth.packet); in print_match() 147 info->u.nth.every + 1, in statistic_xlate() 149 info->u.nth.packet); in statistic_xlate() [all …]
|
D | libxt_statistic.man | 12 .B nth. 20 Match one packet every nth packet. It works only with the 21 .B nth 28 .B nth
|
D | libxt_statistic.t | 6 -m statistic --mode nth ! --every 5 --packet 2;=;OK 7 -m statistic --mode nth ! --every 5;;FAIL 8 -m statistic --mode nth ! --every 5 --packet 5;;FAIL
|
/external/autotest/client/site_tests/cellular_MbimComplianceDataTransfer/ |
D | cellular_MbimComplianceDTS0713.py | 39 nth, _, _, _ = loopback.run(ntb_format=ntb_format) 43 if (nth.fp_index < 12) or (nth.fp_index % 4 != 0): 48 if (nth.fp_index < 16) or (nth.fp_index % 4 != 0):
|
D | cellular_MbimComplianceDTS0309.py | 39 nth, _, _, _ = loopback.run(ntb_format=ntb_format) 43 if nth.header_length != 12: 48 if nth.header_length != 16:
|
D | cellular_MbimComplianceDTS0612.py | 39 nth, _, _, _ = loopback.run(ntb_format=ntb_format) 43 if nth.block_length > self.device_context.max_in_data_transfer_size: 48 if nth.block_length > self.device_context.max_in_data_transfer_size:
|
D | cellular_MbimComplianceDTS0208.py | 40 nth, _, _, _ = loopback.run(ntb_format=ntb_format) 44 if nth.signature != mbim_data_transfer.NTH_SIGNATURE_16: 49 if nth.signature != mbim_data_transfer.NTH_SIGNATURE_32:
|
D | cellular_MbimComplianceDTS0410.py | 49 nth, _, _, _ = loopback.run(ntb_format=ntb_format) 53 if nth.sequence_number != 0: 58 if nth.sequence_number != 0:
|
/external/compiler-rt/test/tsan/ |
D | bench.h | 14 void start_thread_group(int nth, void(*f)(int tid)); 46 void start_thread_group(int nth, void(*f)(int tid)) { in start_thread_group() argument 47 pthread_t *th = (pthread_t*)malloc(nth * sizeof(pthread_t)); in start_thread_group() 48 for (int i = 0; i < nth; i++) in start_thread_group() 50 for (int i = 0; i < nth; i++) in start_thread_group()
|
/external/llvm-project/compiler-rt/test/tsan/ |
D | bench.h | 14 void start_thread_group(int nth, void(*f)(int tid)); 46 void start_thread_group(int nth, void(*f)(int tid)) { in start_thread_group() argument 47 pthread_t *th = (pthread_t*)malloc(nth * sizeof(pthread_t)); in start_thread_group() 48 for (int i = 0; i < nth; i++) in start_thread_group() 50 for (int i = 0; i < nth; i++) in start_thread_group()
|
/external/autotest/client/cros/cellular/mbim_compliance/ |
D | mbim_data_transfer_unittest.py | 110 nth, ndp, ndp_entries, payload = ntb.parse_ntb(ntb_frame) 126 self.assertEqual(nth.signature, mbim_data_transfer.NTH_SIGNATURE_32) 127 self.assertEqual(nth.header_length, 16) 128 self.assertEqual(nth.sequence_number, 1) 129 self.assertEqual(nth.block_length, 144) 130 self.assertEqual(nth.fp_index, 112)
|
D | mbim_data_transfer.py | 277 self.nth = self._nth_class( 287 raw_ntb_frame += array.array('B', self.nth.pack()) 315 self.nth = self._nth_class(raw_data=raw_ntb_frame) 316 ndp_offset = self.nth.fp_index 318 if len(raw_ntb_frame) != self.nth.block_length: 322 len(raw_ntb_frame), self.nth.block_length)) 348 return (self.nth, self.ndp, self.ndp_entries, self.payload)
|
/external/llvm-project/openmp/runtime/src/ |
D | kmp_sched.cpp | 91 kmp_uint32 nth; in __kmp_for_static_init() local 236 nth = team->t.t_nproc; in __kmp_for_static_init() 237 if (nth == 1) { in __kmp_for_static_init() 296 if (trip_count < nth) { in __kmp_for_static_init() 310 UT small_chunk = trip_count / nth; in __kmp_for_static_init() 311 UT extras = trip_count % nth; in __kmp_for_static_init() 315 *plastiter = (tid == nth - 1); in __kmp_for_static_init() 318 (trip_count / nth + ((trip_count % nth) ? 1 : 0)) * incr; in __kmp_for_static_init() 352 *pstride = span * nth; in __kmp_for_static_init() 356 *plastiter = (tid == ((trip_count - 1) / (UT)chunk) % nth); in __kmp_for_static_init() [all …]
|
/external/angle/third_party/vulkan-deps/glslang/src/Test/ |
D | cppComplexExpr.vert | 52 …nathoen uasoenuasoent asntoehsan tuosnthnu aohenuath eontha untoh eunth unth anth unth nth nth nt \ 53 …thansu tohe sanuthoe snathuoesntha snuothe anthusonehtasuntoeh asnuthonsa teauhntoeha onetuha nth \ 60 …nathoen uasoenuasoent asntoehsan tuosnthnu aohenuath eontha untoh eunth unth anth unth nth nth nt \ 61 …thansu tohe sanuthoe snathuoesntha snuothe anthusonehtasuntoeh asnuthonsa teauhntoeha onetuha nth \ 68 …nathoen uasoenuasoent asntoehsan tuosnthnu aohenuath eontha untoh eunth unth anth unth nth nth nt \ 69 …thansu tohe sanuthoe snathuoesntha snuothe anthusonehtasuntoeh asnuthonsa teauhntoeha onetuha nth \
|
/external/deqp-deps/glslang/Test/ |
D | cppComplexExpr.vert | 52 …nathoen uasoenuasoent asntoehsan tuosnthnu aohenuath eontha untoh eunth unth anth unth nth nth nt \ 53 …thansu tohe sanuthoe snathuoesntha snuothe anthusonehtasuntoeh asnuthonsa teauhntoeha onetuha nth \ 60 …nathoen uasoenuasoent asntoehsan tuosnthnu aohenuath eontha untoh eunth unth anth unth nth nth nt \ 61 …thansu tohe sanuthoe snathuoesntha snuothe anthusonehtasuntoeh asnuthonsa teauhntoeha onetuha nth \ 68 …nathoen uasoenuasoent asntoehsan tuosnthnu aohenuath eontha untoh eunth unth anth unth nth nth nt \ 69 …thansu tohe sanuthoe snathuoesntha snuothe anthusonehtasuntoeh asnuthonsa teauhntoeha onetuha nth \
|
/external/llvm-project/polly/www/video-js/ |
D | video-js.css | 157 .vjs-volume-control div span:nth-child(1) { border-bottom-width: 2px; height: 16px; } 158 .vjs-volume-control div span:nth-child(2) { border-bottom-width: 4px; height: 14px; } 159 .vjs-volume-control div span:nth-child(3) { border-bottom-width: 7px; height: 11px; } 160 .vjs-volume-control div span:nth-child(4) { border-bottom-width: 10px; height: 8px; } 161 .vjs-volume-control div span:nth-child(5) { border-bottom-width: 14px; height: 4px; } 162 .vjs-volume-control div span:nth-child(6) { margin-right: 0; } 174 .vjs-fullscreen-control div span:nth-child(1) { /* Top-left triangle */ 180 .vjs-fullscreen-control div span:nth-child(2) { border-top: 6px solid #fff; border-left: 6px solid … 181 .vjs-fullscreen-control div span:nth-child(3) { clear: both; margin: 0 3px 0 0; border-bottom: 6px … 182 .vjs-fullscreen-control div span:nth-child(4) { border-bottom: 6px solid #fff; border-left: 6px sol… [all …]
|
/external/webp/src/mux/ |
D | muxinternal.c | 101 WebPChunk* ChunkSearchList(WebPChunk* first, uint32_t nth, uint32_t tag) { in ChunkSearchList() argument 102 uint32_t iter = nth; in ChunkSearchList() 111 return ((nth > 0) && (iter > 0)) ? NULL : first; in ChunkSearchList() 277 static int SearchImageToGetOrDelete(WebPMuxImage** wpi_list, uint32_t nth, in SearchImageToGetOrDelete() argument 283 if (nth == 0) { in SearchImageToGetOrDelete() 284 nth = MuxImageCount(*wpi_list, WEBP_CHUNK_NIL); in SearchImageToGetOrDelete() 285 if (nth == 0) return 0; // Not found. in SearchImageToGetOrDelete() 291 if (count == nth) return 1; // Found. in SearchImageToGetOrDelete() 333 WebPMuxError MuxImageDeleteNth(WebPMuxImage** wpi_list, uint32_t nth) { in MuxImageDeleteNth() argument 335 if (!SearchImageToGetOrDelete(wpi_list, nth, &wpi_list)) { in MuxImageDeleteNth() [all …]
|
/external/llvm-project/libcxx/test/libcxx/fuzzing/ |
D | nth_element.pass.cpp | 32 const std::uint8_t nth = *partition_iter; in LLVMFuzzerTestOneInput() local 33 if (!std::all_of(working.begin(), partition_iter, [=](std::uint8_t v) { return v <= nth; })) in LLVMFuzzerTestOneInput() 35 if (!std::all_of(partition_iter, working.end(), [=](std::uint8_t v) { return v >= nth; })) in LLVMFuzzerTestOneInput()
|
D | partial_sort.pass.cpp | 28 const std::uint8_t nth = *std::min_element(sort_iter, working.end()); in LLVMFuzzerTestOneInput() local 29 if (!std::all_of(working.begin(), sort_iter, [=](std::uint8_t v) { return v <= nth; })) in LLVMFuzzerTestOneInput() 31 if (!std::all_of(sort_iter, working.end(), [=](std::uint8_t v) { return v >= nth; })) in LLVMFuzzerTestOneInput()
|
/external/python/cpython2/Demo/scripts/ |
D | unbirthday.py | 72 print 'Congratulations! Today is your', nth(age), 'birthday' 76 print nth(days - age), 'unbirthday' 81 def nth(n): function
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_NthElement.pbtxt | 25 When set to True, find the nth-largest value in the vector and vice 31 If the input is a vector (rank-1), finds the entries which is the nth-smallest 35 nth-smallest value in each row (resp. vector along the last dimension). Thus,
|
/external/autotest/client/cros/cellular/mbim_compliance/sequences/ |
D | loopback_sequence.py | 65 nth, ndp, ndp_entries, payload = data_transfer.receive_data_packets( 68 return (nth, ndp, ndp_entries, payload)
|