Searched defs:offset (Results 76 - 100 of 4056) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Dprefix.h23 /* [offset, offset + 2^nbits) */
25 int offset; member in struct:PrefixCodeRange
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dplurfmt.h91 * offsetValue = "offset:" number
111 * the <code>PluralRules</code> with the input number <em>minus the offset</em>.
112 * (The offset defaults to 0 if it is omitted from the pattern string.)
117 * is replaced by the input number minus the offset.
118 * The number-minus-offset value is formatted using a
122 * <strong>Note:</strong> That argument is formatting without subtracting the offset!
123 * If you need a custom format and have a non-zero offset, then you need to pass the
124 * number-minus-offset value as a separate parameter.
482 * Before calling, set parse_pos.index to the offset you want to start
571 double offset; member in class:PluralFormat
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
H A Dos_mman.h64 static INLINE void *os_mmap(void *addr, size_t length, int prot, int flags, int fd, loff_t offset) argument
66 /* offset must be aligned to 4096 (not necessarily the page size) */
67 if (unlikely(offset & 4095)) {
72 return __mmap2(addr, length, prot, flags, fd, (size_t) (offset >> 12));
77 # define os_mmap(addr, length, prot, flags, fd, offset) mmap(addr, length, prot, flags, fd, offset)
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_scratch.h37 int offset; member in struct:nouveau_scratch_state
43 struct nouveau_bo **bo, unsigned *offset);
/external/chromium_org/tools/relocation_packer/src/
H A Ddelta_encoder.cc26 ELF::Addr offset = 0; local
33 packed->push_back(relocation->r_offset - offset);
34 offset = relocation->r_offset;
53 ELF::Addr offset = 0; local
60 offset += packed[i];
63 // Generate a relocation for this offset and addend pair.
65 relocation.r_offset = offset;
/external/chromium_org/ui/gfx/
H A Dutf16_indexing.cc35 ptrdiff_t offset) {
42 while (offset > 0 && pos < s.length())
43 offset -= IsValidCodePointIndex(s, pos++) ? 1 : 0;
44 while (offset < 0 && pos > 0)
45 offset += IsValidCodePointIndex(s, --pos) ? 1 : 0;
46 // If offset != 0 then we ran off the edge of the string, which is a contract
48 DCHECK_EQ(offset, 0);
33 UTF16OffsetToIndex(const base::string16& s, size_t base, ptrdiff_t offset) argument
/external/chromium_org/v8/src/arm/
H A Dframes-arm.cc39 const int offset = ExitFrameConstants::kConstantPoolOffset; local
40 return Memory::Object_at(fp() + offset);
/external/clang/test/CodeGen/
H A D2003-06-26-CFECrash.c4 long offset; member in struct:min_info
/external/conscrypt/src/main/java/org/conscrypt/util/
H A DArrays.java27 * Checks that the range described by {@code offset} and {@code count}
32 public static final void checkOffsetAndCount(int arrayLength, int offset, int count) { argument
33 if ((offset | count) < 0 || offset > arrayLength || arrayLength - offset < count) {
35 + offset + "; regionLength=" + count);
/external/e2fsprogs/ext2ed/
H A Dsuper_com.c122 unsigned long copy_num,offset; local
133 offset=file_system_info.super_block_offset+copy_num*file_system_info.no_blocks_in_group*file_system_info.block_size;
135 if (offset > file_system_info.file_system_size) {
140 device_offset=offset;
/external/emma/core/java12/com/vladium/jcd/opcodes/
H A DIOpcodeVisitor.java20 void visit (int opcode, boolean wide, int offset, Object ctx); argument
/external/fio/
H A Dmemalign.c8 unsigned int offset; member in struct:align_footer
25 f->offset = (uintptr_t) ret - (uintptr_t) ptr;
35 free(ptr - f->offset);
/external/guava/guava/src/com/google/common/primitives/
H A DAndroidInteger.java59 private static Integer tryParse(String string, int offset, int radix, argument
63 while (offset < length) {
64 int digit = Character.digit(string.charAt(offset++), radix);
/external/guava/guava-tests/test/com/google/common/io/
H A DIoTestCase.java43 * offset .. offset + size - 1.
45 protected static byte[] newPreFilledByteArray(int offset, int size) { argument
48 array[i] = (byte) (offset + i);
/external/icu/icu4c/source/i18n/unicode/
H A Dplurfmt.h91 * offsetValue = "offset:" number
111 * the <code>PluralRules</code> with the input number <em>minus the offset</em>.
112 * (The offset defaults to 0 if it is omitted from the pattern string.)
117 * is replaced by the input number minus the offset.
118 * The number-minus-offset value is formatted using a
122 * <strong>Note:</strong> That argument is formatting without subtracting the offset!
123 * If you need a custom format and have a non-zero offset, then you need to pass the
124 * number-minus-offset value as a separate parameter.
482 * Before calling, set parse_pos.index to the offset you want to start
571 double offset; member in class:PluralFormat
[all...]
/external/libexif/libexif/canon/
H A Dexif-mnote-data-canon.h41 unsigned int offset; member in struct:_ExifMnoteDataCanon
/external/libexif/libexif/fuji/
H A Dexif-mnote-data-fuji.h38 unsigned int offset; member in struct:_ExifMnoteDataFuji
/external/libnl/include/netlink/route/
H A Dpktloc.h31 uint16_t offset; member in struct:rtnl_pktloc
/external/libunwind/include/
H A Dmap_info.h35 uintptr_t offset; member in struct:map_info
/external/libunwind/src/
H A Dos-linux.c38 unsigned long start, end, offset, flags; local
45 while (maps_next (&mi, &start, &end, &offset, &flags))
53 cur_map->offset = offset;
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugMacinfo.cpp29 DWARFDebugMacinfo::Dump(Stream *s, const DataExtractor& macinfo_data, lldb::offset_t offset) argument
37 if (offset == LLDB_INVALID_OFFSET)
39 offset = 0;
40 while (maninfo_entry.Extract(macinfo_data, &offset))
45 if (maninfo_entry.Extract(macinfo_data, &offset))
/external/llvm/unittests/Support/
H A DDataExtractorTest.cpp28 uint32_t offset = 0; local
30 EXPECT_EQ(0x80U, DE.getU8(&offset));
31 EXPECT_EQ(1U, offset);
32 offset = 0;
33 EXPECT_EQ(0x8090U, DE.getU16(&offset));
34 EXPECT_EQ(2U, offset);
35 offset = 0;
36 EXPECT_EQ(0x8090FFFFU, DE.getU32(&offset));
37 EXPECT_EQ(4U, offset);
38 offset
76 uint32_t offset = 0; local
93 uint32_t offset = 0; local
103 uint32_t offset = 0; local
[all...]
/external/lzma/CPP/7zip/Archive/Common/
H A DInStreamWithCRC.cpp35 STDMETHODIMP CInStreamWithCRC::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
37 if (seekOrigin != STREAM_SEEK_SET || offset != 0)
41 return _stream->Seek(offset, seekOrigin, newPosition);
/external/mesa3d/src/gallium/auxiliary/os/
H A Dos_mman.h64 static INLINE void *os_mmap(void *addr, size_t length, int prot, int flags, int fd, loff_t offset) argument
66 /* offset must be aligned to 4096 (not necessarily the page size) */
67 if (unlikely(offset & 4095)) {
72 return __mmap2(addr, length, prot, flags, fd, (size_t) (offset >> 12));
77 # define os_mmap(addr, length, prot, flags, fd, offset) mmap(addr, length, prot, flags, fd, offset)
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_scratch.h37 int offset; member in struct:nouveau_scratch_state
43 struct nouveau_bo **bo, unsigned *offset);

Completed in 3564 milliseconds

1234567891011>>