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

1 2

  /external/elfutils/libelf/
gelf_update_lib.c 30 gelf_update_lib (data, ndx, src)
32 int ndx;
38 if (unlikely (ndx < 0))
57 if (unlikely ((ndx + 1) * sizeof (Elf64_Lib) > data_scn->d.d_size))
61 ((Elf64_Lib *) data_scn->d.d_buf)[ndx] = *src;
gelf_update_move.c 30 gelf_update_move (data, ndx, src)
32 int ndx;
45 if (unlikely (ndx < 0)
46 || unlikely ((ndx + 1) * sizeof (GElf_Move) > data_scn->d.d_size))
61 ((GElf_Move *) data_scn->d.d_buf)[ndx] = *src;
gelf_update_syminfo.c 30 gelf_update_syminfo (data, ndx, src)
32 int ndx;
42 if (unlikely (ndx < 0))
63 if (unlikely ((ndx + 1) * sizeof (GElf_Syminfo) > data_scn->d.d_size))
69 ((GElf_Syminfo *) data_scn->d.d_buf)[ndx] = *src;
gelf_update_versym.c 30 gelf_update_versym (data, ndx, src)
32 int ndx;
45 if (unlikely (ndx < 0)
46 || unlikely ((ndx + 1) * sizeof (GElf_Versym) > data_scn->d.d_size))
61 ((GElf_Versym *) data_scn->d.d_buf)[ndx] = *src;
gelf_getrel.c 29 gelf_getrel (data, ndx, dst)
31 int ndx;
41 if (unlikely (ndx < 0))
63 if (unlikely ((ndx + 1) * sizeof (Elf32_Rel) > data_scn->d.d_size))
70 Elf32_Rel *src = &((Elf32_Rel *) data_scn->d.d_buf)[ndx];
83 if (unlikely ((ndx + 1) * sizeof (Elf64_Rel) > data_scn->d.d_size))
89 result = memcpy (dst, &((Elf64_Rel *) data_scn->d.d_buf)[ndx],
gelf_getrela.c 29 gelf_getrela (data, ndx, dst)
31 int ndx;
41 if (unlikely (ndx < 0))
63 if (unlikely ((ndx + 1) * sizeof (Elf32_Rela) > data_scn->d.d_size))
70 Elf32_Rela *src = &((Elf32_Rela *) data_scn->d.d_buf)[ndx];
84 if (unlikely ((ndx + 1) * sizeof (Elf64_Rela) > data_scn->d.d_size))
90 result = memcpy (dst, &((Elf64_Rela *) data_scn->d.d_buf)[ndx],
gelf_update_dyn.c 29 gelf_update_dyn (data, ndx, src)
31 int ndx;
41 if (unlikely (ndx < 0))
72 if (unlikely ((ndx + 1) * sizeof (Elf32_Dyn) > data_scn->d.d_size))
78 dyn = &((Elf32_Dyn *) data_scn->d.d_buf)[ndx];
86 if (unlikely ((ndx + 1) * sizeof (Elf64_Dyn) > data_scn->d.d_size))
92 ((Elf64_Dyn *) data_scn->d.d_buf)[ndx] = *src;
gelf_update_sym.c 30 gelf_update_sym (data, ndx, src)
32 int ndx;
42 if (unlikely (ndx < 0))
72 if (unlikely ((ndx + 1) * sizeof (Elf32_Sym) > data_scn->d.d_size))
78 sym = &((Elf32_Sym *) data_scn->d.d_buf)[ndx];
95 if (unlikely ((ndx + 1) * sizeof (Elf64_Sym) > data_scn->d.d_size))
101 ((Elf64_Sym *) data_scn->d.d_buf)[ndx] = *src;
gelf_update_symshndx.c 31 gelf_update_symshndx (symdata, shndxdata, ndx, src, srcshndx)
34 int ndx;
47 if (unlikely (ndx < 0))
69 if (unlikely ((ndx + 1) * sizeof (Elf32_Word) > shndxdata_scn->d.d_size))
75 shndx = &((Elf32_Word *) shndxdata_scn->d.d_buf)[ndx];
98 if (unlikely ((ndx + 1) * sizeof (Elf32_Sym) > symdata_scn->d.d_size))
104 sym = &((Elf32_Sym *) symdata_scn->d.d_buf)[ndx];
121 if (unlikely ((ndx + 1) * sizeof (Elf64_Sym) > symdata_scn->d.d_size))
127 ((Elf64_Sym *) symdata_scn->d.d_buf)[ndx] = *src;
gelf_getlib.c 30 gelf_getlib (data, ndx, dst)
32 int ndx;
56 if (unlikely ((ndx + 1) * sizeof (GElf_Lib) > data->d_size))
60 *dst = ((GElf_Lib *) data->d_buf)[ndx];
gelf_getmove.c 30 gelf_getmove (data, ndx, dst)
32 int ndx;
53 if (unlikely ((ndx + 1) * sizeof (GElf_Move) > data->d_size))
62 *dst = ((GElf_Move *) data->d_buf)[ndx];
gelf_getsyminfo.c 30 gelf_getsyminfo (data, ndx, dst)
32 int ndx;
54 if (unlikely ((ndx + 1) * sizeof (GElf_Syminfo) > data->d_size))
60 *dst = ((GElf_Syminfo *) data->d_buf)[ndx];
gelf_getversym.c 30 gelf_getversym (data, ndx, dst)
32 int ndx;
62 if (unlikely ((ndx + 1) * sizeof (GElf_Versym) > data->d_size))
69 *dst = ((GElf_Versym *) data->d_buf)[ndx];
gelf_getsymshndx.c 31 gelf_getsymshndx (symdata, shndxdata, ndx, dst, dstshndx)
34 int ndx;
60 if (unlikely ((ndx + 1) * sizeof (Elf32_Word) > shndxdata_scn->d.d_size))
66 shndx = ((Elf32_Word *) shndxdata_scn->d.d_buf)[ndx];
80 if (unlikely ((ndx + 1) * sizeof (Elf32_Sym) > symdata->d_size))
86 src = &((Elf32_Sym *) symdata->d_buf)[ndx];
109 if (unlikely ((ndx + 1) * sizeof (GElf_Sym) > symdata->d_size))
115 *dst = ((GElf_Sym *) symdata->d_buf)[ndx];
gelf_getdyn.c 30 gelf_getdyn (data, ndx, dst)
32 int ndx;
63 if (unlikely ((ndx + 1) * sizeof (Elf32_Dyn) > data_scn->d.d_size))
69 src = &((Elf32_Dyn *) data_scn->d.d_buf)[ndx];
84 if (unlikely ((ndx + 1) * sizeof (GElf_Dyn) > data_scn->d.d_size))
90 *dst = ((GElf_Dyn *) data_scn->d.d_buf)[ndx];
gelf_getphdr.c 29 gelf_getphdr (elf, ndx, dst)
31 int ndx;
67 if (ndx >= elf->state.elf32.ehdr->e_phnum)
77 phdr += ndx;
103 if (ndx >= elf->state.elf64.ehdr->e_phnum)
110 result = memcpy (dst, phdr + ndx, sizeof (GElf_Phdr));
gelf_getsym.c 30 gelf_getsym (data, ndx, dst)
32 int ndx;
60 if (unlikely ((ndx + 1) * sizeof (Elf32_Sym) > data->d_size))
66 src = &((Elf32_Sym *) data->d_buf)[ndx];
89 if (unlikely ((ndx + 1) * sizeof (GElf_Sym) > data->d_size))
95 *dst = ((GElf_Sym *) data->d_buf)[ndx];
gelf_update_rel.c 29 gelf_update_rel (Elf_Data *dst, int ndx, GElf_Rel *src)
38 if (unlikely (ndx < 0))
69 if (unlikely ((ndx + 1) * sizeof (Elf32_Rel) > data_scn->d.d_size))
75 rel = &((Elf32_Rel *) data_scn->d.d_buf)[ndx];
84 if (unlikely ((ndx + 1) * sizeof (Elf64_Rel) > data_scn->d.d_size))
90 ((Elf64_Rel *) data_scn->d.d_buf)[ndx] = *src;
gelf_update_rela.c 29 gelf_update_rela (Elf_Data *dst, int ndx, GElf_Rela *src)
38 if (unlikely (ndx < 0))
71 if (unlikely ((ndx + 1) * sizeof (Elf32_Rela) > data_scn->d.d_size))
77 rel = &((Elf32_Rela *) data_scn->d.d_buf)[ndx];
87 if (unlikely ((ndx + 1) * sizeof (Elf64_Rela) > data_scn->d.d_size))
93 ((Elf64_Rela *) data_scn->d.d_buf)[ndx] = *src;
gelf_update_phdr.c 29 gelf_update_phdr (Elf *elf, int ndx, GElf_Phdr *src)
71 if (unlikely (ndx >= elf->state.elf32.ehdr->e_phnum))
78 phdr += ndx;
104 if (unlikely (ndx >= elf->state.elf64.ehdr->e_phnum))
111 memcpy (phdr + ndx, src, sizeof (Elf64_Phdr));
  /system/core/sh/
syntax.c 12 #define ndx(ch) (ch + 1 - CHAR_MIN) macro
13 #define set(ch, val) [ndx(ch)] = val,
14 #define set_range(s, e, val) [ndx(s) ... ndx(e)] = val,
  /external/webkit/WebCore/platform/graphics/
MediaPlayer.cpp 180 for (unsigned ndx = 0; ndx < count; ndx++) {
181 MediaPlayer::SupportsType engineSupport = engines[ndx]->supportsTypeAndCodecs(type, codecs);
184 engine = engines[ndx];
513 for (unsigned ndx = 0; ndx < count; ndx++)
514 engines[ndx]->getSupportedTypes(types);
  /external/webkit/WebCore/platform/
MIMETypeRegistry.cpp 328 for (unsigned ndx = 0; ndx < numPairs; ++ndx)
329 mediaMIMETypeForExtensionMap->set(pairs[ndx].extension, pairs[ndx].type);
  /external/elfutils/libasm/
asm_end.c 177 Elf32_Word ndx; local
199 ndx = SHN_ABS;
201 ndx = SHN_COMMON;
202 else if (unlikely ((ndx = elf_ndxscn (scn)) >= SHN_LORESERVE))
247 xshndx[ptr] = ndx;
250 ndx = SHN_XINDEX;
252 syment.st_shndx = ndx;
  /external/chromium/net/third_party/nss/ssl/
sslsnce.c 379 PRUint32 ndx = sharedCache->nextCertCacheEntry; local
382 cache->certCacheData[ndx] = cce;
385 sce->u.ssl3.certIndex = ndx;
389 (ndx + 1) % cache->numCertCacheEntries;
627 PRUint32 ndx = cache->sidCacheSets[setNum].next; local
636 ndx = (ndx - 1) % SID_CACHE_ENTRIES_PER_SET;
637 sce = set + ndx;
808 PRUint32 ndx = set * SID_CACHE_ENTRIES_PER_SET + next; local
811 cache->sidCacheData[ndx] = sce
1585 PRUint32 ndx = (exchKeyType * SSL_NUM_WRAP_MECHS) + symWrapMechIndex; local
1841 PRUint32 ndx; local
    [all...]

Completed in 194 milliseconds

1 2