Searched defs:offset (Results 1 - 25 of 1540) sorted by relevance

1234567891011>>

/external/clang/test/CodeGenCXX/
H A D2008-05-07-CrazyOffsetOf.cpp8 int offset = (char *) &(((struct bork *) 0x10)->query) - (char *) 0x10; variable
/external/oprofile/libabi/
H A Dop_abi.h19 /// offset or size of the named entry
20 int offset; member in struct:op_abi_entry
/external/webkit/Tools/DumpRenderTree/mac/
H A DDumpRenderTreeDraggingInfo.h33 NSSize offset; variable
39 - (id)initWithImage:(NSImage *)image offset:(NSSize)offset pasteboard:(NSPasteboard *)pasteboard source:(id)source;
/external/elfutils/libdw/
H A Ddwarf_offabbrev.c1 /* Get abbreviation at given offset.
23 dwarf_offabbrev (Dwarf *dbg, Dwarf_Off offset, size_t *lengthp, argument
29 return __libdw_getabbrev (dbg, NULL, offset, lengthp, abbrevp) == NULL;
H A Ddwarf_siblingof.c53 Dwarf_Off offset; local
55 if (dwarf_formref (&sibattr, &offset) != 0)
62 + sibattr.cu->start + offset);
/external/elfutils/libelf/
H A Delf_getshstrndx.c80 size_t offset; local
88 offset = elf->state.elf32.ehdr->e_shoff;
93 || (((size_t) ((char *) elf->map_address + offset))
96 num = ((Elf32_Shdr *) (elf->map_address + offset))->sh_link;
104 offset) != sizeof (Elf32_Shdr))
119 size_t offset; local
127 offset = elf->state.elf64.ehdr->e_shoff;
132 || (((size_t) ((char *) elf->map_address + offset))
135 num = ((Elf64_Shdr *) (elf->map_address + offset))->sh_link;
143 offset) !
[all...]
H A Delf_readall.c29 set_address (Elf *elf, size_t offset) argument
40 child->start_offset -= offset;
42 child->state.ar.offset -= offset;
44 set_address (child, offset);
102 elf->state.ar.offset -= elf->start_offset;
/external/icu4c/test/cintltst/
H A Dcallcoll.h35 int32_t offset; member in struct:OrderAndOffset
/external/icu4c/test/intltest/
H A Dtscoll.h29 int32_t offset; member in struct:IntlTestCollator::Order
/external/webkit/Source/JavaScriptCore/bytecode/
H A DJumpTable.cpp40 int32_t offset = branchOffsets[value - min]; local
41 if (offset)
42 return offset;
/external/freetype/include/freetype/internal/
H A Dftrfork.h41 /* and internal offset. The `POST' resource expects to be concatenated */
47 FT_ULong offset; member in struct:FT_RFork_Ref_
58 /* Guess a file name and offset where the actual resource fork is */
62 /* offset (offsets[N]), and an error code (errors[N]). */
83 /* offset of the possible start of the resource fork in file */
107 /* information includes the file offset where the resource map */
108 /* starts, and the file offset where the resource data starts. */
119 /* The file offset where the resource fork starts. */
123 /* The file offset where the resource map starts. */
126 /* The file offset wher
[all...]
/external/grub/stage2/
H A Dstage1_5.c25 disk_read_savesect_func (int sector, int offset, int length) argument
/external/icu4c/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/icu4c/i18n/
H A Dregextxt.cpp17 uregex_utext_unescape_charAt(int32_t offset, void *ct) { argument
20 if (offset == context->lastOffset + 1) {
23 } else if (offset == context->lastOffset) {
27 utext_moveIndex32(context->text, offset - context->lastOffset - 1);
29 context->lastOffset = offset;
41 uregex_ucstr_unescape_charAt(int32_t offset, void *context) { argument
42 return ((UChar *)context)[offset];
/external/libvpx/libmkv/
H A DEbmlBufferWriter.h6 unsigned long long offset; member in struct:__anon6170
13 unsigned int offset; member in struct:__anon6171
/external/llvm/unittests/Support/
H A DDataExtractorTest.cpp27 uint32_t offset = 0; local
29 EXPECT_EQ(0x80U, DE.getU8(&offset));
30 EXPECT_EQ(1U, offset);
31 offset = 0;
32 EXPECT_EQ(0x8090U, DE.getU16(&offset));
33 EXPECT_EQ(2U, offset);
34 offset = 0;
35 EXPECT_EQ(0x8090FFFFU, DE.getU32(&offset));
36 EXPECT_EQ(4U, offset);
37 offset
75 uint32_t offset = 0; local
92 uint32_t offset = 0; local
102 uint32_t offset = 0; local
[all...]
/external/proguard/src/proguard/classfile/instruction/
H A DInstructionFactory.java34 public static Instruction create(byte[] code, int offset) argument
38 int index = offset;
253 // Instructions with a branch offset operand.
290 throw new IllegalArgumentException("Unknown instruction opcode ["+opcode+"] at offset "+offset);
/external/skia/src/animator/
H A DSkTextOnPath.h32 SkScalar offset; member in class:SkTextOnPath
/external/srtp/crypto/include/
H A Daes_icm.h19 v128_t offset; /* initial offset value */ member in struct:__anon9938
/external/webkit/Source/JavaScriptCore/icu/unicode/
H A Dparseerr.h30 * <p>The line, offset, and context fields are optional; parsing
64 * The character offset to the error. If the line field is >= 1,
65 * then this is the offset from the start of the line. Otherwise,
66 * this is the offset from the start of the text. If the parser
70 int32_t offset; member in struct:UParseError
/external/webkit/Source/WebCore/editing/
H A DDeleteFromTextNodeCommand.cpp34 DeleteFromTextNodeCommand::DeleteFromTextNodeCommand(PassRefPtr<Text> node, unsigned offset, unsigned count) argument
37 , m_offset(offset)
H A DSplitTextNodeContainingElementCommand.cpp36 SplitTextNodeContainingElementCommand::SplitTextNodeContainingElementCommand(PassRefPtr<Text> text, int offset) argument
37 : CompositeEditCommand(text->document()), m_text(text), m_offset(offset)
/external/webkit/Source/WebCore/icu/unicode/
H A Dparseerr.h30 * <p>The line, offset, and context fields are optional; parsing
64 * The character offset to the error. If the line field is >= 1,
65 * then this is the offset from the start of the line. Otherwise,
66 * this is the offset from the start of the text. If the parser
70 int32_t offset; member in struct:UParseError
/external/webkit/Source/WebKit/mac/icu/unicode/
H A Dparseerr.h30 * <p>The line, offset, and context fields are optional; parsing
64 * The character offset to the error. If the line field is >= 1,
65 * then this is the offset from the start of the line. Otherwise,
66 * this is the offset from the start of the text. If the parser
70 int32_t offset; member in struct:UParseError
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
H A DDESedeParameters.java26 * @param offset offset into the byte array the key starts at
31 int offset,
34 for (int i = offset; i < length; i += DES_KEY_LENGTH)
49 * @param offset offset into the byte array the key starts at
53 int offset)
55 return isWeakKey(key, offset, key.length - offset);
29 isWeakKey( byte[] key, int offset, int length) argument
51 isWeakKey( byte[] key, int offset) argument

Completed in 626 milliseconds

1234567891011>>