Searched refs:offset (Results 276 - 300 of 6810) sorted by relevance

<<11121314151617181920>>

/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugMacinfo.h25 lldb::offset_t offset = LLDB_INVALID_OFFSET);
H A DDWARFLocationList.h22 lldb::offset_t offset);
31 lldb::offset_t 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/okhttp/okio/src/main/java/okio/
H A DUtil.java27 public static void checkOffsetAndCount(long arrayLength, long offset, long count) { argument
28 if ((offset | count) < 0 || offset > arrayLength || arrayLength - offset < count) {
/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/chromium_org/gpu/command_buffer/client/
H A Dfenced_allocator.h35 // Invalid offset, returned by Alloc in case of failure.
54 // the offset of the allocated memory block, or kInvalidOffset if out of
61 // offset: the offset of the memory block to free.
62 void Free(Offset offset);
68 // offset: the offset of the memory block to free.
70 void FreePendingToken(Offset offset, int32 token);
104 Offset offset; member in struct:gpu::FencedAllocator::Block
113 return left.offset < righ
172 FencedAllocator::Offset offset = allocator_.Alloc(size); local
218 GetPointer(FencedAllocator::Offset offset) argument
[all...]
/external/chromium_org/media/formats/mp2t/
H A Des_parser_test_base.cc21 : offset(0u),
71 size_t cur_pes_offset = pes_packets[k].offset;
99 DCHECK_GE(next->offset, cur->offset);
100 cur->size = next->offset - cur->offset;
103 DCHECK_GE(stream_.size(), cur->offset);
104 cur->size = stream_.size() - cur->offset;
113 cur_pes_packet.offset = 0;
115 while (cur_pes_packet.offset < stream
[all...]
/external/chromium_org/android_webview/native/
H A Daw_media_url_interceptor.cc16 int* fd, int64* offset, int64* size) const{
25 return AwAssets::OpenAsset(filename, fd, offset, size);
15 Intercept(const std::string& url, int* fd, int64* offset, int64* size) const argument
/external/chromium_org/chrome/browser/ui/cocoa/
H A Dfirst_run_bubble_controller.h22 offset:(NSPoint)offset
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_host_view_mac_dictionary_helper.h30 void set_offset(const gfx::Vector2d& offset) { offset_ = offset; } argument
42 // The extra offset to use while positioning the dicitonary panel.
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DEffectInput.cpp59 bool frameHasOffset = DictionaryHelper::get(keyframeDictionaryVector[i], "offset", scriptValue) && !scriptValue.isNull();
62 double offset; local
63 DictionaryHelper::get(keyframeDictionaryVector[i], "offset", offset);
66 if (std::isnan(offset)) {
67 exceptionState.throwDOMException(InvalidModificationError, "Non numeric offset provided");
70 if (offset < 0 || offset > 1) {
75 if (offset < lastOffset) {
80 lastOffset = offset;
[all...]
/external/chromium_org/third_party/ashmem/
H A Dashmem.h21 int ashmem_pin_region(int fd, size_t offset, size_t len);
22 int ashmem_unpin_region(int fd, size_t offset, size_t len);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_translate.c45 &r600->context, ib, 0, ib->offset, count, ptr);
49 ib->offset = out_offset;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dr600_translate.c45 &r600->context, ib, 0, ib->offset, count, ptr);
49 ib->offset = out_offset;
/external/chromium_org/third_party/mesa/src/src/mapi/shared-glapi/tests/
H A Dcheck_table.cpp34 int offset; member in struct:name_offset
46 EXPECT_EQ(linux_gl_abi[i].offset,
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_shader.h33 uint32_t brw_texture_offset(ir_constant *offset);
H A Dgen6_sampler_state.c44 OUT_BATCH(brw->sampler.offset); /* VS */
46 OUT_BATCH(brw->sampler.offset);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/server/
H A Dradeon_macros.h44 # define MMIO_IN8(base, offset) \
45 *(volatile unsigned char *)(((unsigned char*)(base)) + (offset))
46 # define MMIO_IN32(base, offset) \
47 read_MMIO_LE32(base, offset)
48 # define MMIO_OUT8(base, offset, val) \
49 *(volatile unsigned char *)(((unsigned char*)(base)) + (offset)) = (val)
50 # define MMIO_OUT32(base, offset, val) \
51 *(volatile unsigned int *)(void *)(((unsigned char*)(base)) + (offset)) = CPU_TO_LE32(val)
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/server/
H A Dradeon_macros.h44 # define MMIO_IN8(base, offset) \
45 *(volatile unsigned char *)(((unsigned char*)(base)) + (offset))
46 # define MMIO_IN32(base, offset) \
47 read_MMIO_LE32(base, offset)
48 # define MMIO_OUT8(base, offset, val) \
49 *(volatile unsigned char *)(((unsigned char*)(base)) + (offset)) = (val)
50 # define MMIO_OUT32(base, offset, val) \
51 *(volatile unsigned int *)(void *)(((unsigned char*)(base)) + (offset)) = CPU_TO_LE32(val)
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
H A Doutput_stream.h38 virtual void Write(ByteVector* buffer, int32_t offset, int32_t length) = 0;
41 virtual void Write(byte_t* buffer, int32_t offset, int32_t length) = 0;
/external/emma/core/java12/com/vladium/jcd/cls/
H A DIFieldCollection.java30 * Returns {@link Field_info} descriptor at a given offset.
32 * @param offset field offset [must be in [0, size()) range; input not checked]
35 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
37 Field_info get (int offset); argument
75 * @return new field's offset
80 * Replaces the Field_info descriptor at a given offset. No duplicate
85 * @param offset field offset [must be in [0, size()) range; input not checked]
87 * @return previous field descriptor at this offset [neve
91 set(int offset, Field_info field) argument
[all...]
/external/f2fs-tools/lib/
H A Dlibf2fs_io.c31 int dev_read(void *buf, __u64 offset, size_t len) argument
33 if (lseek64(config.fd, (off64_t)offset, SEEK_SET) < 0)
40 int dev_write(void *buf, __u64 offset, size_t len) argument
42 if (lseek64(config.fd, (off64_t)offset, SEEK_SET) < 0)
54 int dev_write_dump(void *buf, __u64 offset, size_t len) argument
56 if (lseek64(config.dump_fd, (off64_t)offset, SEEK_SET) < 0)
63 int dev_fill(void *buf, __u64 offset, size_t len) argument
68 if (lseek64(config.fd, (off64_t)offset, SEEK_SET) < 0)
/external/libnfc-nxp/src/
H A DphFriNfc_LlcpUtils.c39 uint32_t offset = *pOffset; local
47 /* Check offset */
48 if (offset > psRawData->length)
54 if ((offset+2 > psRawData->length) && (offset+2 > offset))
59 /* Get Type and Length from current TLV, and update offset */
60 type = psRawData->buffer[offset];
61 length = psRawData->buffer[offset+1];
62 offset
88 uint32_t offset = *pOffset; local
136 uint32_t offset = *pCurrentOffset; local
[all...]

Completed in 1001 milliseconds

<<11121314151617181920>>