HomeSort by relevance Sort by last modified time
    Searched refs:cur_offset (Results 1 - 19 of 19) sorted by null

  /external/e2fsprogs/lib/ext2fs/
tst_fs_struct.c 23 #define check_field(x) cur_offset = do_field(#x, sizeof(fs.x), \
25 cur_offset)
27 static int do_field(const char *field, size_t size, int offset, int cur_offset)
29 if (offset != cur_offset) {
30 printf("\t(padding %d bytes?)\n", offset - cur_offset);
39 int cur_offset = 0; local
78 printf("Ending offset is %d\n\n", cur_offset);
tst_inode_size.c 24 #define check_field(x, s) cur_offset = do_field(#x, s, sizeof(inode.x), \
26 cur_offset)
29 unsigned offset, unsigned cur_offset)
36 if (offset != cur_offset) {
38 field, cur_offset, offset);
48 int cur_offset = 0; local
74 do_field("Small inode end", 0, 0, cur_offset, 128);
84 do_field("Large inode end", 0, 0, cur_offset, sizeof(inode));
tst_super_size.c 27 #define check_field(x, s) cur_offset = do_field(#x, s, sizeof(sb.x), \
29 cur_offset)
32 unsigned offset, unsigned cur_offset)
39 if (offset != cur_offset) {
41 field, cur_offset, offset);
51 int cur_offset = 0; local
139 do_field("Superblock end", 0, 0, cur_offset, 1024);
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
viddec_pm.c 152 cur_buf->cur_offset +=(cur_buf->cur_size);
193 &(cur_buf->cur_offset)) != 1)
205 if((cur_buf->cur_offset + cur_buf->cur_size) >= cur_buf->cur_es->len)
220 cur_buf->cur_offset = cur_buf->cur_size = 0;
226 data_left = cur_buf->cur_es->len - (cur_buf->cur_offset + cur_buf->cur_size);
229 cur_buf->cur_offset +=(cur_buf->cur_size);
243 ddr_addr = cur_buf->cur_offset + (uint32_t)cur_buf->cur_es->buf;
245 ddr_addr = cur_buf->cur_offset + cur_buf->cur_es->phys;
302 cxt->list.end_offset = cxt->cur_buf.cur_offset+1;
324 cxt->list.end_offset = cxt->parse_cubby.sc_end_pos + cxt->cur_buf.cur_offset;
    [all...]
  /external/fio/t/
dedupe.c 38 uint64_t cur_offset; member in struct:worker_thread
77 static uint64_t cur_offset; variable
107 if (cur_offset < total_size) {
108 *offset = cur_offset;
109 this_chunk = min((uint64_t)chunk_size, total_size - cur_offset);
111 cur_offset += this_chunk;
286 offset = thread->cur_offset;
319 if (get_work(&thread->cur_offset, &thread->size)) {
385 cur_offset = 0;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_procmaps_common.cc 121 uptr cur_beg, cur_end, cur_offset, prot; local
125 Next(&cur_beg, &cur_end, &cur_offset, module_name.data(),
144 uptr base_address = (i ? cur_beg : 0) - cur_offset;
  /device/generic/goldfish/camera/
QemuClient.cpp 530 size_t cur_offset = 0; local
535 if ((query.mReplyDataSize - cur_offset) >= vframe_size) {
537 cur_offset += vframe_size;
540 __FUNCTION__, query.mReplyDataSize - cur_offset, vframe_size);
546 if ((query.mReplyDataSize - cur_offset) >= pframe_size) {
547 memcpy(pframe, frame + cur_offset, pframe_size);
548 cur_offset += pframe_size;
551 __FUNCTION__, query.mReplyDataSize - cur_offset, pframe_size);
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/include/
viddec_pm.h 37 uint32_t cur_offset; member in struct:__anon23744
  /external/squashfs-tools/kernel/fs/squashfs/
file.c 246 int cur_offset = squashfs_i(inode)->offset; local
268 cur_offset = meta_entry->offset;
275 cur_offset, cur_data_block);
287 &cur_index_block, &cur_offset);
304 meta_entry->offset = cur_offset;
318 *index_offset = cur_offset;
  /external/freetype/src/cff/
cffload.c 408 FT_ULong n, cur_offset; local
414 cur_offset = idx->offsets[0] - 1;
417 if ( cur_offset != 0 )
421 cur_offset ));
422 cur_offset = 0;
426 t[0] = org_bytes + cur_offset;
428 t[0] = new_bytes + cur_offset;
436 if ( next_offset < cur_offset )
437 next_offset = cur_offset;
447 if ( next_offset != cur_offset )
    [all...]
  /external/pdfium/third_party/freetype/src/cff/
