Searched refs:idx (Results 126 - 150 of 1845) sorted by relevance

1234567891011>>

/external/libnl/src/lib/
H A Dct.c148 if (argc > ++idx)
149 nfnl_ct_set_icmp_id(ct, 0, strtoul(argv[idx++], NULL, 0));
151 if (argc > ++idx)
152 nfnl_ct_set_icmp_type(ct, 0, strtoul(argv[idx++], NULL, 0));
154 if (argc > ++idx)
155 nfnl_ct_set_icmp_code(ct, 0, strtoul(argv[idx++], NULL, 0));
157 if (argc > ++idx)
158 nfnl_ct_set_icmp_id(ct, 1, strtoul(argv[idx++], NULL, 0));
160 if (argc > ++idx)
161 nfnl_ct_set_icmp_type(ct, 1, strtoul(argv[idx
[all...]
/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAbbreviationDeclaration.h42 uint16_t getFormByIndex(uint32_t idx) const {
43 return idx < AttributeSpecs.size() ? AttributeSpecs[idx].Form : 0;
/external/mesa3d/src/compiler/glsl/
H A Dlower_vec_index_to_swizzle.cpp66 ir_constant *const idx = expr->operands[1]->constant_expression_value(); local
67 if (idx == NULL)
87 const int i = CLAMP(idx->value.i[0], 0,
/external/python/cpython2/Lib/lib2to3/fixes/
H A Dfix_isinstance.py35 for idx, arg in iterator:
37 if idx < len(args) - 1 and args[idx + 1].type == token.COMMA:
/external/testng/src/main/java/org/testng/junit/
H A DJUnit4TestMethod.java26 int idx = method.indexOf('[');
27 if (idx != -1) {
28 method = method.substring(0, idx);
/external/toybox/toys/other/
H A Dvmstat.c90 unsigned idx = loop&1, offset = 0, expected = 0; local
91 uint64_t units, total_hz, *ptr = (uint64_t *)(top+idx),
92 *oldptr = (uint64_t *)(top+!idx);
112 get_vmstat_proc(top+idx);
113 top[idx].running--; // Don't include ourselves
114 top[idx].user += top[idx].nice;
115 top[idx].sys += top[idx].irq + top[idx]
[all...]
/external/elfutils/tests/
H A Delfgetzdata.c71 size_t idx = elf_ndxscn (scn); local
81 idx, elf_errmsg (-1));
86 idx, name, d->d_size);
96 idx, elf_errmsg (-1));
101 idx, name, d->d_size);
104 printf ("%zd: %s, NOT compressed\n", idx, name);
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DCharacterIteratorWrapper.java146 int idx = iterator.getIndex()+delta;
148 if(idx < 0) {
149 idx = 0;
150 } else if(idx > length) {
151 idx = length;
153 return iterator.setIndex(idx);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DCharacterIteratorWrapper.java144 int idx = iterator.getIndex()+delta;
146 if(idx < 0) {
147 idx = 0;
148 } else if(idx > length) {
149 idx = length;
151 return iterator.setIndex(idx);
/external/libnl/src/
H A Dnf-monitor.c41 int i, idx; local
69 for (idx = 1; argc > idx; idx++) {
71 if (strcmp(argv[idx], groups[i].gr_name))
84 argv[idx]);
/external/swiftshader/third_party/LLVM/lib/DebugInfo/
H A DDWARFDebugAranges.h73 const Range *rangeAtIndex(uint32_t idx) const {
74 if (idx < Aranges.size())
75 return &Aranges[idx];
83 uint32_t offsetAtIndex(uint32_t idx) const {
84 if (idx < Aranges.size())
85 return Aranges[idx].Offset;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRRuleStack.h60 - (void) insertObject:(ANTLRHashRule *)aHashRule atIndex:(NSInteger)idx;
61 - (ANTLRHashRule *)objectAtIndex:(NSInteger)idx;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRRuleStack.h60 - (void) insertObject:(ANTLRHashRule *)aHashRule atIndex:(NSInteger)idx;
61 - (ANTLRHashRule *)objectAtIndex:(NSInteger)idx;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRRuleStack.h60 - (void) insertObject:(ANTLRHashRule *)aHashRule atIndex:(NSInteger)idx;
61 - (ANTLRHashRule *)objectAtIndex:(NSInteger)idx;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRRuleStack.h60 - (void) insertObject:(ANTLRHashRule *)aHashRule atIndex:(NSInteger)idx;
61 - (ANTLRHashRule *)objectAtIndex:(NSInteger)idx;
/external/boringssl/src/crypto/x509/
H A Dx509_trs.c117 int idx; local
128 idx = X509_TRUST_get_by_id(id);
129 if (idx == -1)
131 pt = X509_TRUST_get0(idx);
142 X509_TRUST *X509_TRUST_get0(int idx) argument
144 if (idx < 0)
146 if (idx < (int)X509_TRUST_COUNT)
147 return trstandard + idx;
148 return sk_X509_TRUST_value(trtable, idx - X509_TRUST_COUNT);
154 size_t idx; local
180 int idx; local
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_debugging.cc83 int __tsan_get_report_stack(void *report, uptr idx, void **trace, argument
86 CHECK_LT(idx, rep->stacks.Size());
87 ReportStack *stack = rep->stacks[idx];
93 int __tsan_get_report_mop(void *report, uptr idx, int *tid, void **addr, argument
97 CHECK_LT(idx, rep->mops.Size());
98 ReportMop *mop = rep->mops[idx];
109 int __tsan_get_report_loc(void *report, uptr idx, const char **type, argument
114 CHECK_LT(idx, rep->locs.Size());
115 ReportLocation *loc = rep->locs[idx];
128 int __tsan_get_report_mutex(void *report, uptr idx, upt argument
141 __tsan_get_report_thread(void *report, uptr idx, int *tid, uptr *os_id, int *running, const char **name, int *parent_tid, void **trace, uptr trace_size) argument
157 __tsan_get_report_unique_tid(void *report, uptr idx, int *tid) argument
[all...]
/external/compiler-rt/test/asan/TestCases/
H A Dstack-buffer-overflow-with-position.cc22 int idx = atoi(argv[1]); local
28 char *p = AAA + idx;
/external/freetype/src/sfnt/
H A Dttpost.c209 FT_Int idx; local
212 idx = glyph_indices[n];
213 if ( idx >= 258 )
215 idx -= 257;
216 if ( idx > num_names )
217 num_names = (FT_UShort)idx;
348 FT_Long idx = (FT_Long)n + offset_table[n]; local
351 if ( idx < 0 || idx > num_glyphs )
470 /* idx
[all...]
/external/freetype/src/truetype/
H A Dttgload.h39 FT_UInt idx,
45 FT_UInt idx,
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/
H A Dgen_archrast.py47 def parse_event_fields(lines, idx, event_dict):
56 while not end_of_event and idx < len(lines):
57 line = lines[idx].rstrip()
58 idx += 1
73 return idx
75 def parse_enums(lines, idx, event_dict):
81 while not end_of_enum and idx < len(lines):
82 line = lines[idx].rstrip()
83 idx += 1
96 return idx
[all...]
/external/pdfium/third_party/freetype/src/sfnt/
H A Dttpost.c209 FT_Int idx; local
212 idx = glyph_indices[n];
213 if ( idx >= 258 )
215 idx -= 257;
216 if ( idx > num_names )
217 num_names = (FT_UShort)idx;
346 FT_Long idx = (FT_Long)n + offset_table[n]; local
349 if ( idx < 0 || idx > num_glyphs )
468 /* idx
[all...]
/external/pdfium/third_party/freetype/src/truetype/
H A Dttgload.h39 FT_UInt idx,
45 FT_UInt idx,
/external/python/cpython2/Mac/IDLE/
H A Didlemain.py65 for idx, value in enumerate(sys.argv):
67 del sys.argv[idx]
/external/toybox/toys/pending/
H A Dvi.c47 printf("%.*s\n", (int)TT.ls->idx[i].len, (char *)TT.ls->idx[i].ptr);

Completed in 781 milliseconds

1234567891011>>