/third_party/musl/src/misc/ |
D | ioctl.c | 86 int old_offset = 0; in convert_ioctl_struct() local 103 int len = ts_offset-old_offset; in convert_ioctl_struct() 104 if (dir==W) memcpy(old+old_offset, new+new_offset, len); in convert_ioctl_struct() 105 else memcpy(new+new_offset, old+old_offset, len); in convert_ioctl_struct() 107 old_offset += len; in convert_ioctl_struct() 115 memcpy(old+old_offset, &old_ts, sizeof old_ts); in convert_ioctl_struct() 117 memcpy(&old_ts, old+old_offset, sizeof old_ts); in convert_ioctl_struct() 122 old_offset += sizeof old_ts; in convert_ioctl_struct() 124 if (dir==W) memcpy(old+old_offset, new+new_offset, old_size-old_offset); in convert_ioctl_struct() 125 else memcpy(new+new_offset, old+old_offset, old_size-old_offset); in convert_ioctl_struct()
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/tools/subsetter/ |
D | glyph_table_subsetter.cc | 72 int old_offset = loca_table->GlyphOffset(*old_glyph_id); in Subset() local 75 glyph.Attach(glyph_table->GetGlyph(old_offset, old_length)); in Subset()
|
/third_party/mesa3d/src/gallium/drivers/i915/ |
D | i915_debug.c | 187 unsigned old_offset = stream->offset + len * sizeof(unsigned); in debug_chain() local 196 if (stream->offset < old_offset) in debug_chain() 197 mesa_logi("... skipping backwards from 0x%x --> 0x%x ...", old_offset, in debug_chain() 200 mesa_logi("... skipping from 0x%x --> 0x%x ...", old_offset, in debug_chain()
|
/third_party/mesa3d/src/mesa/vbo/ |
D | vbo_save_api.c | 769 const GLintptr old_offset = save->VAO[0] ? in compile_vertex_list() local 771 if (old_offset != save->current_bo_bytes_used && stride > 0) { in compile_vertex_list() 772 GLintptr offset_diff = save->current_bo_bytes_used - old_offset; in compile_vertex_list() 777 offset_diff = save->current_bo_bytes_used - old_offset; in compile_vertex_list() 805 assert(old_offset <= buffer_offset); in compile_vertex_list() 806 const GLintptr offset_diff = buffer_offset - old_offset; in compile_vertex_list() 820 assert(old_offset == buffer_offset - offset_diff); in compile_vertex_list() 821 buffer_offset = old_offset; in compile_vertex_list()
|
D | vbo_exec_api.c | 377 GLint old_offset = old_attrptr[j] - exec->vtx.vertex; in vbo_exec_wrap_upgrade_vertex() local 386 data + old_offset, in vbo_exec_wrap_upgrade_vertex() 395 COPY_SZ_4V(dest + new_offset, sz, data + old_offset); in vbo_exec_wrap_upgrade_vertex()
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_info.cpp | 1526 int64 old_offset = stream.Get_uint32 (); in ParseDNGPrivateData() local 1546 0 - old_offset, in ParseDNGPrivateData() 1565 uint64 old_offset = stream.Get_uint32 (); in ParseDNGPrivateData() local 1574 old_offset, in ParseDNGPrivateData()
|
/third_party/libcoap/src/ |
D | coap_resource.c | 143 const size_t old_offset = offset; local 259 if (result + old_offset - offset < *buflen) { 622 const size_t old_offset = *offset; local 666 if (result + old_offset - *offset < *len) {
|
/third_party/pcre2/pcre2/src/sljit/ |
D | sljitNativeARM_T2_32.c | 1148 sljit_u32 old_offset, f32_offset; in sljit_emit_enter() local 1254 old_offset = SLJIT_FR0; in sljit_emit_enter() 1260 if (offset != old_offset) in sljit_emit_enter() 1261 *remap_ptr++ = VMOV_F32 | SLJIT_32 | DD4(offset) | DM4(old_offset); in sljit_emit_enter() 1262 old_offset++; in sljit_emit_enter() 1270 if (offset != old_offset) in sljit_emit_enter() 1271 *remap_ptr++ = VMOV_F32 | DD4(offset) | DM4(old_offset); in sljit_emit_enter() 1272 f32_offset = old_offset; in sljit_emit_enter() 1273 old_offset++; in sljit_emit_enter()
|
D | sljitNativeARM_32.c | 1069 sljit_u32 old_offset, f32_offset; in sljit_emit_enter() local 1178 old_offset = SLJIT_FR0; in sljit_emit_enter() 1184 if (offset != old_offset) in sljit_emit_enter() 1185 *remap_ptr++ = EMIT_FPU_OPERATION(VMOV_F32, SLJIT_32, offset, old_offset, 0); in sljit_emit_enter() 1186 old_offset++; in sljit_emit_enter() 1194 if (offset != old_offset) in sljit_emit_enter() 1195 *remap_ptr++ = EMIT_FPU_OPERATION(VMOV_F32, 0, offset, old_offset, 0); in sljit_emit_enter() 1196 f32_offset = old_offset; in sljit_emit_enter() 1197 old_offset++; in sljit_emit_enter()
|
/third_party/elfutils/src/ |
D | nm.c | 623 Dwarf_Off old_offset; in get_local_names() local 626 while (dwarf_nextcu (dbg, old_offset = offset, &offset, &hsize, NULL, NULL, in get_local_names() 630 Dwarf_Die *cudie = dwarf_offdie (dbg, old_offset + hsize, &cudie_mem); in get_local_names()
|
/third_party/ffmpeg/libavformat/ |
D | demux.c | 1721 static void estimate_timings_from_pts(AVFormatContext *ic, int64_t old_offset) in estimate_timings_from_pts() argument 1847 avio_seek(ic->pb, old_offset, SEEK_SET); in estimate_timings_from_pts() 1872 static void estimate_timings(AVFormatContext *ic, int64_t old_offset) in estimate_timings() argument 1888 estimate_timings_from_pts(ic, old_offset); in estimate_timings() 2419 int64_t old_offset = avio_tell(ic->pb); in avformat_find_stream_info() local 2899 estimate_timings(ic, old_offset); in avformat_find_stream_info()
|
/third_party/elfutils/debuginfod/ |
D | debuginfod.cxx | 2804 Dwarf_Off old_offset; in dwarf_extract_source_paths() local 2807 while (dwarf_nextcu (dbg, old_offset = offset, &offset, &hsize, NULL, NULL, NULL) == 0) in dwarf_extract_source_paths() 2810 Dwarf_Die *cudie = dwarf_offdie (dbg, old_offset + hsize, &cudie_mem); in dwarf_extract_source_paths()
|