/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/ |
D | genlingware.pl | 273 $offs = 0; 284 $offs += print_offs(@svoxheader); 286 print "offset after svoxheader: $offs\n"; 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 += print_offs($fieldheader); 317 print "offset after fields: $offs\n"; [all …]
|
/external/astl/src/ |
D | ios_pos_types.cpp | 34 fpos& fpos::operator+=(streamoff offs) { in operator +=() argument 35 const streamoff new_offs = mOffs + offs; in operator +=() 36 if (offs > 0) { in operator +=() 48 fpos fpos::operator+(streamoff offs) const { in operator +() 50 pos += offs; in operator +() 54 fpos fpos::operator-(streamoff offs) const { in operator -() 56 pos -= offs; in operator -()
|
/external/astl/include/ |
D | ios_pos_types.h | 51 fpos(streamoff offs) : mOffs(offs) { } in fpos() argument 60 fpos& operator+=(streamoff offs); 61 fpos& operator-=(streamoff offs) { 62 return operator+=(-offs); 65 fpos operator+(streamoff offs) const; 66 fpos operator-(streamoff offs) const;
|
/external/svox/pico/lib/ |
D | picokfst.c | 148 picoos_int32 offs; in kfstInitialize() local 169 BytesToNum(kfst->fstStream,& curpos,& offs); in kfstInitialize() 170 kfst->alphaHashTabPos = kfst->hdrLen + offs; in kfstInitialize() 172 BytesToNum(kfst->fstStream,& curpos,& offs); in kfstInitialize() 173 kfst->transTabPos = kfst->hdrLen + offs; in kfstInitialize() 174 BytesToNum(kfst->fstStream,& curpos,& offs); in kfstInitialize() 175 kfst->inEpsStateTabPos = kfst->hdrLen + offs; in kfstInitialize() 176 BytesToNum(kfst->fstStream,& curpos,& offs); in kfstInitialize() 177 kfst->accStateTabPos = kfst->hdrLen + offs; in kfstInitialize() 276 picoos_int32 offs; in picokfst_kfstStartPairSearch() local [all …]
|
/external/elfutils/libdwfl/ |
D | dwfl_module_getdwarf.c | 286 GElf_Addr addrs[n], GElf_Off offs[n]) in find_offsets() 295 if (offs[j] == 0 in find_offsets() 299 offs[j] = addrs[j] - phdr->p_vaddr + phdr->p_offset; in find_offsets() 379 GElf_Off offs[i_max] = { 0, }; in find_dynsym() local 380 find_offsets (mod->main.elf, ehdr, i_max, addrs, offs); in find_dynsym() 383 if (offs[i_hash] != 0) in find_dynsym() 389 offs[i_hash] + entsz, entsz, in find_dynsym() 397 if (offs[i_gnu_hash] != 0 && mod->syments == 0) in find_dynsym() 409 data = elf_getdata_rawchunk (mod->main.elf, offs[i_gnu_hash], in find_dynsym() 416 GElf_Off buckets_at = (offs[i_gnu_hash] + sizeof *header in find_dynsym() [all …]
|
/external/zlib/src/ |
D | inftrees.c | 59 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/infback9/ |
D | inftree9.c | 59 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/qemu/distrib/zlib-1.2.3/ |
D | inftrees.c | 59 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/clang/lib/Edit/ |
D | EditedSource.cpp | 243 StringRef text, FileOffset offs, unsigned len, in applyRewrite() argument 245 assert(!offs.getFID().isInvalid()); in applyRewrite() 246 SourceLocation Loc = SM.getLocForStartOfFile(offs.getFID()); in applyRewrite() 247 Loc = Loc.getLocWithOffset(offs.getOffset()); in applyRewrite() 280 FileOffset offs = I->first; in applyRewrites() local 282 assert(offs >= CurEnd); in applyRewrites() 284 if (offs == CurEnd) { in applyRewrites() 292 CurOffs = offs; in applyRewrites()
|
D | Commit.cpp | 220 bool Commit::canInsert(SourceLocation loc, FileOffset &offs) { in canInsert() argument 241 offs = FileOffset(locInfo.first, locInfo.second); in canInsert() 242 return canInsertInOffset(loc, offs); in canInsert() 245 bool Commit::canInsertAfterToken(SourceLocation loc, FileOffset &offs, in canInsertAfterToken() argument 276 offs = FileOffset(locInfo.first, locInfo.second); in canInsertAfterToken() 277 return canInsertInOffset(loc, offs); in canInsertAfterToken()
|
/external/zlib/src/contrib/blast/ |
D | blast.c | 190 short offs[MAXBITS+1]; /* offsets in symbol table for each length */ in construct() local 222 offs[1] = 0; in construct() 224 offs[len + 1] = offs[len] + h->count[len]; in construct() 232 h->symbol[offs[length[symbol]]++] = symbol; in construct()
|
/external/zlib/src/contrib/puff/ |
D | puff.c | 344 short offs[MAXBITS+1]; /* offsets in symbol table for each length */ in construct() local 364 offs[1] = 0; in construct() 366 offs[len + 1] = offs[len] + h->count[len]; in construct() 374 h->symbol[offs[length[symbol]]++] = symbol; in construct()
|
/external/clang/include/clang/Edit/ |
D | FileOffset.h | 24 FileOffset(FileID fid, unsigned offs) : FID(fid), Offs(offs) { } in FileOffset() argument
|
/external/valgrind/main/none/tests/ppc32/ |
D | jm-insns.c | 5417 int i, offs, is_lwa=0; in test_int_ld_one_reg_imm16() local 5426 offs = i * sizeof(HWord_t); in test_int_ld_one_reg_imm16() 5431 patch_op_imm(&func_buf[0], offs>>2, 2, 14); in test_int_ld_one_reg_imm16() 5433 patch_op_imm16(&func_buf[0], offs); in test_int_ld_one_reg_imm16() 5447 name, offs, iargs[i], res, r14-base, flags, xer); in test_int_ld_one_reg_imm16() 5454 offs = i * sizeof(HWord_t); in test_int_ld_one_reg_imm16() 5458 patch_op_imm16(&func_buf[0], offs); in test_int_ld_one_reg_imm16() 5472 name, offs, iargs[nb_iargs-1+i], res, r14-base, flags, xer); in test_int_ld_one_reg_imm16() 5482 int i, offs; in test_int_ld_two_regs() local 5487 offs = i * sizeof(HWord_t); in test_int_ld_two_regs() [all …]
|
/external/valgrind/main/none/tests/ppc64/ |
D | jm-insns.c | 5417 int i, offs, is_lwa=0; in test_int_ld_one_reg_imm16() local 5426 offs = i * sizeof(HWord_t); in test_int_ld_one_reg_imm16() 5431 patch_op_imm(&func_buf[0], offs>>2, 2, 14); in test_int_ld_one_reg_imm16() 5433 patch_op_imm16(&func_buf[0], offs); in test_int_ld_one_reg_imm16() 5447 name, offs, iargs[i], res, r14-base, flags, xer); in test_int_ld_one_reg_imm16() 5454 offs = i * sizeof(HWord_t); in test_int_ld_one_reg_imm16() 5458 patch_op_imm16(&func_buf[0], offs); in test_int_ld_one_reg_imm16() 5472 name, offs, iargs[nb_iargs-1+i], res, r14-base, flags, xer); in test_int_ld_one_reg_imm16() 5482 int i, offs; in test_int_ld_two_regs() local 5487 offs = i * sizeof(HWord_t); in test_int_ld_two_regs() [all …]
|
/external/icu4c/test/cintltst/ |
D | ncnvfbts.c | 141 int32_t *offs; in testConvertFromUnicode() local 179 offs = junokout; in testConvertFromUnicode() 213 checkOffsets ? offs : NULL, in testConvertFromUnicode() 304 int32_t *offs; in testConvertToUnicode() local 337 offs = junokout; in testConvertToUnicode() 376 checkOffsets ? offs : NULL, in testConvertToUnicode()
|
D | ncnvtst.c | 1017 int32_t *offs=0; in convertFromU() local 1040 offs=offsetBuffer; in convertFromU() 1046 expectOffsets ? offs : NULL, in convertFromU() 1107 int32_t *offs=0; in convertToU() local 1133 offs=offsetBuffer; in convertToU() 1142 expectOffsets ? offs : NULL, in convertToU() 1205 int32_t *offs; in testConvertFromU() local 1243 offs = junokout; in testConvertFromU() 1278 offs, in testConvertFromU() 1379 int32_t *offs; in testConvertToU() local [all …]
|
/external/v8/src/ |
D | disassembler.cc | 81 int offs = static_cast<int>(pc - code_->instruction_start()); in NameOfAddress() local 83 if (0 <= offs && offs < code_->instruction_size()) { in NameOfAddress() 84 OS::SNPrintF(v8_buffer_, "%d (%p)", offs, pc); in NameOfAddress()
|
/external/kernel-headers/original/linux/mtd/ |
D | nand.h | 468 int offs; member 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);
|
D | bbm.h | 47 int offs; member
|
/external/clang/lib/Rewrite/Core/ |
D | Rewriter.cpp | 407 unsigned offs = Content->SourceLineCache[lineNo]; in IncreaseIndentation() local 408 unsigned i = offs; in IncreaseIndentation() 411 StringRef origIndent = MB.substr(offs, i-offs); in IncreaseIndentation() 413 RB.InsertText(offs, indent, /*InsertAfter=*/false); in IncreaseIndentation()
|
/external/linux-tools-perf/util/ |
D | probe-finder.c | 417 static int die_get_data_member_location(Dwarf_Die *mb_die, Dwarf_Word *offs) in die_get_data_member_location() argument 427 if (dwarf_formudata(&attr, offs) != 0) { in die_get_data_member_location() 438 *offs = (Dwarf_Word)expr[0].number; in die_get_data_member_location() 796 static struct probe_trace_arg_ref *alloc_trace_arg_ref(long offs) in alloc_trace_arg_ref() argument 801 ref->offset = offs; in alloc_trace_arg_ref() 817 Dwarf_Word offs = 0; in convert_variable_location() local 843 tvar->ref = alloc_trace_arg_ref((long)offs); in convert_variable_location() 854 offs = op->number; in convert_variable_location() 860 offs += op->number; in convert_variable_location() 866 offs += op->number2; in convert_variable_location() [all …]
|
/external/kernel-headers/original/linux/ |
D | msm_hw3d.h | 49 int get_msm_hw3d_file(int fd, uint32_t *offs, unsigned long *pbase,
|
/external/libvpx/vp8/common/ |
D | duck_io.h | 102 int64_t duck_seek(int g_hndl, int64_t offs, int origin);
|
/external/v8/src/ia32/ |
D | assembler-ia32.cc | 1400 int offs = L->pos() - pc_offset(); in call() local 1401 ASSERT(offs <= 0); in call() 1404 emit(offs - long_size); in call() 1457 int offs = L->pos() - pc_offset(); in jmp() local 1458 ASSERT(offs <= 0); in jmp() 1459 if (is_int8(offs - short_size)) { in jmp() 1462 EMIT((offs - short_size) & 0xFF); in jmp() 1466 emit(offs - long_size); in jmp() 1508 int offs = L->pos() - pc_offset(); in j() local 1509 ASSERT(offs <= 0); in j() [all …]
|