HomeSort by relevance Sort by last modified time
    Searched refs:nth (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /external/javassist/src/main/javassist/bytecode/
InnerClassesAttribute.java 57 * Returns <code>classes[nth].inner_class_info_index</code>.
59 public int innerClassIndex(int nth) {
60 return ByteArray.readU16bit(get(), nth * 8 + 2);
65 * by <code>classes[nth].inner_class_info_index</code>.
69 public String innerClass(int nth) {
70 int i = innerClassIndex(nth);
78 * Sets <code>classes[nth].inner_class_info_index</code> to
81 public void setInnerClassIndex(int nth, int index) {
82 ByteArray.write16bit(index, get(), nth * 8 + 2);
86 * Returns <code>classes[nth].outer_class_info_index</code>
    [all...]
LongVector.java 48 int nth = elements >> ABITS; local
51 if (nth >= len) {
57 if (objects[nth] == null)
58 objects[nth] = new ConstInfo[ASIZE];
60 objects[nth][offset] = value;
ExceptionTable.java 92 * @param nth the <i>n</i>-th (&gt;= 0).
94 public int startPc(int nth) {
95 ExceptionTableEntry e = (ExceptionTableEntry)entries.get(nth);
102 * @param nth the <i>n</i>-th (&gt;= 0).
105 public void setStartPc(int nth, int value) {
106 ExceptionTableEntry e = (ExceptionTableEntry)entries.get(nth);
113 * @param nth the <i>n</i>-th (&gt;= 0).
115 public int endPc(int nth) {
116 ExceptionTableEntry e = (ExceptionTableEntry)entries.get(nth);
123 * @param nth the <i>n</i>-th (&gt;= 0)
    [all...]
  /external/iptables/extensions/
libxt_statistic.c 25 " --mode mode Match mode (random, nth)\n"
28 " nth mode:\n"
29 "[!] --every n Match every nth packet\n"
41 .flags = XTOPT_INVERT | XTOPT_PUT, XTOPT_POINTER(s, u.nth.every),
44 .flags = XTOPT_PUT, XTOPT_POINTER(s, u.nth.packet),
62 else if (strcmp(cb->arg, "nth") == 0)
72 --info->u.nth.every;
90 "using nth mode");
92 /* at this point, info->u.nth.every have been decreased. */
93 if (info->u.nth.packet > info->u.nth.every
    [all...]
  /external/autotest/client/site_tests/cellular_MbimComplianceDataTransfer/
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):
cellular_MbimComplianceDTS0309.py 39 nth, _, _, _ = loopback.run(ntb_format=ntb_format)
43 if nth.header_length != 12:
48 if nth.header_length != 16:
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:
cellular_MbimComplianceDTS0410.py 49 nth, _, _, _ = loopback.run(ntb_format=ntb_format)
53 if nth.sequence_number != 0:
58 if nth.sequence_number != 0:
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:
  /external/compiler-rt/test/tsan/
bench.h 14 void start_thread_group(int nth, void(*f)(int tid));
46 void start_thread_group(int nth, void(*f)(int tid)) {
47 pthread_t *th = (pthread_t*)malloc(nth * sizeof(pthread_t));
48 for (int i = 0; i < nth; i++)
50 for (int i = 0; i < nth; i++)
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_statistic.h 44 } nth; member in union:xt_statistic_info::__anon935
  /external/iptables/include/linux/netfilter/
xt_statistic.h 31 } nth; member in union:xt_statistic_info::__anon22418
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_statistic.h 32 } nth; member in union:xt_statistic_info::__anon23141
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
xt_statistic.h 31 } nth; member in union:xt_statistic_info::__anon62683
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
unbirthday.py 72 print 'Congratulations! Today is your', nth(age), 'birthday'
76 print nth(days - age), 'unbirthday'
81 def nth(n): function
  /external/javassist/src/main/javassist/expr/
Handler.java 33 protected Handler(ExceptionTable et, int nth,
35 super(et.handlerPc(nth), it, declaring, m);
37 index = nth;
  /external/python/cpython2/Demo/scripts/
unbirthday.py 72 print 'Congratulations! Today is your', nth(age), 'birthday'
76 print nth(days - age), 'unbirthday'
81 def nth(n): function
  /external/webp/src/mux/
muxinternal.c 101 WebPChunk* ChunkSearchList(WebPChunk* first, uint32_t nth, uint32_t tag) {
102 uint32_t iter = nth;
111 return ((nth > 0) && (iter > 0)) ? NULL : first;
115 // where 'prev_chunk' is the pointer to the chunk at position (nth - 1).
116 // Returns true if nth chunk was found.
117 static int ChunkSearchListToSet(WebPChunk** chunk_list, uint32_t nth,
126 if (count == nth) return 1; // Found.
132 return (nth == 0 || (count == nth - 1)) ? 1 : 0;
160 uint32_t nth) {
    [all...]
muxi.h 121 // Search for nth chunk with given 'tag' in the chunk list.
122 // nth = 0 means "last of the list".
123 WebPChunk* ChunkSearchList(WebPChunk* first, uint32_t nth, uint32_t tag);
129 // Sets 'chunk' at nth position in the 'chunk_list'.
130 // nth = 0 has the special meaning "last of the list".
133 uint32_t nth);
196 // Delete nth image in the image list.
197 WebPMuxError MuxImageDeleteNth(WebPMuxImage** wpi_list, uint32_t nth);
199 // Get nth image in the image list.
200 WebPMuxError MuxImageGetNth(const WebPMuxImage** wpi_list, uint32_t nth,
    [all...]
  /external/ltp/testcases/network/stress/interface/
if-mtu-change 68 local nth=$(($cnt % $mtu_array_len))
69 field=$(($nth + 1))
  /external/autotest/client/cros/cellular/mbim_compliance/sequences/
loopback_sequence.py 49 @returns tuple of (nth, ndp, ndp_entries, payload) where,
50 nth - NTH header object received.
65 nth, ndp, ndp_entries, payload = data_transfer.receive_data_packets(
68 return (nth, ndp, ndp_entries, payload)
  /external/elfutils/libdw/
memory-access.h 65 #define get_uleb128_step(var, addr, nth) \
68 (var) |= (typeof (var)) (__b & 0x7f) << ((nth) * 7); \
95 #define get_sleb128_step(var, addr, nth) \
101 (var) |= (typeof (var)) __s.i * ((typeof (var)) 1 << ((nth) * 7)); \
104 (var) |= (typeof (var)) (__b & 0x7f) << ((nth) * 7); \
  /external/clang/tools/clang-format/
clang-format.el 151 (let ((replacements (nth 0 operations))
152 (cursor (nth 1 operations))
153 (incomplete-format (nth 2 operations)))
  /external/pdfium/core/fxcrt/xml/
cxml_element.cpp 126 size_t nth) const {
130 if (nth == 0)
132 --nth;
  /external/autotest/client/cros/cellular/mbim_compliance/
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)

Completed in 498 milliseconds

1 2 3 4