Searched refs:offs (Results 1 - 25 of 42) sorted by relevance

12

/external/astl/src/
H A Dios_pos_types.cpp34 fpos& fpos::operator+=(streamoff offs) { argument
35 const streamoff new_offs = mOffs + offs;
36 if (offs > 0) {
48 fpos fpos::operator+(streamoff offs) const {
50 pos += offs;
54 fpos fpos::operator-(streamoff offs) const {
56 pos -= offs;
/external/astl/include/
H A Dios_pos_types.h51 fpos(streamoff offs) : mOffs(offs) { } argument
60 fpos& operator+=(streamoff offs);
61 fpos& operator-=(streamoff offs) { argument
62 return operator+=(-offs);
65 fpos operator+(streamoff offs) const;
66 fpos operator-(streamoff offs) const;
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
H A Dgenlingware.pl273 $offs = 0;
284 $offs += print_offs(@svoxheader);
286 print "offset after svoxheader: $offs\n";
299 #fill should make the whole header 4-byte aligned, i.e. the current offs
301 $fill = ($offs + 2 + $len) % 4;
308 $offs += &print_uint16($len); #write little-endian 16-bit cardinal
309 print "offset after length of header: $offs\n";
312 $offs += &print_uint8(@fields+0);
313 print "offset after number of fields: $offs\n";
316 $offs
[all...]
/external/svox/pico/lib/
H A Dpicokfst.c148 picoos_int32 offs; local
169 BytesToNum(kfst->fstStream,& curpos,& offs);
170 kfst->alphaHashTabPos = kfst->hdrLen + offs;
172 BytesToNum(kfst->fstStream,& curpos,& offs);
173 kfst->transTabPos = kfst->hdrLen + offs;
174 BytesToNum(kfst->fstStream,& curpos,& offs);
175 kfst->inEpsStateTabPos = kfst->hdrLen + offs;
176 BytesToNum(kfst->fstStream,& curpos,& offs);
177 kfst->accStateTabPos = kfst->hdrLen + offs;
276 picoos_int32 offs; local
367 picoos_int32 offs; local
[all...]
/external/clang/include/clang/Edit/
H A DFileOffset.h24 FileOffset(FileID fid, unsigned offs) : FID(fid), Offs(offs) { } argument
/external/zlib/src/
H A Dinftrees.c59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local
141 offs[1] = 0;
143 offs[len + 1] = offs[len] + count[len];
147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
/external/elfutils/libdwfl/
H A Ddwfl_module_getdwarf.c286 GElf_Addr addrs[n], GElf_Off offs[n])
295 if (offs[j] == 0
299 offs[j] = addrs[j] - phdr->p_vaddr + phdr->p_offset;
379 GElf_Off offs[i_max] = { 0, }; local
380 find_offsets (mod->main.elf, ehdr, i_max, addrs, offs);
383 if (offs[i_hash] != 0)
389 offs[i_hash] + entsz, entsz,
397 if (offs[i_gnu_hash] != 0 && mod->syments == 0)
409 data = elf_getdata_rawchunk (mod->main.elf, offs[i_gnu_hash],
416 GElf_Off buckets_at = (offs[i_gnu_has
285 find_offsets(Elf *elf, const GElf_Ehdr *ehdr, size_t n, GElf_Addr addrs[n], GElf_Off offs[n]) argument
[all...]
/external/kernel-headers/original/linux/
H A Dmsm_hw3d.h49 int get_msm_hw3d_file(int fd, uint32_t *offs, unsigned long *pbase,
/external/kernel-headers/original/linux/mtd/
H A Dbbm.h27 * @offs: offset of the pattern in the oob area of the page
47 int offs; member in struct:nand_bbt_descr
H A Dnand.h448 * @offs: offset of the pattern in the oob area of the page
468 int offs; member in struct:nand_bbt_descr
512 extern int nand_update_bbt(struct mtd_info *mtd, loff_t offs);
514 extern int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt);
/external/qemu/distrib/zlib-1.2.3/
H A Dinftrees.c59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local
141 offs[1] = 0;
143 offs[len + 1] = offs[len] + count[len];
147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
/external/zlib/src/contrib/blast/
H A Dblast.c190 short offs[MAXBITS+1]; /* offsets in symbol table for each length */ local
222 offs[1] = 0;
224 offs[len + 1] = offs[len] + h->count[len];
232 h->symbol[offs[length[symbol]]++] = symbol;
/external/zlib/src/contrib/infback9/
H A Dinftree9.c59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local
135 offs[1] = 0;
137 offs[len + 1] = offs[len] + count[len];
141 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
/external/clang/lib/Edit/
H A DEditedSource.cpp243 StringRef text, FileOffset offs, unsigned len,
245 assert(!offs.getFID().isInvalid());
246 SourceLocation Loc = SM.getLocForStartOfFile(offs.getFID());
247 Loc = Loc.getLocWithOffset(offs.getOffset());
280 FileOffset offs = I->first; local
282 assert(offs >= CurEnd);
284 if (offs == CurEnd) {
292 CurOffs = offs;
242 applyRewrite(EditsReceiver &receiver, StringRef text, FileOffset offs, unsigned len, const SourceManager &SM) argument
H A DCommit.cpp220 bool Commit::canInsert(SourceLocation loc, FileOffset &offs) { argument
241 offs = FileOffset(locInfo.first, locInfo.second);
242 return canInsertInOffset(loc, offs);
245 bool Commit::canInsertAfterToken(SourceLocation loc, FileOffset &offs, argument
276 offs = FileOffset(locInfo.first, locInfo.second);
277 return canInsertInOffset(loc, offs);
/external/libvpx/vp8/common/
H A Dduck_io.h102 int64_t duck_seek(int g_hndl, int64_t offs, int origin);
/external/zlib/src/contrib/puff/
H A Dpuff.c39 * - Simplify offs[] index in construct()
344 short offs[MAXBITS+1]; /* offsets in symbol table for each length */ local
364 offs[1] = 0;
366 offs[len + 1] = offs[len] + h->count[len];
374 h->symbol[offs[length[symbol]]++] = symbol;
/external/v8/src/
H A Ddisassembler.cc81 int offs = static_cast<int>(pc - code_->instruction_start()); local
83 if (0 <= offs && offs < code_->instruction_size()) {
84 OS::SNPrintF(v8_buffer_, "%d (%p)", offs, pc);
/external/clang/lib/Rewrite/Core/
H A DRewriter.cpp407 unsigned offs = Content->SourceLineCache[lineNo]; local
408 unsigned i = offs;
411 StringRef origIndent = MB.substr(offs, i-offs);
413 RB.InsertText(offs, indent, /*InsertAfter=*/false);
/external/valgrind/main/none/tests/ppc32/
H A Djm-insns.c5417 int i, offs, is_lwa=0; local
5426 offs = i * sizeof(HWord_t);
5431 patch_op_imm(&func_buf[0], offs>>2, 2, 14);
5433 patch_op_imm16(&func_buf[0], offs);
5447 name, offs, iargs[i], res, r14-base, flags, xer);
5454 offs = i * sizeof(HWord_t);
5458 patch_op_imm16(&func_buf[0], offs);
5472 name, offs, iargs[nb_iargs-1+i], res, r14-base, flags, xer);
5482 int i, offs; local
5487 offs
5512 int i, offs, k; local
5581 int i, offs, k; local
5834 int i, offs; local
5881 int i, offs; local
5925 int i, offs; local
5992 int i, offs; local
[all...]
/external/valgrind/main/none/tests/ppc64/
H A Djm-insns.c5417 int i, offs, is_lwa=0; local
5426 offs = i * sizeof(HWord_t);
5431 patch_op_imm(&func_buf[0], offs>>2, 2, 14);
5433 patch_op_imm16(&func_buf[0], offs);
5447 name, offs, iargs[i], res, r14-base, flags, xer);
5454 offs = i * sizeof(HWord_t);
5458 patch_op_imm16(&func_buf[0], offs);
5472 name, offs, iargs[nb_iargs-1+i], res, r14-base, flags, xer);
5482 int i, offs; local
5487 offs
5512 int i, offs, k; local
5581 int i, offs, k; local
5834 int i, offs; local
5881 int i, offs; local
5925 int i, offs; local
5992 int i, offs; local
[all...]
/external/linux-tools-perf/util/
H A Dprobe-finder.c417 static int die_get_data_member_location(Dwarf_Die *mb_die, Dwarf_Word *offs) argument
427 if (dwarf_formudata(&attr, offs) != 0) {
438 *offs = (Dwarf_Word)expr[0].number;
796 static struct probe_trace_arg_ref *alloc_trace_arg_ref(long offs) argument
801 ref->offset = offs;
817 Dwarf_Word offs = 0; local
843 tvar->ref = alloc_trace_arg_ref((long)offs);
854 offs = op->number;
860 offs += op->number;
866 offs
1003 Dwarf_Word offs; local
[all...]
/external/icu4c/test/cintltst/
H A Dncnvtst.c1017 int32_t *offs=0; local
1040 offs=offsetBuffer;
1046 expectOffsets ? offs : NULL,
1107 int32_t *offs=0; local
1133 offs=offsetBuffer;
1142 expectOffsets ? offs : NULL,
1205 int32_t *offs; local
1243 offs = junokout;
1278 offs, local
1379 int32_t *offs; local
[all...]
H A Dncnvfbts.c141 int32_t *offs; local
179 offs = junokout;
213 checkOffsets ? offs : NULL,
304 int32_t *offs; local
337 offs = junokout;
376 checkOffsets ? offs : NULL,
/external/chromium/base/
H A Dstring_util.cc718 for (typename StringType::size_type offs(str->find(find_this, start_offset));
719 offs != StringType::npos; offs = str->find(find_this, offs)) {
720 str->replace(offs, find_this.length(), replace_with);
721 offs += replace_with.length();

Completed in 702 milliseconds

12