Home
last modified time | relevance | path

Searched refs:tmp_ptr (Results 1 – 10 of 10) sorted by relevance

/third_party/selinux/libsepol/src/
Dusers.c226 void *tmp_ptr; in sepol_user_modify() local
229 tmp_ptr = reallocarray(policydb->user_val_to_struct, in sepol_user_modify()
232 if (!tmp_ptr) in sepol_user_modify()
234 policydb->user_val_to_struct = tmp_ptr; in sepol_user_modify()
237 tmp_ptr = reallocarray(policydb->sym_val_to_name[SYM_USERS], in sepol_user_modify()
240 if (!tmp_ptr) in sepol_user_modify()
242 policydb->sym_val_to_name[SYM_USERS] = tmp_ptr; in sepol_user_modify()
/third_party/ffmpeg/libavcodec/
Dshorten.c532 void *tmp_ptr; in shorten_decode_frame() local
534 tmp_ptr = av_fast_realloc(s->bitstream, &s->allocated_bitstream_size, in shorten_decode_frame()
536 if (!tmp_ptr) { in shorten_decode_frame()
541 memset(tmp_ptr, 0, s->allocated_bitstream_size); in shorten_decode_frame()
542 s->bitstream = tmp_ptr; in shorten_decode_frame()
581 void *tmp_ptr; in shorten_decode_frame() local
584 tmp_ptr = av_fast_realloc(s->bitstream, &s->allocated_bitstream_size, in shorten_decode_frame()
586 if (!tmp_ptr) { in shorten_decode_frame()
590 s->bitstream = tmp_ptr; in shorten_decode_frame()
Dvp9dsp_template.c2050 pixel tmp[64 * 71], *tmp_ptr = tmp; in do_8tap_2d_c() local
2061 tmp_ptr[x] = FILTER_8TAP(src, x, filterx, 1); in do_8tap_2d_c()
2063 tmp_ptr += 64; in do_8tap_2d_c()
2067 tmp_ptr = tmp + 64 * 3; in do_8tap_2d_c()
2073 dst[x] = (dst[x] + FILTER_8TAP(tmp_ptr, x, filtery, 64) + 1) >> 1; in do_8tap_2d_c()
2075 dst[x] = FILTER_8TAP(tmp_ptr, x, filtery, 64); in do_8tap_2d_c()
2078 tmp_ptr += 64; in do_8tap_2d_c()
2164 pixel tmp[64 * 65], *tmp_ptr = tmp; in do_bilin_2d_c() local
2175 tmp_ptr[x] = FILTER_BILIN(src, x, mx, 1); in do_bilin_2d_c()
2177 tmp_ptr += 64; in do_bilin_2d_c()
[all …]
Ddvbsubdec.c1301 DVBSubRegionDisplay *tmp_display_list, **tmp_ptr; in dvbsub_parse_page_segment() local
1351 tmp_ptr = &tmp_display_list; in dvbsub_parse_page_segment()
1354 tmp_ptr = &display->next; in dvbsub_parse_page_segment()
1371 *tmp_ptr = display->next; in dvbsub_parse_page_segment()
/third_party/pulseaudio/src/tests/
Dlfe-filter-test.c130 short *tmp_ptr; in START_TEST() local
143 tmp_ptr = (short *) ori_sample_ptr; in START_TEST()
145 *tmp_ptr++ = random(); in START_TEST()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_format_aos.c809 LLVMValueRef tmp_ptr; in lp_build_fetch_rgba_aos() local
849 tmp_ptr = lp_build_alloca(gallivm, i32t, ""); in lp_build_fetch_rgba_aos()
862 args[0] = LLVMBuildBitCast(builder, tmp_ptr, pi8t, ""); in lp_build_fetch_rgba_aos()
877 tmp = LLVMBuildLoad2(builder, i32t, tmp_ptr, ""); in lp_build_fetch_rgba_aos()
915 LLVMValueRef tmp_ptr; in lp_build_fetch_rgba_aos() local
952 tmp_ptr = lp_build_alloca(gallivm, f32x4t, ""); in lp_build_fetch_rgba_aos()
962 args[0] = LLVMBuildBitCast(builder, tmp_ptr, pf32t, ""); in lp_build_fetch_rgba_aos()
978 tmps[k] = LLVMBuildLoad2(builder, f32x4t, tmp_ptr, ""); in lp_build_fetch_rgba_aos()
/third_party/ffmpeg/libavfilter/
Daf_ashowinfo.c188 void *tmp_ptr = av_realloc_array(s->plane_checksums, channels, sizeof(*s->plane_checksums)); in filter_frame() local
190 if (!tmp_ptr) in filter_frame()
192 s->plane_checksums = tmp_ptr; in filter_frame()
/third_party/openssl/crypto/modes/
Docb128.c102 void *tmp_ptr; in ocb_lookup_l() local
113 tmp_ptr = OPENSSL_realloc(ctx->l, ctx->max_l_index * sizeof(OCB_BLOCK)); in ocb_lookup_l()
114 if (tmp_ptr == NULL) /* prevent ctx->l from being clobbered */ in ocb_lookup_l()
116 ctx->l = tmp_ptr; in ocb_lookup_l()
/third_party/node/deps/openssl/openssl/crypto/modes/
Docb128.c102 void *tmp_ptr; in ocb_lookup_l() local
113 tmp_ptr = OPENSSL_realloc(ctx->l, ctx->max_l_index * sizeof(OCB_BLOCK)); in ocb_lookup_l()
114 if (tmp_ptr == NULL) /* prevent ctx->l from being clobbered */ in ocb_lookup_l()
116 ctx->l = tmp_ptr; in ocb_lookup_l()
/third_party/gstreamer/gstplugins_bad/gst/dvbsuboverlay/
Ddvb-sub.c368 DVBSubRegionDisplay *tmp_display_list, **tmp_ptr; in _dvb_sub_parse_page_segment() local
405 tmp_ptr = &tmp_display_list; in _dvb_sub_parse_page_segment()
408 tmp_ptr = &display->next; in _dvb_sub_parse_page_segment()
422 *tmp_ptr = display->next; in _dvb_sub_parse_page_segment()