cffload.c 408 FT_ULong n, cur_offset; local
414 cur_offset = idx->offsets[0] - 1;
417 if ( cur_offset != 0 )
421 cur_offset ));
422 cur_offset = 0;
426 t[0] = org_bytes + cur_offset;
428 t[0] = new_bytes + cur_offset;
436 if ( next_offset < cur_offset )
437 next_offset = cur_offset;
447 if ( next_offset != cur_offset )
    [all...]
  /art/runtime/verifier/
method_verifier.h 426 // Verify an array data table. "cur_offset" is the offset of the fill-array-data instruction.
427 bool CheckArrayData(uint32_t cur_offset);
434 bool CheckBranchTarget(uint32_t cur_offset);
436 // Verify a switch table. "cur_offset" is the offset of the switch instruction.
438 bool CheckSwitchTargets(uint32_t cur_offset);
455 bool GetBranchOffset(uint32_t cur_offset, int32_t* pOffset, bool* pConditional,
    [all...]
method_verifier.cc     [all...]
  /art/compiler/dex/quick/arm64/
int_arm64.cc 1557 int cur_offset = 2; \/\/ What's the starting offset after the first stp? We expect the base slot local
1634 cur_offset); local
1639 RegStorage::FloatSolo64(reg1).GetReg(), base.GetReg(), cur_offset); local
1653 cur_offset + 1); local
1664 RegStorage::Solo64(reg1).GetReg(), base.GetReg(), cur_offset); local
    [all...]
  /frameworks/compile/mclinker/lib/LD/
ELFObjectWriter.cpp 652 size_t cur_offset = 0; local
660 memcpy(pRegion.begin() + cur_offset, from, size);
670 pRegion.begin() + cur_offset, align_frag.getValue(), count);
689 std::memset(pRegion.begin() + cur_offset,
697 memcpy(pRegion.begin() + cur_offset, stub_frag.getContent(), size);
713 cur_offset += size;
  /art/compiler/dex/
mir_graph.cc 455 BasicBlock* MIRGraph::ProcessCanBranch(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset,
459 DexOffset target = cur_offset;
497 BasicBlock* fallthrough_block = FindBlock(cur_offset + width,
507 FindBlock(cur_offset + width, /* create */ true, /* immed_pred_block_p */ nullptr, dex_pc_to_block_map);
513 BasicBlock* MIRGraph::ProcessCanSwitch(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset,
518 reinterpret_cast<const uint16_t*>(GetCurrentInsns() + cur_offset +
569 BasicBlock* case_block = FindBlock(cur_offset + target_table[i], /* create */ true,
585 BasicBlock* fallthrough_block = FindBlock(cur_offset + width, /* create */ true,
595 BasicBlock* MIRGraph::ProcessCanThrow(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset,
600 bool in_try_block = try_block_addr->IsBitSet(cur_offset);
    [all...]
mir_graph.h     [all...]
  /external/squashfs-tools/kernel-2.4/fs/squashfs/
inode.c 1336 int cur_offset = SQUASHFS_I(inode)->offset; local
    [all...]
  /external/libnfc-nci/src/nfa/ee/
nfa_ee_act.c 2218 int cur_offset; local
    [all...]

Completed in 916 milliseconds