Searched refs:ioff (Results 1 - 10 of 10) sorted by relevance

/external/valgrind/coregrind/m_debuginfo/
H A Dpriv_image.h151 struct { DiImage* img; DiOffT ioff; } member in struct:__anon24469
157 static inline DiCursor mk_DiCursor ( DiImage* img, DiOffT ioff ) {
158 return (DiCursor){img, ioff};
174 struct { DiImage* img; DiOffT ioff; DiOffT szB; } member in struct:__anon24470
181 static inline DiSlice mk_DiSlice ( DiImage* img, DiOffT ioff, DiOffT szB ) { argument
182 return (DiSlice){img, ioff, szB};
195 vg_assert(cur.ioff + size <= ML_(img_size)(cur.img));
196 return mk_DiSlice(cur.img, cur.ioff, size);
222 c.ioff = sl.ioff;
[all...]
H A Dreadmacho.c224 sli.ioff = arch.offset;
251 if (sli.ioff >= 0 && sli.ioff + sli.szB <= ML_(img_size)(sli.img)) {
277 vg_assert(sli.ioff >= 0);
279 vg_assert(sli.ioff + sli.szB <= ML_(img_size)(sli.img));
622 res.ioff = sect.offset;
646 DiOffT min_off = sli.ioff;
647 DiOffT max1_off = sli.ioff + sli.szB;
H A Dreadelf.c583 if (!ML_(img_valid)(escn_opd->img, escn_opd->ioff + offset_in_opd,
599 escn_opd->ioff + offset_in_opd, sizeof(fn_descr));
805 escn_symtab->ioff + i * sizeof(ElfXX_Sym), sizeof(sym));
806 DiOffT sym_name = escn_strtab->ioff + sym.st_name;
942 escn_symtab->ioff + i * sizeof(ElfXX_Sym), sizeof(sym));
943 DiOffT sym_name = escn_strtab->ioff + sym.st_name;
1475 ML_(img_get)(&chdr, s->img, s->ioff, sizeof(ElfXX_Chdr));
1478 s->ioff = ML_(img_mark_compressed_part)(s->img,
1479 s->ioff + sizeof(ElfXX_Chdr),
1487 ML_(img_get)(tmp, s->img, s->ioff, SIZE_OF_ZLIB_HEADE
[all...]
H A Dreaddwarf3.c173 DiOffT sli_next; // offset in underlying DiImage; must be >= sli.ioff
184 if (c->sli.ioff == DiOffT_INVALID) return False;
185 if (c->sli_next < c->sli.ioff) return False;
201 c->sli_next = c->sli.ioff + sli_initial_offset;
209 return c->sli_next >= c->sli.ioff + c->sli.szB;
214 return c->sli_next - c->sli.ioff;
217 c->sli_next = c->sli.ioff + pos;
227 return c->sli.ioff + c->sli.szB - c->sli_next;
244 if (c->sli_next + sizeof(UChar) > c->sli.ioff + c->sli.szB) {
256 if (c->sli_next + sizeof(UShort) > c->sli.ioff
[all...]
/external/libmicrohttpd/src/microhttpd/
H A Dpostprocessor.c834 size_t ioff; local
839 ioff = 0;
868 ioff++;
876 ioff++;
888 ioff += 2;
893 ioff++;
899 ioff++;
909 ioff++;
942 &ioff,
949 &ioff,
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
H A DCollationIteratorTest.java745 int ioff, noff = offsets.length;
748 ioff = 0;
756 if ( ioff < noff ) {
757 if ( offset != offsets[ioff] ) {
758 errln("Error: in locale " + localeString + ", expected CEIterator next()->getOffset " + offsets[ioff] + ", got " + offset);
759 //ioff = noff;
762 ioff++;
767 if ( ioff < noff ) {
773 ioff = noff;
780 if ( ioff >
[all...]
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationIteratorTest.java744 int ioff, noff = offsets.length;
747 ioff = 0;
755 if ( ioff < noff ) {
756 if ( offset != offsets[ioff] ) {
757 errln("Error: in locale " + localeString + ", expected CEIterator next()->getOffset " + offsets[ioff] + ", got " + offset);
758 //ioff = noff;
761 ioff++;
766 if ( ioff < noff ) {
772 ioff = noff;
779 if ( ioff >
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/search/
H A DSearchTest.java2167 int ioff, noff = offsets.length;
2171 ioff = 0;
2177 if ( ioff < noff ) {
2178 if ( offset != offsets[ioff] ) {
2179 errln("Error: in locale " + localeString + ", expected SearchIterator.next() " + offsets[ioff] + ", got " + offset);
2180 //ioff = noff;
2183 ioff++;
2188 if ( ioff < noff ) {
2193 ioff = noff;
2199 if ( ioff >
[all...]
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/search/
H A DSearchTest.java2166 int ioff, noff = offsets.length;
2170 ioff = 0;
2176 if ( ioff < noff ) {
2177 if ( offset != offsets[ioff] ) {
2178 errln("Error: in locale " + localeString + ", expected SearchIterator.next() " + offsets[ioff] + ", got " + offset);
2179 //ioff = noff;
2182 ioff++;
2187 if ( ioff < noff ) {
2192 ioff = noff;
2198 if ( ioff >
[all...]
/external/iproute2/tc/
H A Dtc_bpf.c1317 unsigned int ioff, rmap; local
1324 ioff = relo.r_offset / sizeof(struct bpf_insn);
1325 if (ioff >= num_insns ||
1326 insns[ioff].code != (BPF_LD | BPF_IMM | BPF_DW))
1342 data_insn->sec_name, ioff);
1344 insns[ioff].src_reg = BPF_PSEUDO_MAP_FD;
1345 insns[ioff].imm = ctx->map_fds[rmap];

Completed in 459 milliseconds