/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);
|
/external/chromium_org/pdf/ |
chunk_stream.cc | 111 size_t cur_offset = offset; local 114 if (cur_offset < it->first) { 115 size_t new_size = it->first - cur_offset; 116 ranges->push_back(std::pair<size_t, size_t>(cur_offset, new_size)); 117 cur_offset = it->first + it->second; 118 } else if (cur_offset < it->first + it->second) { 119 cur_offset = it->first + it->second; 124 if (cur_offset < offset + size) 125 ranges->push_back(std::pair<size_t, size_t>(cur_offset, 126 offset + size - cur_offset)); [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
profiledata_unittest.cc | 217 ssize_t cur_offset = 5 * sizeof(ProfileDataSlot); 223 if (cur_offset > filesize - 3 * sizeof(ProfileDataSlot)) 226 reinterpret_cast<ProfileDataSlot*>(filedata.get() + cur_offset); 229 if (cur_offset > filesize - size_this_sample) 244 cur_offset += size_this_sample; 250 if (cur_offset >= filesize) 255 while (cur_offset < filesize) { 256 char* line_start = filedata.get() + cur_offset; 310 cur_offset += (line_end - line_start) + 1;
|
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
profiledata_unittest.cc | 217 ssize_t cur_offset = 5 * sizeof(ProfileDataSlot); 223 if (cur_offset > filesize - 3 * sizeof(ProfileDataSlot)) 226 reinterpret_cast<ProfileDataSlot*>(filedata.get() + cur_offset); 229 if (cur_offset > filesize - size_this_sample) 244 cur_offset += size_this_sample; 250 if (cur_offset >= filesize) 255 while (cur_offset < filesize) { 256 char* line_start = filedata.get() + cur_offset; 310 cur_offset += (line_end - line_start) + 1;
|
/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);
|
/external/chromium_org/content/test/plugin/ |
plugin_request_read_test.cc | 97 int cur_offset = offset + i; local 98 char expected = '0' + cur_offset;
|
/external/chromium_org/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 >= idx->data_size ) 421 cur_offset )); 422 cur_offset = 0; 426 t[0] = org_bytes + cur_offset; 428 t[0] = new_bytes + cur_offset; 437 next_offset < cur_offset || 439 next_offset = cur_offset; 447 if ( next_offset != cur_offset ) [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_procmaps_linux.cc | 247 uptr cur_beg, cur_end, cur_offset, prot; local 251 Next(&cur_beg, &cur_end, &cur_offset, module_name.data(), 271 uptr base_address = (i ? cur_beg : 0) - 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...] |
/art/runtime/verifier/ |
method_verifier.h | 384 // Verify an array data table. "cur_offset" is the offset of the fill-array-data instruction. 385 bool CheckArrayData(uint32_t cur_offset); 392 bool CheckBranchTarget(uint32_t cur_offset); 394 // Verify a switch table. "cur_offset" is the offset of the switch instruction. 396 bool CheckSwitchTargets(uint32_t cur_offset); 413 bool GetBranchOffset(uint32_t cur_offset, int32_t* pOffset, bool* pConditional,
|
method_verifier.cc | [all...] |
/art/compiler/dex/ |
mir_graph.cc | 399 BasicBlock* MIRGraph::ProcessCanBranch(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, 402 DexOffset target = cur_offset; 438 BasicBlock* fallthrough_block = FindBlock(cur_offset + width, 459 FindBlock(cur_offset + width, /* split */ false, /* create */ true, 466 BasicBlock* MIRGraph::ProcessCanSwitch(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, 469 reinterpret_cast<const uint16_t*>(GetCurrentInsns() + cur_offset + insn->dalvikInsn.vB); 520 BasicBlock* case_block = FindBlock(cur_offset + target_table[i], /* split */ true, 534 BasicBlock* fallthrough_block = FindBlock(cur_offset + width, /* split */ false, 542 BasicBlock* MIRGraph::ProcessCanThrow(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, 545 bool in_try_block = try_block_addr->IsBitSet(cur_offset); [all...] |
mir_graph.h | [all...] |
/art/compiler/dex/quick/arm64/ |
int_arm64.cc | 1494 int cur_offset = 2; \/\/ What's the starting offset after the first stp? We expect the base slot local 1555 cur_offset); local 1559 RegStorage::FloatSolo64(reg1).GetReg(), base.GetReg(), cur_offset); local 1571 cur_offset + 1); local 1581 RegStorage::Solo64(reg1).GetReg(), base.GetReg(), cur_offset); local [all...] |
/art/compiler/ |
oat_writer.cc | 418 int cur_offset = cfi_info->size(); local 421 // Set the 'CIE_pointer' field to cur_offset+4. 422 uint32_t CIE_pointer = cur_offset + 4; 423 uint32_t offset_to_update = cur_offset + sizeof(uint32_t); 430 offset_to_update = cur_offset + 2*sizeof(uint32_t); [all...] |
/external/libnfc-nci/src/nfa/ee/ |
nfa_ee_act.c | 2207 int cur_offset; local [all...] |