| /third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/dec/ |
| D | decoder_jni.cc | 19 size_t input_offset; member 57 handle->input_offset = 0; in Java_org_brotli_wrapper_dec_DecoderJNI_nativeCreate() 118 if (handle->input_offset < handle->input_length) { in Java_org_brotli_wrapper_dec_DecoderJNI_nativePush() 121 handle->input_offset = 0; in Java_org_brotli_wrapper_dec_DecoderJNI_nativePush() 126 const uint8_t* in = handle->input_start + handle->input_offset; in Java_org_brotli_wrapper_dec_DecoderJNI_nativePush() 127 size_t in_size = handle->input_length - handle->input_offset; in Java_org_brotli_wrapper_dec_DecoderJNI_nativePush() 131 handle->input_offset = handle->input_length - in_size; in Java_org_brotli_wrapper_dec_DecoderJNI_nativePush() 135 context[1] = (handle->input_offset == handle->input_length) ? 1 : 0; in Java_org_brotli_wrapper_dec_DecoderJNI_nativePush() 174 context[1] = (handle->input_offset == handle->input_length) ? 1 : 0; in Java_org_brotli_wrapper_dec_DecoderJNI_nativePull() 177 context[1] = (handle->input_offset == handle->input_length) ? 2 : 4; in Java_org_brotli_wrapper_dec_DecoderJNI_nativePull()
|
| /third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/enc/ |
| D | encoder_jni.cc | 19 size_t input_offset; member 56 handle->input_offset = 0; in Java_org_brotli_wrapper_enc_EncoderJNI_nativeCreate() 130 if (handle->input_offset < handle->input_last) { in Java_org_brotli_wrapper_enc_EncoderJNI_nativePush() 133 handle->input_offset = 0; in Java_org_brotli_wrapper_enc_EncoderJNI_nativePush() 138 const uint8_t* in = handle->input_start + handle->input_offset; in Java_org_brotli_wrapper_enc_EncoderJNI_nativePush() 139 size_t in_size = handle->input_last - handle->input_offset; in Java_org_brotli_wrapper_enc_EncoderJNI_nativePush() 143 handle->input_offset = handle->input_last - in_size; in Java_org_brotli_wrapper_enc_EncoderJNI_nativePush() 147 context[3] = (handle->input_offset != handle->input_last) ? 1 : 0; in Java_org_brotli_wrapper_enc_EncoderJNI_nativePush() 171 context[3] = (handle->input_offset != handle->input_last) ? 1 : 0; in Java_org_brotli_wrapper_enc_EncoderJNI_nativePull()
|
| /third_party/mesa3d/src/gallium/auxiliary/draw/ |
| D | draw_prim_assembler.c | 122 unsigned input_offset = asmblr->input_verts->stride * idx; in copy_verts() local 123 memcpy(output + output_offset, input + input_offset, in copy_verts() 138 unsigned input_offset = asmblr->input_verts->stride * idx; in inject_primid() local 139 struct vertex_header *v = (struct vertex_header*)(input + input_offset); in inject_primid()
|
| D | draw_vs_variant.c | 330 fetch.element[i].input_offset = key->element[i].in.offset; in draw_vs_create_variant_generic() 346 emit.element[i].input_offset = key->element[i].out.vs_output * 4 * sizeof(float); in draw_vs_create_variant_generic() 350 assert(emit.element[i].input_offset <= fetch.output_stride); in draw_vs_create_variant_generic() 356 emit.element[i].input_offset = 0; in draw_vs_create_variant_generic()
|
| D | draw_pt_fetch.c | 94 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset; in draw_pt_fetch_prepare() 105 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset; in draw_pt_fetch_prepare() 116 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset; in draw_pt_fetch_prepare()
|
| D | draw_pt_emit.c | 109 hw_key.element[i].input_offset = src_offset; in draw_pt_emit_prepare()
|
| D | draw_pipe_vbuf.c | 236 hw_key.element[i].input_offset = src_offset; in vbuf_start_prim()
|
| /third_party/ffmpeg/libavfilter/ |
| D | af_afir.h | 41 int input_offset; member
|
| D | af_afir.c | 92 … s->fdsp->vector_fmul_scalar(src + seg->input_offset, in, s->dry_gain, FFALIGN(nb_samples, 4)); in fir_quantum() 96 src[seg->input_offset + n] = in[n] * s->dry_gain; in fir_quantum() 394 seg->input_offset = offset; in init_segment() 602 av_log(ctx, AV_LOG_DEBUG, "input_offset: %d\n", seg->input_offset); in convert_coeffs()
|
| /third_party/mesa3d/src/gallium/auxiliary/translate/ |
| D | translate.h | 73 unsigned input_offset:24; member
|
| D | translate_generic.c | 56 unsigned input_offset; member 741 tg->attrib[i].input_offset); in generic_set_buffer() 817 tg->attrib[i].input_offset = key->element[i].input_offset; in translate_generic_create()
|
| D | translate_sse.c | 1421 x86_make_disp(vb, a->input_offset), in build_vertex_emit()
|
| /third_party/mesa3d/src/gallium/drivers/d3d12/ |
| D | d3d12_compute_transforms.cpp | 136 nir_ssa_def *input_offset = nir_iadd(&b, input_offset_base, field_offset); in get_fake_so_buffer_copy_back() local 142 nir_iadd(&b, input_offset, nir_imm_int(&b, loaded)), (gl_access_qualifier)0, 4, 0); in get_fake_so_buffer_copy_back()
|
| /third_party/node/deps/v8/src/deoptimizer/ |
| D | deoptimizer.h | 103 static int input_offset() { return offsetof(Deoptimizer, input_); } in input_offset() function
|
| /third_party/mesa3d/src/gallium/tests/unit/ |
| D | translate_test.c | 148 key.element[0].input_offset = 0; in main()
|
| /third_party/mesa3d/src/gallium/frontends/nine/ |
| D | vertexdeclaration9.c | 501 transkey.element[i].input_offset = so->output[i].dst_offset * 4; in NineVertexDeclaration9_ConvertStreamOutput()
|
| /third_party/mesa3d/src/freedreno/ir3/ |
| D | ir3_print.c | 407 instr->prefetch.input_offset); in print_instr()
|
| D | ir3_compiler_nir.c | 3203 sam->prefetch.input_offset = ir3_nir_coord_offset(tex->src[idx].src.ssa); in emit_tex() 4029 unsigned inloc = instr->prefetch.input_offset + n; in pack_inlocs() 4104 unsigned i = instr->prefetch.input_offset / 4; in pack_inlocs() 4105 unsigned j = instr->prefetch.input_offset % 4; in pack_inlocs() 4106 instr->prefetch.input_offset = so->inputs[i].inloc + j; in pack_inlocs() 4577 fetch->src = instr->prefetch.input_offset; in collect_tex_prefetches() 4587 MAX2(ctx->so->total_in, instr->prefetch.input_offset + 2); in collect_tex_prefetches()
|
| /third_party/gstreamer/gstplugins_base/gst-libs/gst/video/ |
| D | gstvideodecoder.c | 391 guint64 input_offset; member 2303 GST_TIME_ARGS (GST_BUFFER_DTS (buffer)), priv->input_offset); in gst_video_decoder_add_buffer_info() 2305 ts->offset = priv->input_offset; in gst_video_decoder_add_buffer_info() 2493 priv->input_offset = 0; in gst_video_decoder_reset() 2537 priv->input_offset += gst_buffer_get_size (buf); in gst_video_decoder_chain_forward() 3908 priv->input_offset - gst_adapter_available (priv->input_adapter); in gst_video_decoder_add_to_frame()
|
| /third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
| D | nv30_vbo.c | 301 transkey.element[j].input_offset = ve->src_offset;
|
| /third_party/python/Doc/tools/extensions/ |
| D | pyspecific.py | 423 self.lineno - self.state_machine.input_offset - 1)
|
| /third_party/mbedtls/library/ |
| D | ssl_tls.c | 8690 size_t input_offset = 0; in mbedtls_psa_ecjpake_read_round() local 8702 size_t length = buf[input_offset]; in mbedtls_psa_ecjpake_read_round() 8703 input_offset += 1; in mbedtls_psa_ecjpake_read_round() 8705 if (input_offset + length > len) { in mbedtls_psa_ecjpake_read_round() 8710 buf + input_offset, length); in mbedtls_psa_ecjpake_read_round() 8715 input_offset += length; in mbedtls_psa_ecjpake_read_round() 8719 if (input_offset != len) { in mbedtls_psa_ecjpake_read_round()
|
| /third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
| D | nv50_vbo.c | 112 transkey.element[j].input_offset = ve->src_offset; in nv50_vertex_state_create()
|
| /third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
| D | nvc0_vbo.c | 128 transkey.element[j].input_offset = ve->src_offset; in nvc0_vertex_state_create()
|
| /third_party/mesa3d/src/gallium/auxiliary/util/ |
| D | u_vbuf.c | 777 te->input_offset = mgr->ve->ve[i].src_offset; in u_vbuf_translate_begin()
|