HomeSort by relevance Sort by last modified time
    Searched refs:offs (Results 101 - 125 of 349) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/jsfs/
js_fs_node.h 43 virtual Error GetDents(size_t offs,
  /external/chromium_org/ppapi/generators/
idl_generator.py 53 offs = opt.find('=')
54 if offs > 0:
55 options[opt[:offs]] = opt[offs+1:]
idl_diff.py 136 offs = line.find('//')
137 if offs == -1:
138 offs = line.find('/*')
139 if offs >-1:
140 line = line[:offs-1]
  /external/elfutils/0.153/libdwfl/
dwfl_module_getdwarf.c 625 OFFS[*] start out zero and remain zero if unresolved. */
628 GElf_Addr addrs[n], GElf_Off offs[n])
637 if (offs[j] == 0
641 offs[j] = addrs[j] - phdr->p_vaddr + phdr->p_offset;
725 GElf_Off offs[i_max] = { 0, }; local
726 find_offsets (mod->main.elf, phnum, i_max, addrs, offs);
729 if (offs[i_hash] != 0)
735 offs[i_hash] + entsz, entsz,
743 if (offs[i_gnu_hash] != 0 && mod->syments == 0)
755 data = elf_getdata_rawchunk (mod->main.elf, offs[i_gnu_hash]
    [all...]
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
http_fs_test.cc 115 attr.offs = 10;
122 attr.offs = 100;
145 attr.offs = 10;
152 attr.offs = 100;
166 attr.offs = 3;
229 attr.offs = size - 7;
236 attr.offs = size + 100;
  /art/compiler/utils/arm64/
assembler_arm64.h 114 void Store(FrameOffset offs, ManagedRegister src, size_t size) OVERRIDE;
130 void LoadRef(ManagedRegister dest, ManagedRegister base, MemberOffset offs) OVERRIDE;
131 void LoadRawPtr(ManagedRegister dest, ManagedRegister base, Offset offs) OVERRIDE;
132 void LoadRawPtrFromThread64(ManagedRegister dest, ThreadOffset<8> offs) OVERRIDE;
190 void JumpTo(ManagedRegister m_base, Offset offs, ManagedRegister m_scratch);
  /external/zlib/src/contrib/puff/
puff.c 39 * - Simplify offs[] index in construct()
345 short offs[MAXBITS+1]; /* offsets in symbol table for each length */ local
365 offs[1] = 0;
367 offs[len + 1] = offs[len] + h->count[len];
375 h->symbol[offs[length[symbol]]++] = symbol;
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/fusefs/
fuse_fs.cc 315 int result = fuse_ops_->read(path_.c_str(), cbuf, count, attr.offs, &info_);
337 path_.c_str(), static_cast<const char*>(buf), count, attr.offs, &info_);
373 Error DirFuseFsNode::GetDents(size_t offs,
396 path_.c_str(), &fill_info, &DirFuseFsNode::FillDirCallback, offs, &info_);
400 // If the fill function ever wrote an entry with |offs| != 0, then assume it
402 // buffers start with the entry at offset |offs|, so the call to
405 offs = 0;
409 error = getdents.GetDents(offs, pdir, count, out_bytes);
  /external/clang/lib/Edit/
Commit.cpp 48 FileOffset Offs;
49 if ((!afterToken && !canInsert(loc, Offs)) ||
50 ( afterToken && !canInsertAfterToken(loc, Offs, loc))) {
55 addInsert(loc, Offs, text, beforePreviousInsertions);
69 FileOffset Offs;
70 if ((!afterToken && !canInsert(loc, Offs)) ||
71 ( afterToken && !canInsertAfterToken(loc, Offs, loc))) {
82 addInsertFromRange(loc, Offs, RangeOffs, RangeLen, beforePreviousInsertions);
87 FileOffset Offs;
89 if (!canRemoveRange(range, Offs, Len))
    [all...]
  /art/compiler/utils/
assembler.cc 165 void Assembler::LoadRawPtrFromThread32(ManagedRegister dest, ThreadOffset<4> offs) {
169 void Assembler::LoadRawPtrFromThread64(ManagedRegister dest, ThreadOffset<8> offs) {
assembler.h 383 virtual void Store(FrameOffset offs, ManagedRegister src, size_t size) = 0;
415 virtual void LoadRef(ManagedRegister dest, ManagedRegister base, MemberOffset offs) = 0;
417 virtual void LoadRawPtr(ManagedRegister dest, ManagedRegister base, Offset offs) = 0;
419 virtual void LoadRawPtrFromThread32(ManagedRegister dest, ThreadOffset<4> offs);
420 virtual void LoadRawPtrFromThread64(ManagedRegister dest, ThreadOffset<8> offs);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
node.cc 87 Error Node::GetDents(size_t offs,
154 data.offs = offset;
node.h 62 virtual Error GetDents(size_t offs,
  /frameworks/native/cmds/servicemanager/
binder.c 45 binder_size_t *offs = (binder_size_t *)(uintptr_t)txn->data.ptr.offsets; local
50 fprintf(stderr," pid %8d uid %8d data %"PRIu64" offs %"PRIu64"\n",
54 obj = (struct flat_binder_object *) (((char*)(uintptr_t)txn->data.ptr.buffer) + *offs++);
194 data.txn.offsets_size = ((char*) reply->offs) - ((char*) reply->offs0);
337 writebuf.txn.offsets_size = ((char*) msg->offs) - ((char*) msg->offs0);
409 bio->offs = bio->offs0 = (binder_size_t *)(intptr_t)txn->data.ptr.offsets;
428 bio->offs = bio->offs0 = data;
473 *bio->offs++ = ((char*) obj) - ((char*) bio->data0);
615 if (bio->offs[n] == off)
binder.h 15 binder_size_t *offs; /* array of offsets */ member in struct:binder_io
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/httpfs/
http_fs_node.h 23 virtual Error GetDents(size_t offs,
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
dwarf-aux.h 63 extern int die_get_data_member_location(Dwarf_Die *mb_die, Dwarf_Word *offs);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
radeonsi_pm4.c 111 unsigned offs = state->last_pm4 + 1; local
114 if (state->ndw == offs) {
124 si_pm4_cmd_add(state, offs << 2);
  /external/chromium_org/third_party/opus/src/celt/
entdec.c 92 return _this->offs<_this->storage?_this->buf[_this->offs++]:0;
130 _this->offs=0;
  /external/libopus/celt/
entdec.c 92 return _this->offs<_this->storage?_this->buf[_this->offs++]:0;
130 _this->offs=0;
  /external/mesa3d/src/gallium/drivers/radeonsi/
radeonsi_pm4.c 111 unsigned offs = state->last_pm4 + 1; local
114 if (state->ndw == offs) {
124 si_pm4_cmd_add(state, offs << 2);
  /external/libedit/src/
readline.c 637 _history_expand_command(const char *command, size_t offs, size_t cmdlen,
653 if (strchr(":^*$", command[offs + 1])) {
663 idx = (command[offs + 1] == ':')? 1:0;
666 if (command[offs + 1] == '#') {
668 if ((aptr = el_malloc((offs + 1) * sizeof(*aptr)))
671 (void)strncpy(aptr, command, offs);
672 aptr[offs] = '\0';
677 qchar = (offs > 0 && command[offs - 1] == '"')? '"':0;
678 ptr = get_history_event(command + offs, &idx, qchar)
    [all...]
  /external/valgrind/main/none/tests/ppc32/
jm-insns.c 5524 int i, offs, is_lwa=0; local
5589 int i, offs; local
5619 int i, offs, k; local
5688 int i, offs, k; local
5743 size_t offs = 100 * sizeof(unsigned long); \/\/ some arbitrary offset) local
5971 int i, offs; local
6018 int i, offs; local
6062 int i, offs; local
6129 int i, offs; local
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
LzmaDec.c 179 unsigned offs = 0x100; local
187 bit = (matchByte & offs);
188 probLit = prob + offs + bit + symbol;
189 GET_BIT2(probLit, symbol, offs &= ~bit, offs &= bit)
524 unsigned offs = 0x100; local
531 bit = (matchByte & offs);
532 probLit = prob + offs + bit + symbol;
533 GET_BIT2_CHECK(probLit, symbol, offs &= ~bit, offs &= bit
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaDec.c 180 unsigned offs = 0x100; local
188 bit = (matchByte & offs);
189 probLit = prob + offs + bit + symbol;
190 GET_BIT2(probLit, symbol, offs &= ~bit, offs &= bit)
525 unsigned offs = 0x100; local
532 bit = (matchByte & offs);
533 probLit = prob + offs + bit + symbol;
534 GET_BIT2_CHECK(probLit, symbol, offs &= ~bit, offs &= bit
    [all...]

Completed in 722 milliseconds

1 2 3 45 6 7 8 91011>>