Home
last modified time | relevance | path

Searched refs:base_offset (Results 1 – 25 of 80) sorted by relevance

1234

/third_party/mesa3d/src/mapi/glapi/gen/
Dgl_procs.py83 base_offset = 0
88 table.append((base_offset, "gl" + name, "gl" + name, "NULL", func.offset))
93 base_offset += len(func.name) + 3
104 table.append((base_offset, "gl" + name, alt_name, alt_name, func.offset))
106 table.append((base_offset, "gl" + name, "gl" + name, "NULL", func.offset))
108 base_offset += len(n) + 3
/third_party/node/deps/v8/src/compiler/backend/x64/
Dunwinding-info-writer-x64.cc24 initial_state->offset_ != eh_frame_writer_.base_offset()) { in BeginInstructionBlock()
31 } else if (initial_state->offset_ != eh_frame_writer_.base_offset()) { in BeginInstructionBlock()
51 DCHECK_EQ(existing_state->offset_, eh_frame_writer_.base_offset()); in EndInstructionBlock()
55 eh_frame_writer_.base_register(), eh_frame_writer_.base_offset(), in EndInstructionBlock()
70 int top_of_stack = -eh_frame_writer_.base_offset(); in MarkFrameConstructed()
/third_party/mesa3d/src/compiler/nir/
Dnir_lower_locals_to_regs.c139 src.reg.base_offset = 0; in get_deref_reg_src()
156 src.reg.base_offset += nir_src_as_uint(d->arr.index) * in get_deref_reg_src()
160 assert(src.reg.base_offset == 0); in get_deref_reg_src()
164 nir_src_for_ssa(nir_imm_int(b, src.reg.base_offset)); in get_deref_reg_src()
165 src.reg.base_offset = 0; in get_deref_reg_src()
205 mov->src[0].src.reg.base_offset >= mov->src[0].src.reg.reg->num_array_elems) { in lower_locals_to_regs_block()
240 reg_src.reg.base_offset >= reg_src.reg.reg->num_array_elems) { in lower_locals_to_regs_block()
272 mov->dest.dest.reg.base_offset = reg_src.reg.base_offset; in lower_locals_to_regs_block()
Dnir_lower_io_to_scalar.c86 nir_ssa_def *base_offset = intr->src[offset_idx].ssa; in lower_load_to_scalar() local
111 nir_ssa_def *offset = nir_iadd_imm(b, base_offset, i * (intr->dest.ssa.bit_size / 8)); in lower_load_to_scalar()
189 nir_ssa_def *base_offset = intr->src[offset_idx].ssa; in lower_store_to_scalar() local
213 nir_ssa_def *offset = nir_iadd_imm(b, base_offset, i * (value->bit_size / 8)); in lower_store_to_scalar()
/third_party/node/deps/v8/src/diagnostics/
Deh-frame.h96 void SetBaseAddressOffset(int base_offset);
100 void SetBaseAddressRegisterAndOffset(Register base_register, int base_offset);
131 int base_offset() const { return base_offset_; } in base_offset() function
154 void PatchInt32(int base_offset, uint32_t value) { in PatchInt32() argument
157 reinterpret_cast<Address>(eh_frame_buffer_.data()) + base_offset), in PatchInt32()
159 DCHECK_LT(base_offset + kInt32Size, eh_frame_offset()); in PatchInt32()
161 reinterpret_cast<Address>(eh_frame_buffer_.data()) + base_offset, in PatchInt32()
Deh-frame.cc277 void EhFrameWriter::SetBaseAddressOffset(int base_offset) { in SetBaseAddressOffset() argument
279 DCHECK_GE(base_offset, 0); in SetBaseAddressOffset()
281 WriteULeb128(base_offset); in SetBaseAddressOffset()
282 base_offset_ = base_offset; in SetBaseAddressOffset()
294 int base_offset) { in SetBaseAddressRegisterAndOffset() argument
296 DCHECK_GE(base_offset, 0); in SetBaseAddressRegisterAndOffset()
300 WriteULeb128(base_offset); in SetBaseAddressRegisterAndOffset()
301 base_offset_ = base_offset; in SetBaseAddressRegisterAndOffset()
561 uint32_t base_offset = eh_frame_iterator.GetNextULeb128(); in DumpDwarfDirectives() local
563 << ", base_offset=" << base_offset << '\n'; in DumpDwarfDirectives()
/third_party/mesa3d/src/intel/compiler/
Dbrw_vec4_tcs.h59 unsigned base_offset,
63 unsigned base_offset,
68 unsigned base_offset, const src_reg &indirect_offset);
Dbrw_vec4_tcs.cpp154 unsigned base_offset, in emit_input_urb_read() argument
170 inst->offset = base_offset; in emit_input_urb_read()
189 unsigned base_offset, in emit_output_urb_read() argument
202 read->offset = base_offset; in emit_output_urb_read()
217 unsigned base_offset, in emit_urb_write() argument
234 inst->offset = base_offset; in emit_urb_write()
/third_party/node/deps/ngtcp2/ngtcp2/lib/
Dngtcp2_strm.c200 uint64_t base_offset, end_base_offset; in strm_streamfrq_unacked_pop() local
219 base_offset = 0; in strm_streamfrq_unacked_pop()
229 base_offset = gap.begin - offset; in strm_streamfrq_unacked_pop()
263 assert(gap.begin == offset + base_offset); in strm_streamfrq_unacked_pop()
279 if (fr->offset == offset && base_offset == 0 && fr->datacnt == end_idx) { in strm_streamfrq_unacked_pop()
287 assert(fr->data[0].len > base_offset); in strm_streamfrq_unacked_pop()
289 fr->offset = offset + base_offset; in strm_streamfrq_unacked_pop()
291 fr->data[0].base += base_offset; in strm_streamfrq_unacked_pop()
292 fr->data[0].len -= (size_t)base_offset; in strm_streamfrq_unacked_pop()
334 assert(fr->data[0].len > base_offset); in strm_streamfrq_unacked_pop()
[all …]
/third_party/astc-encoder/Source/
Dastcenc_image.cpp50 int base_offset in load_texel_u8() argument
53 return int_to_float(vint4(data8 + base_offset)) / 255.0f; in load_texel_u8()
64 int base_offset in load_texel_f16() argument
67 int r = data16[base_offset ]; in load_texel_f16()
68 int g = data16[base_offset + 1]; in load_texel_f16()
69 int b = data16[base_offset + 2]; in load_texel_f16()
70 int a = data16[base_offset + 3]; in load_texel_f16()
82 int base_offset in load_texel_f32() argument
85 return vfloat4(data32 + base_offset); in load_texel_f32()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-open-file.hh419 unsigned int *base_offset = nullptr) const in get_face()
422 if (base_offset) in get_face()
423 *base_offset = (const char *) &face - (const char *) this; in get_face()
477 const OpenTypeFontFace& get_face (unsigned int i, unsigned int *base_offset = nullptr) const in get_face()
479 if (base_offset) in get_face()
480 *base_offset = 0; in get_face()
490 case DFontTag: return u.rfHeader.get_face (i, base_offset); in get_face()
Dhb-face.cc182 unsigned int base_offset; in _hb_face_for_data_reference_table() local
183 const OT::OpenTypeFontFace &ot_face = ot_file.get_face (data->index, &base_offset); in _hb_face_for_data_reference_table()
187 hb_blob_t *blob = hb_blob_create_sub_blob (data->blob, base_offset + table.offset, table.length); in _hb_face_for_data_reference_table()
/third_party/skia/third_party/externals/freetype/src/cid/
Dcidparse.c62 FT_ULong base_offset, offset, ps_len; in cid_parser_new() local
72 base_offset = FT_STREAM_POS(); in cid_parser_new()
178 ps_len = offset - base_offset; in cid_parser_new()
179 if ( FT_STREAM_SEEK( base_offset ) || in cid_parser_new()
/third_party/mesa3d/src/broadcom/vulkan/
Dv3dvx_image.c118 const uint32_t base_offset = in pack_texture_shader_state_helper() local
121 tex.texture_base_pointer = v3dv_cl_address(NULL, base_offset); in pack_texture_shader_state_helper()
167 const uint32_t base_offset = in v3dX() local
172 tex.texture_base_pointer = v3dv_cl_address(NULL, base_offset); in v3dX()
/third_party/skia/third_party/externals/freetype/src/cff/
Dcffload.c909 FT_ULong base_offset, in cff_charset_load() argument
925 charset->offset = base_offset + offset; in cff_charset_load()
1126 FT_ULong base_offset, in cff_vstore_load() argument
1148 if ( FT_STREAM_SEEK( base_offset + offset ) || in cff_vstore_load()
1636 FT_ULong base_offset, in cff_encoding_load() argument
1674 encoding->offset = base_offset + offset; in cff_encoding_load()
1928 if ( FT_STREAM_SEEK( font->base_offset + top->private_offset ) || in cff_load_private_dict()
1991 FT_ULong base_offset, in cff_subfont_load() argument
2146 if ( FT_STREAM_SEEK( base_offset + top->private_offset + in cff_subfont_load()
2206 FT_ULong base_offset; in cff_font_load() local
[all …]
/third_party/mesa3d/src/freedreno/ir3/
Dir3_nir_lower_tex_prefetch.c51 int base_offset = in coord_offset() local
62 if (nth_offset != (base_offset + i)) in coord_offset()
66 return base_offset; in coord_offset()
Dir3_nir_analyze_ubo_ranges.c534 unsigned base_offset = nir_intrinsic_base(intr); in fixup_load_uniform_instr() local
537 if (base_offset < base_offset_limit) in fixup_load_uniform_instr()
562 unsigned new_base_offset = base_offset % base_offset_limit; in fixup_load_uniform_instr()
565 offset = nir_iadd_imm(b, offset, base_offset - new_base_offset); in fixup_load_uniform_instr()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/
Dgstexiftag.c236 guint32 base_offset; member
461 GstBuffer * buf, guint32 base_offset) in gst_exif_reader_init() argument
467 reader->base_offset = base_offset; in gst_exif_reader_init()
1253 if (offset < reader->base_offset) { in parse_exif_ascii_tag()
1255 reader->base_offset); in parse_exif_ascii_tag()
1259 real_offset = offset - reader->base_offset; in parse_exif_ascii_tag()
1387 if (offset < reader->base_offset) { in parse_exif_undefined_tag()
1389 reader->base_offset); in parse_exif_undefined_tag()
1393 real_offset = offset - reader->base_offset; in parse_exif_undefined_tag()
1457 if (offset < exif_reader->base_offset) { in exif_reader_read_rational_tag()
[all …]
Dtag.h557 guint32 base_offset);
565 guint32 base_offset);
/third_party/node/deps/v8/src/objects/
Djs-regexp.cc36 int base_offset = i * 2; in BuildIndices() local
37 int start_offset = match_info->Capture(base_offset); in BuildIndices()
38 int end_offset = match_info->Capture(base_offset + 1); in BuildIndices()
76 int base_offset = i * 2; in BuildIndices() local
77 int name_offset = base_offset; in BuildIndices()
78 int index_offset = base_offset + 1; in BuildIndices()
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_query_hw.c61 &hq->bo, &hq->base_offset); in nv50_hw_query_allocate()
64 hq->offset = hq->base_offset; in nv50_hw_query_allocate()
71 hq->data = (uint32_t *)((uint8_t *)hq->bo->map + hq->base_offset); in nv50_hw_query_allocate()
138 if (hq->offset - hq->base_offset == NV50_HW_QUERY_ALLOC_SPACE) in nv50_hw_begin_query()
Dnv50_query_hw.h32 uint32_t base_offset; member
/third_party/mesa3d/src/virtio/vulkan/
Dvn_device_memory.h35 VkDeviceSize base_offset; member
/third_party/mesa3d/src/intel/vulkan/
Danv_nir_compute_push_layout.c159 unsigned base_offset = in anv_nir_compute_push_layout() local
164 base_offset); in anv_nir_compute_push_layout()
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_query_hw.h32 uint32_t base_offset; member

1234