Home
last modified time | relevance | path

Searched refs:src_p (Results 1 - 10 of 10) sorted by relevance

/third_party/jerryscript/jerry-core/parser/regexp/
H A Dre-bytecode.c172 re_decode_u16 (const uint8_t *src_p) /**< source */ in re_decode_u16() argument
174 uint16_t value = (uint16_t) (((uint16_t) *src_p++) << 8); in re_decode_u16()
175 value = (uint16_t) (value + *src_p++); in re_decode_u16()
185 re_decode_u32 (const uint8_t *src_p) /**< source */ in re_decode_u32() argument
187 uint32_t value = (uint32_t) (((uint32_t) *src_p++) << 24); in re_decode_u32()
188 value += (uint32_t) (((uint32_t) *src_p++) << 16); in re_decode_u32()
189 value += (uint32_t) (((uint32_t) *src_p++) << 8); in re_decode_u32()
190 value += (uint32_t) (*src_p++); in re_decode_u32()
/third_party/ffmpeg/libavfilter/
H A Dvf_nnedi.c237 const float *src_p = src; in process_old() local
240 const float *window = src_p - 2 * src_stride - 5; in process_old()
273 const float *src_p = src; in process_new() local
276 const float *window = src_p - 2 * src_stride - 6; in process_new()
395 const float *src_p = src; in predictor() local
399 const float *window = src_p - (model->ydim / 2) * src_stride - (model->xdim / 2 - 1); in predictor()
516 const float *src_p = src; in interpolation() local
518 const float *window = src_p - 2 * src_stride; in interpolation()
/third_party/jerryscript/jerry-core/ecma/operations/
H A Decma-typedarray-object.h34 ecma_number_t ecma_get_typedarray_element (lit_utf8_byte_t *src_p,
H A Decma-typedarray-object.c393 ecma_get_typedarray_element (lit_utf8_byte_t *src_p, in ecma_get_typedarray_element() argument
396 return ecma_typedarray_getters[typedarray_id](src_p); in ecma_get_typedarray_element()
/third_party/ffmpeg/libavformat/
H A Davisynth.c907 const unsigned char *src_p; in avisynth_read_packet_video() local
948 src_p = avs_library.avs_get_read_ptr_p(frame, plane); in avisynth_read_packet_video()
958 src_p = src_p + (planeheight - 1) * pitch; in avisynth_read_packet_video()
962 avs_library.avs_bit_blt(avs->env, dst_p, rowsize, src_p, pitch, in avisynth_read_packet_video()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_opt_copy_prop_vars.c691 nir_deref_instr **src_p = &src_path->path[1]; in load_from_deref_entry_value() local
692 while (*entry_p && *src_p) { in load_from_deref_entry_value()
694 nir_deref_instr *src_tail = *src_p++; in load_from_deref_entry_value()
722 while (*src_p) { in load_from_deref_entry_value()
723 nir_deref_instr *src_tail = *src_p++; in load_from_deref_entry_value()
H A Dnir_split_vars.c655 nir_deref_instr *dst_p, *src_p; in emit_split_copies() local
665 while ((src_p = src_path->path[src_level + 1])) { in emit_split_copies()
666 if (src_p->deref_type == nir_deref_type_array_wildcard) in emit_split_copies()
669 src = nir_build_deref_follower(b, src, src_p); in emit_split_copies()
673 if (src_p == NULL || dst_p == NULL) { in emit_split_copies()
674 assert(src_p == NULL && dst_p == NULL); in emit_split_copies()
678 src_p->deref_type == nir_deref_type_array_wildcard); in emit_split_copies()
/third_party/ltp/tools/sparse/sparse-src/
H A Dexample.c1173 static void replace_asm_percent(const char **src_p, char **dst_p, struct asm_arg *args, int nr) in replace_asm_percent() argument
1175 const char *src = *src_p; in replace_asm_percent()
1187 *src_p = src; in replace_asm_percent()
1191 static void replace_asm_named(const char **src_p, char **dst_p, struct asm_arg *args, int nr) in replace_asm_named() argument
1193 const char *src = *src_p; in replace_asm_named()
1203 *src_p = end; in replace_asm_named()
/third_party/libbpf/src/
H A Dlinker.c1747 struct btf_param *src_p, *dst_p; in complete_extern_btf_info() local
1776 src_p = btf_params(src_t); in complete_extern_btf_info()
1778 for (i = 0, n = btf_vlen(dst_t); i < n; i++, src_p++, dst_p++) { in complete_extern_btf_info()
1779 if (!src_p->name_off) in complete_extern_btf_info()
1783 s = btf__str_by_offset(src_btf, src_p->name_off); in complete_extern_btf_info()
/third_party/jerryscript/jerry-core/parser/js/
H A Djs-lexer.c2476 const uint8_t *src_p = context_p->token.lit_location.char_p; in lexer_construct_number_object() local
2477 const uint8_t *src_end_p = src_p + length - 1; in lexer_construct_number_object()
2490 src_p++; in lexer_construct_number_object()
2491 num = num * multiplier + (ecma_number_t) (*src_p - LIT_CHAR_0); in lexer_construct_number_object()
2493 while (src_p < src_end_p); in lexer_construct_number_object()

Completed in 21 milliseconds