HomeSort by relevance Sort by last modified time
    Searched refs:idx (Results 51 - 75 of 1508) sorted by null

1 23 4 5 6 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MemberIdsSection.java 37 int idx = 0; local
40 ((MemberIdItem) i).setIndex(idx);
41 idx++;
  /external/elfutils/libdw/
dwarf_onearange.c 59 dwarf_onearange (Dwarf_Aranges *aranges, size_t idx)
64 if (idx >= aranges->naranges)
70 return &aranges->info[idx];
dwarf_onesrcline.c 59 dwarf_onesrcline (Dwarf_Lines *lines, size_t idx)
64 if (idx >= lines->nlines)
70 return &lines->info[idx];
dwarf_getsrc_die.c 72 size_t idx = (l + u) / 2; local
73 if (addr < lines->info[idx].addr)
74 u = idx;
75 else if (addr > lines->info[idx].addr || lines->info[idx].end_sequence)
76 l = idx + 1;
78 return &lines->info[idx];
  /dalvik/dexgen/src/com/android/dexgen/util/
Bits.java 55 * @param idx {@code >= 0, < getMax(set);} which bit
58 public static boolean get(int[] bits, int idx) {
59 int arrayIdx = idx >> 5;
60 int bit = 1 << (idx & 0x1f);
68 * @param idx {@code >= 0, < getMax(set);} which bit
71 public static void set(int[] bits, int idx, boolean value) {
72 int arrayIdx = idx >> 5;
73 int bit = 1 << (idx & 0x1f);
86 * @param idx {@code >= 0, < getMax(set);} which bit
88 public static void set(int[] bits, int idx) {
153 int idx = findFirst(bits, start); local
    [all...]
  /dalvik/dx/src/com/android/dx/util/
Bits.java 55 * @param idx {@code >= 0, < getMax(set);} which bit
58 public static boolean get(int[] bits, int idx) {
59 int arrayIdx = idx >> 5;
60 int bit = 1 << (idx & 0x1f);
68 * @param idx {@code >= 0, < getMax(set);} which bit
71 public static void set(int[] bits, int idx, boolean value) {
72 int arrayIdx = idx >> 5;
73 int bit = 1 << (idx & 0x1f);
86 * @param idx {@code >= 0, < getMax(set);} which bit
88 public static void set(int[] bits, int idx) {
153 int idx = findFirst(bits, start); local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
Bits.java 55 * @param idx {@code >= 0, < getMax(set);} which bit
58 public static boolean get(int[] bits, int idx) {
59 int arrayIdx = idx >> 5;
60 int bit = 1 << (idx & 0x1f);
68 * @param idx {@code >= 0, < getMax(set);} which bit
71 public static void set(int[] bits, int idx, boolean value) {
72 int arrayIdx = idx >> 5;
73 int bit = 1 << (idx & 0x1f);
86 * @param idx {@code >= 0, < getMax(set);} which bit
88 public static void set(int[] bits, int idx) {
153 int idx = findFirst(bits, start); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/scripts/
Fingerprints.js 4 var idx=document.URL.indexOf("php?");
5 if (idx==-1) {
8 window.open(document.URL.substring(0,idx)+"php?fp_type="+type, "_self");
13 var idx=document.URL.indexOf("?");
15 if (idx != -1) {
16 var typeStr=document.URL.substring(idx+1, document.URL.length);
17 idx=typeStr.indexOf("=");
18 if (idx != -1) {
19 var ch=typeStr.substring(idx+1, idx+2
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/util/
Tokenizer.java 44 int idx = source.indexOf(delimiter, nextfield); local
45 if (idx == -1)
46 idx = source.length();
47 list[i] = source.substring(nextfield, idx);
48 nextfield = idx + 1;
  /external/linux-tools-perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
Core.py 37 for idx in keys:
38 if not value and not idx:
39 string += flag_fields[event_name][field_name]['values'][idx]
41 if idx and (value & idx) == idx:
44 string += flag_fields[event_name][field_name]['values'][idx]
46 value &= ~idx
56 for idx in keys:
57 if not value and not idx
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/input/
CharSequenceReader.java 34 private int idx; field in class:CharSequenceReader
50 idx = 0;
60 mark = idx;
79 if (idx >= charSequence.length()) {
82 return charSequence.charAt(idx++);
96 if (idx >= charSequence.length()) {
123 idx = mark;
137 if (idx >= charSequence.length()) {
140 int dest = (int)Math.min(charSequence.length(), (idx + n));
141 int count = dest - idx;
    [all...]
  /external/elfutils/lib/
dynamicsizehash.c 74 size_t idx = 1 + hval % htab->size; local
76 if (htab->table[idx].hashval != 0)
80 if (htab->table[idx].hashval == hval
81 && COMPARE (htab->table[idx].data, val) == 0)
82 return idx;
89 if (idx <= hash)
90 idx = htab->size + idx - hash;
92 idx -= hash;
95 if (htab->table[idx].hashval == hva
241 size_t idx; local
268 size_t idx; local
291 size_t idx; local
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
ThermalErodeFilter.java 63 int idx = y * workSize + x; local
64 ga[idx] += sa[idx];
65 sa[idx] = 0;
72 if (idx + idxrel[j] > 0 && idx + idxrel[j] < ga.length) {
73 float dj = ga[idx] - ga[idx + idxrel[j]];
87 if (d > ga[idx] + sa[idx]) {
    [all...]
  /external/ipsec-tools/src/racoon/
policy.h 112 #define KEY_SETSECSPIDX(_dir, s, d, ps, pd, ulp, _priority, _created, idx) \
114 memset((idx), 0, sizeof(struct policyindex)); \
115 (idx)->dir = (_dir); \
116 (idx)->prefs = (ps); \
117 (idx)->prefd = (pd); \
118 (idx)->ul_proto = (ulp); \
119 (idx)->priority = (_priority); \
120 (idx)->created = (_created); \
121 memcpy(&(idx)->src, (s), sysdep_sa_len((struct sockaddr *)(s))); \
122 memcpy(&(idx)->dst, (d), sysdep_sa_len((struct sockaddr *)(d)));
    [all...]
  /external/elfutils/src/
xelf.h 63 # define xelf_getphdr(elf, idx, name) name = elf32_getphdr (elf) + idx
64 # define xelf_getphdr_ptr(elf, idx, name) name = elf32_getphdr (elf) + idx
65 # define xelf_update_phdr(elf, idx, phdr) \
66 /* nothing */ ((void) (elf), (void) (idx), (void) (phdr), 1)
76 # define xelf_getsym(data, idx, name) \
77 name = &((Elf32_Sym *) (data)->d_buf)[idx]
78 # define xelf_getsym_ptr(data, idx, name) \
79 name = &((Elf32_Sym *) (data)->d_buf)[idx]
    [all...]
  /external/chromium/chrome/browser/importer/
mork_reader.cc 129 size_t idx = 0; local
131 while (idx < len && line[idx] == ' ')
132 ++idx;
133 if (idx >= len)
137 if (StartsWithASCII(&line[idx], "< <(a=c)>", true)) {
140 ParseMap(line, idx, &column_name_map);
155 } else if (StartsWithASCII(&line[idx], "<(", true)) {
157 ParseMap(line, idx, &value_map_);
158 } else if (line[idx] == '{' || line[idx] == '[')
180 size_t idx = start_index; local
258 size_t idx = start_index; local
    [all...]
  /dalvik/opcode-gen/
opcode-gen.awk 286 function defineOpcode(line, count, parts, idx) {
287 # locals: count, parts, idx
290 idx = parseHex(parts[1]);
291 if (idx < 0) return -1;
294 hex[idx] = parts[1];
295 name[idx] = parts[2];
296 format[idx] = parts[3];
297 hasResult[idx] = (parts[4] == "n") ? "false" : "true";
298 indexType[idx] = parts[5];
299 flags[idx] = parts[6]
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
fixmap_32.h 45 #define set_fixmap(idx, phys) __set_fixmap(idx, phys, PAGE_KERNEL)
46 #define set_fixmap_nocache(idx, phys) __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
47 #define clear_fixmap(idx) __set_fixmap(idx, 0, __pgprot(0))
  /development/ndk/platforms/android-9/arch-x86/include/asm/
fixmap_32.h 45 #define set_fixmap(idx, phys) __set_fixmap(idx, phys, PAGE_KERNEL)
46 #define set_fixmap_nocache(idx, phys) __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
47 #define clear_fixmap(idx) __set_fixmap(idx, 0, __pgprot(0))
  /external/iproute2/lib/
ll_map.c 91 const char *ll_idx_n2a(unsigned idx, char *buf)
95 if (idx == 0)
97 for (im = idxmap[idx&0xF]; im; im = im->next)
98 if (im->index == idx)
100 snprintf(buf, 16, "if%d", idx);
105 const char *ll_index_to_name(unsigned idx)
109 return ll_idx_n2a(idx, nbuf);
112 int ll_index_to_type(unsigned idx)
116 if (idx == 0)
118 for (im = idxmap[idx&0xF]; im; im = im->next
164 unsigned idx; local
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFAbbreviationDeclaration.h 35 uint16_t getAttrByIndex(uint32_t idx) const {
36 return Attributes.size() > idx ? Attributes[idx].getAttribute() : 0;
38 uint16_t getFormByIndex(uint32_t idx) const {
39 return Attributes.size() > idx ? Attributes[idx].getForm() : 0;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
fixmap_32.h 38 #define set_fixmap(idx, phys) __set_fixmap(idx, phys, PAGE_KERNEL)
40 #define set_fixmap_nocache(idx, phys) __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
42 #define clear_fixmap(idx) __set_fixmap(idx, 0, __pgprot(0))
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
fixmap_32.h 38 #define set_fixmap(idx, phys) __set_fixmap(idx, phys, PAGE_KERNEL)
40 #define set_fixmap_nocache(idx, phys) __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
42 #define clear_fixmap(idx) __set_fixmap(idx, 0, __pgprot(0))
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/
fixmap_32.h 38 #define set_fixmap(idx, phys) __set_fixmap(idx, phys, PAGE_KERNEL)
40 #define set_fixmap_nocache(idx, phys) __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
42 #define clear_fixmap(idx) __set_fixmap(idx, 0, __pgprot(0))
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/
fixmap_32.h 38 #define set_fixmap(idx, phys) __set_fixmap(idx, phys, PAGE_KERNEL)
40 #define set_fixmap_nocache(idx, phys) __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
42 #define clear_fixmap(idx) __set_fixmap(idx, 0, __pgprot(0))

Completed in 1431 milliseconds

1 23 4 5 6 7 8 91011>>