Searched refs:offset (Results 176 - 200 of 4102) sorted by relevance

1234567891011>>

/external/v8/test/webkit/
H A Ddfg-intrinsic-unused-this.js37 var offset = 0; variable
41 offset = 42;
51 shouldBe("baz(object, " + i + ", " + (i * 2) + ")", "" + (offset + Math.max(i, i * 2)));
/external/vboot_reference/scripts/image_signing/
H A Dunpack_firmwarefd.sh28 # Grab GBB Area offset and size
31 offset="$(echo $line | sed -e 's/.*area_offset=\"\([a-f0-9x]*\)\".*/\1/')"
32 let gbb_offset="$offset"
36 # Grab Firmware A and B offset and size
41 offset="$(echo $line | sed -e 's/.*area_offset=\"\([a-f0-9x]*\)\".*/\1/')"
43 fw${i}_vblock_offset="$offset"
50 offset="$(echo $line | sed -e 's/.*area_offset=\"\([a-f0-9x]*\)\".*/\1/')"
52 fw${i}_offset="$offset"
/external/valgrind/callgrind/
H A Dbb.c57 * - BB base as object file offset
60 UInt bb_hash_idx(obj_node* obj, PtrdiffT offset, UInt size) argument
62 return (((Addr)obj) + offset) % size;
87 new_idx = bb_hash_idx(curr->obj, curr->offset, new_size);
119 static BB* new_bb(obj_node* obj, PtrdiffT offset, argument
136 bb->offset = offset;
144 bb->sect_kind = VG_(DebugInfo_sect_kind)(NULL, offset + obj->offset);
152 idx = bb_hash_idx(obj, offset, bb
177 lookup_bb(obj_node* obj, PtrdiffT offset) argument
200 PtrdiffT offset; local
293 PtrdiffT offset = addr - obj->offset; local
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_location.py10 def assert_location(loc, line, column, offset):
13 assert loc.offset == offset
23 assert_location(one.location,line=1,column=5,offset=4)
24 assert_location(two.location,line=2,column=5,offset=13)
34 assert_location(one.location,line=2,column=5,offset=5)
35 assert_location(two.location,line=3,column=5,offset=14)
42 assert_location(one.location,line=1,column=6,offset=5)
43 assert_location(two.location,line=2,column=5,offset=14)
77 assert_location(one.extent.start,line=1,column=1,offset
[all...]
/external/google-breakpad/src/common/dwarf/
H A Dbytereader.cc69 // In DWARF2/3, if the initial length is all 1 bits, then the offset
124 // First, find the offset to START from the closest prior aligned
127 // Now find the offset from that aligned address to buffer.
128 uint64 offset = skew + (buffer - buffer_base_); local
130 uint64 aligned = (offset + AddressSize() - 1) & -AddressSize();
139 // offset relative to some base.
140 uint64 offset; local
146 // offset from some base address. When it appears in the low nybble,
150 // correct for us to treat the value as an offset from a base address
152 offset
[all...]
/external/openssh/openbsd-compat/
H A Dsetenv.c48 * Starts searching within the environmental array at offset.
49 * Sets offset to be the offset of the name/value combination in the
56 __findenv(const char *name, int len, int *offset) argument
65 for (p = environ + *offset; (cp = *p) != NULL; ++p) {
70 *offset = p - environ;
88 int offset = 0;
97 if (__findenv(str, (int)(cp - str), &offset) != NULL) {
98 environ[offset++] = str;
100 while (__findenv(str, (int)(cp - str), &offset)) {
136 int l_value, offset = 0; local
202 int offset = 0; local
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dutf8tst.c197 uint32_t offset=0; local
199 for(offset=0; offset<sizeof(input); offset++) {
200 if (offset < sizeof(input) - 1) {
201 UTF8_GET_CHAR_UNSAFE(input, offset, c);
203 log_err("ERROR: UTF8_GET_CHAR_UNSAFE failed for offset=%ld. Expected:%lx Got:%lx\n", offset, result[i], c);
207 U8_GET_UNSAFE(input, offset, c);
209 log_err("ERROR: U8_GET_UNSAFE failed for offset
285 uint32_t offset=0; local
527 uint32_t offset; local
659 int32_t offset; local
729 int32_t offset=0, setOffset=0; local
770 int32_t offset=0, setOffset=0; local
910 uint32_t offset; local
[all...]
/external/proguard/src/proguard/optimize/evaluation/
H A DSimpleEnumUseChecker.java120 for (int offset = 0; offset < codeLength; offset++)
122 if (partialEvaluator.isTraced(offset))
125 offset);
127 instruction.accept(clazz, method, codeAttribute, offset, this);
130 if (partialEvaluator.isBranchOrExceptionTarget(offset))
132 checkMixedStackEntriesBefore(offset);
134 checkMixedVariablesBefore(offset);
143 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstructio argument
207 visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
212 visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
318 visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
353 visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction) argument
441 checkMixedStackEntriesBefore(int offset) argument
501 checkMixedVariablesBefore(int offset) argument
563 isPoppingIdenticalTypes(int offset, int stackEntryIndex1, int stackEntryIndex2) argument
582 isPoppingExpectedType(int offset, Clazz clazz, int constantIndex) argument
594 isPoppingExpectedType(int offset, int stackEntryIndex, Clazz clazz, int constantIndex) argument
609 isPoppingExpectedType(int offset, int stackEntryIndex, String expectedType) argument
655 isPoppingSimpleEnumType(int offset) argument
665 isPoppingSimpleEnumType(int offset, int stackEntryIndex) argument
707 markPoppedComplexEnumType(int offset) argument
716 markPoppedComplexEnumType(int offset, int stackEntryIndex) argument
728 markPushedComplexEnumType(int offset) argument
740 markStoredComplexEnumType(int offset, int variableIndex) argument
[all...]
/external/squashfs-tools/kernel/fs/squashfs/
H A Dinode.c29 * offset into that block where the inode is placed (<block, offset>).
112 int err, type, offset = SQUASHFS_INODE_OFFSET(ino); local
122 &offset, sizeof(*sqshb_ino));
131 offset = SQUASHFS_INODE_OFFSET(ino);
140 err = squashfs_read_metadata(sb, sqsh_ino, &block, &offset,
147 frag_offset = le32_to_cpu(sqsh_ino->offset);
169 squashfs_i(inode)->offset = offset;
173 "%llx, offset
[all...]
H A Dsquashfs_fs_i.h28 int offset; member in struct:squashfs_inode_info
/external/tcpdump/
H A Dprint-stp.c243 u_int offset; local
298 offset = MST_BPDU_MSTI_OFFSET;
300 msti = EXTRACT_16BITS(ptr + offset +
305 msti, bittok2str(stp_bpdu_flag_values, "none", ptr[offset]),
307 RSTP_EXTRACT_PORT_ROLE(ptr[offset])));
309 stp_print_bridge_id(ptr + offset +
311 EXTRACT_32BITS(ptr + offset +
314 ptr[offset + MST_BPDU_MSTI_BRIDGE_PRIO_OFFSET] >> 4,
315 ptr[offset + MST_BPDU_MSTI_PORT_PRIO_OFFSET] >> 4,
316 ptr[offset
325 stp_print_spb_bpdu(const struct stp_bpdu_ *stp_bpdu, u_int offset) argument
[all...]
/external/clang/test/CodeGen/
H A D2003-06-26-CFECrash.c4 long offset; member in struct:min_info
/external/compiler-rt/lib/dfsan/
H A Ddfsan_interceptors.cc20 int fd, OFF_T offset) {
21 void *res = REAL(mmap)(addr, length, prot, flags, fd, offset);
28 int fd, OFF64_T offset) {
29 void *res = REAL(mmap64)(addr, length, prot, flags, fd, offset);
19 INTERCEPTOR(void *, mmap, void *addr, SIZE_T length, int prot, int flags, int fd, OFF_T offset) argument
27 INTERCEPTOR(void *, mmap64, void *addr, SIZE_T length, int prot, int flags, int fd, OFF64_T offset) argument
/external/elfutils/src/backends/
H A Dalpha_corenote.c44 { .offset = 0, .regno = 0, .count = 31, .bits = 64 }, /* r0-r30 */
45 { .offset = 32 * 8, .regno = 64, .count = 1, .bits = 64 }, /* pc */
46 { .offset = 33 * 8, .regno = 66, .count = 1, .bits = 64 }, /* unique */
52 { .offset = 0, .regno = 32, .count = 32, .bits = 64 }, /* f0-f30, fpcr */
/external/elfutils/src/tests/
H A Ddwarf-getstring.c37 Dwarf_Off offset = 0; local
56 const char *str = dwarf_getstring (NULL, offset, &len);
59 /* Use insane offset. */
66 str = dwarf_getstring (dbg, offset, &len);
70 offset += len + 1;
/external/icu/icu4c/source/common/unicode/
H A Dparseerr.h34 * <p>The line, offset, and context fields are optional; parsing
68 * The character offset to the error. If the line field is >= 1,
69 * then this is the offset from the start of the line. Otherwise,
70 * this is the offset from the start of the text. If the parser
74 int32_t offset; member in struct:UParseError
/external/jetty/src/java/org/eclipse/jetty/websocket/
H A DWebSocketGenerator.java32 void addFrame(byte flags,byte opcode, byte[] content, int offset, int length) throws IOException; argument
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugMacinfo.h25 lldb::offset_t offset = LLDB_INVALID_OFFSET);
/external/llvm/test/MC/AsmParser/
H A Ddot-symbol-assignment-backwards.s10 # CHECK: LLVM ERROR: invalid .org offset '24' (at offset '28')
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600.h103 #define CTX_RANGE_ID(offset) ((((offset - RANGE_OFFSET_START) >> 2) >> HASH_SHIFT) & 255)
104 #define CTX_BLOCK_ID(offset) (((offset - RANGE_OFFSET_START) >> 2) & ((1 << HASH_SHIFT) - 1))
198 unsigned offset, unsigned value);
213 uint32_t offset, uint32_t value,
220 uint32_t offset, uint32_t value,
224 uint32_t offset, uint32_t value,
228 #define r600_pipe_state_add_reg_bo(state, offset, value, bo, usage) _r600_pipe_state_add_reg_bo(rctx, state, offset, valu
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_debug.h38 unsigned offset; /* current gtt offset */ member in struct:debug_stream
39 char *ptr; /* pointer to gtt offset zero */
40 char *end; /* pointer to gtt offset zero */
/external/proguard/src/proguard/classfile/editor/
H A DInstructionAdder.java58 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
61 codeAttributeComposer.appendInstruction(offset, instruction);
65 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
74 codeAttributeComposer.appendInstruction(offset, newConstantInstruction);
/external/squashfs-tools/kernel/include/linux/
H A Dsquashfs_fs_i.h28 int offset; member in struct:squashfs_inode_info
/external/squashfs-tools/kernel-2.4/include/linux/
H A Dsquashfs_fs_i.h28 unsigned int offset; member in struct:squashfs_inode_info
/external/vboot_reference/firmware/stub/
H A Dvboot_api_stub_region.c17 enum vb_firmware_region region, uint32_t offset,
16 VbExRegionRead(VbCommonParams *cparams, enum vb_firmware_region region, uint32_t offset, uint32_t size, void *buf) argument

Completed in 1147 milliseconds

1234567891011>>