/third_party/ffmpeg/libavfilter/ |
H A D | vf_dedot.c | 53 AVFrame *frames[5]; member 83 int src_linesize = s->frames[2]->linesize[0] / div; \ 85 int p0_linesize = s->frames[0]->linesize[0] / div; \ 86 int p1_linesize = s->frames[1]->linesize[0] / div; \ 87 int p3_linesize = s->frames[3]->linesize[0] / div; \ 88 int p4_linesize = s->frames[4]->linesize[0] / div; \ 92 type *p0 = (type *)s->frames[0]->data[0]; \ 93 type *p1 = (type *)s->frames[1]->data[0]; \ 94 type *p3 = (type *)s->frames[3]->data[0]; \ 95 type *p4 = (type *)s->frames[ [all...] |
H A D | af_amultiply.c | 35 AVFrame *frames[2]; member 55 if (s->frames[i]) in activate() 59 ret = ff_inlink_consume_samples(ctx->inputs[i], nb_samples, nb_samples, &s->frames[i]); in activate() 65 if (s->frames[0] && s->frames[1]) { in activate() 70 plane_samples = FFALIGN(s->frames[0]->nb_samples, s->samples_align); in activate() 72 plane_samples = FFALIGN(s->frames[0]->nb_samples * s->channels, s->samples_align); in activate() 74 out = ff_get_audio_buffer(ctx->outputs[0], s->frames[0]->nb_samples); in activate() 78 out->pts = s->frames[0]->pts; in activate() 83 (const float *)s->frames[ in activate() [all...] |
/third_party/elfutils/src/ |
H A D | stack.c | 1 /* Unwinding of frames like gstack/pstack. 63 struct frames struct 65 int frames; member 96 /* Whether any frames have been shown at all. Determines exit status. */ 99 /* Program exit codes. All frames shown without any errors is GOOD. 100 Some frames shown with some non-fatal errors is an ERROR. A fatal 101 error or no frames shown at all is BAD. A command line USAGE exit 180 struct frames *frames = (struct frames *) ar in frame_callback() local 364 print_frames(struct frames *frames, pid_t tid, int dwflerr, const char *what) print_frames() argument 459 struct frames *frames = (struct frames *) thread_arg; thread_callback() local 705 struct frames frames; main() local [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | audio_frame_queue.c | 39 av_log(afq->avctx, AV_LOG_WARNING, "%d frames left in the queue on closing\n", afq->frame_count); in ff_af_queue_close() 40 av_freep(&afq->frames); in ff_af_queue_close() 46 AudioFrame *new = av_fast_realloc(afq->frames, &afq->frame_alloc, sizeof(*afq->frames)*(afq->frame_count+1)); in ff_af_queue_add() 49 afq->frames = new; in ff_af_queue_add() 83 if (afq->frames->pts != AV_NOPTS_VALUE) in ff_af_queue_remove() 84 out_pts = afq->frames->pts; in ff_af_queue_remove() 92 int n= FFMIN(afq->frames[i].duration, nb_samples); in ff_af_queue_remove() 93 afq->frames[i].duration -= n; in ff_af_queue_remove() 96 if(afq->frames[ in ff_af_queue_remove() [all...] |
H A D | mimic.c | 56 ThreadFrame frames [16]; member 114 for (i = 0; i < FF_ARRAY_ELEMS(ctx->frames); i++) { in mimic_decode_end() 115 if (ctx->frames[i].f) in mimic_decode_end() 116 ff_thread_release_ext_buffer(avctx, &ctx->frames[i]); in mimic_decode_end() 117 av_frame_free(&ctx->frames[i].f); in mimic_decode_end() 144 for (i = 0; i < FF_ARRAY_ELEMS(ctx->frames); i++) { in mimic_decode_init() 145 ctx->frames[i].f = av_frame_alloc(); in mimic_decode_init() 146 if (!ctx->frames[i].f) in mimic_decode_init() 167 for (i = 0; i < FF_ARRAY_ELEMS(dst->frames); i++) { in mimic_decode_update_thread_context() 168 ff_thread_release_ext_buffer(avctx, &dst->frames[ in mimic_decode_update_thread_context() [all...] |
/third_party/alsa-lib/src/pcm/ |
H A D | pcm_plugin.c | 190 snd_pcm_sframes_t snd_pcm_plugin_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_plugin_rewind() argument 196 if ((snd_pcm_uframes_t)n < frames) in snd_pcm_plugin_rewind() 197 frames = n; in snd_pcm_plugin_rewind() 198 if (frames == 0) in snd_pcm_plugin_rewind() 201 sframes = frames; in snd_pcm_plugin_rewind() 214 snd_pcm_sframes_t snd_pcm_plugin_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_plugin_forward() argument 220 if ((snd_pcm_uframes_t)n < frames) in snd_pcm_plugin_forward() 221 frames = n; in snd_pcm_plugin_forward() 222 if (frames == 0) in snd_pcm_plugin_forward() 225 sframes = frames; in snd_pcm_plugin_forward() 245 snd_pcm_uframes_t frames = size; snd_pcm_plugin_write_areas() local 302 snd_pcm_uframes_t frames = size; snd_pcm_plugin_read_areas() local 409 snd_pcm_uframes_t frames = size; snd_pcm_plugin_mmap_commit() local 474 snd_pcm_uframes_t frames = size; snd_pcm_plugin_sync_hw_ptr_capture() local [all...] |
H A D | pcm_mmap.c | 33 void snd_pcm_mmap_appl_backward(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_mmap_appl_backward() argument 36 appl_ptr -= frames; in snd_pcm_mmap_appl_backward() 42 void snd_pcm_mmap_appl_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_mmap_appl_forward() argument 45 appl_ptr += frames; in snd_pcm_mmap_appl_forward() 51 void snd_pcm_mmap_hw_backward(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_mmap_hw_backward() argument 54 hw_ptr -= frames; in snd_pcm_mmap_hw_backward() 60 void snd_pcm_mmap_hw_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_mmap_hw_forward() argument 63 hw_ptr += frames; in snd_pcm_mmap_hw_forward() 83 snd_pcm_uframes_t frames = size; in snd_pcm_mmap_write_areas() local 86 __snd_pcm_mmap_begin(pcm, &pcm_areas, &pcm_offset, &frames); in snd_pcm_mmap_write_areas() 115 snd_pcm_uframes_t frames = size; snd_pcm_mmap_read_areas() local 536 snd_pcm_uframes_t frames = size - xfer; snd_pcm_write_mmap() local 592 snd_pcm_uframes_t frames = size - xfer; snd_pcm_read_mmap() local [all...] |
/base/hiviewdfx/faultloggerd/interfaces/innerkits/formatter/ |
H A D | dfx_json_formatter.cpp | 30 static bool FormatJsFrame(const Json::Value& frames, const uint32_t& frameIdx, std::string& outStr) in FormatJsFrame() argument 39 std::string symbol = frames[frameIdx]["symbol"].asString(); in FormatJsFrame() 40 std::string file = frames[frameIdx]["file"].asString(); in FormatJsFrame() 41 std::string line = frames[frameIdx]["line"].asString(); in FormatJsFrame() 42 std::string column = frames[frameIdx]["column"].asString(); in FormatJsFrame() 47 static bool FormatNativeFrame(const Json::Value& frames, const uint32_t& frameIdx, std::string& outStr) in FormatNativeFrame() argument 51 std::string buildId = frames[frameIdx]["buildId"].asString(); in FormatNativeFrame() 52 std::string file = frames[frameIdx]["file"].asString(); in FormatNativeFrame() 53 std::string offset = frames[frameIdx]["offset"].asString(); in FormatNativeFrame() 54 std::string pc = frames[frameId in FormatNativeFrame() 87 const Json::Value frames = thread["frames"]; FormatJsonStack() local [all...] |
/kernel/linux/linux-6.6/sound/core/oss/ |
H A D | pcm_plugin.c | 49 static int snd_pcm_plugin_alloc(struct snd_pcm_plugin *plugin, snd_pcm_uframes_t frames) in snd_pcm_plugin_alloc() argument 65 size = array3_size(frames, format->channels, width); in snd_pcm_plugin_alloc() 72 if (plugin->buf_frames < frames) { in snd_pcm_plugin_alloc() 75 plugin->buf_frames = frames; in snd_pcm_plugin_alloc() 84 c->frames = frames; in snd_pcm_plugin_alloc() 96 c->frames = frames; in snd_pcm_plugin_alloc() 108 int snd_pcm_plug_alloc(struct snd_pcm_substream *plug, snd_pcm_uframes_t frames) in snd_pcm_plug_alloc() argument 117 frames in snd_pcm_plug_alloc() 142 snd_pcm_plugin_client_channels(struct snd_pcm_plugin *plugin, snd_pcm_uframes_t frames, struct snd_pcm_plugin_channel **channels) snd_pcm_plugin_client_channels() argument 203 calc_dst_frames(struct snd_pcm_substream *plug, snd_pcm_sframes_t frames, bool check_size) calc_dst_frames() argument 225 calc_src_frames(struct snd_pcm_substream *plug, snd_pcm_sframes_t frames, bool check_size) calc_src_frames() argument 602 snd_pcm_sframes_t frames = size; snd_pcm_plug_write_transfer() local 643 snd_pcm_sframes_t frames = size; snd_pcm_plug_read_transfer() local [all...] |
H A D | route.c | 28 snd_pcm_uframes_t frames, snd_pcm_format_t format) in zero_areas() 33 snd_pcm_area_silence(&dvp->area, 0, frames, format); in zero_areas() 41 snd_pcm_uframes_t frames, snd_pcm_format_t format) in copy_area() 44 snd_pcm_area_copy(&src_channel->area, 0, &dst_channel->area, 0, frames, format); in copy_area() 50 snd_pcm_uframes_t frames) in route_transfer() 58 if (frames == 0) in route_transfer() 60 if (frames > dst_channels[0].frames) in route_transfer() 61 frames = dst_channels[0].frames; in route_transfer() 27 zero_areas(struct snd_pcm_plugin_channel *dvp, int ndsts, snd_pcm_uframes_t frames, snd_pcm_format_t format) zero_areas() argument 39 copy_area(const struct snd_pcm_plugin_channel *src_channel, struct snd_pcm_plugin_channel *dst_channel, snd_pcm_uframes_t frames, snd_pcm_format_t format) copy_area() argument 47 route_transfer(struct snd_pcm_plugin *plugin, const struct snd_pcm_plugin_channel *src_channels, struct snd_pcm_plugin_channel *dst_channels, snd_pcm_uframes_t frames) route_transfer() argument [all...] |
/kernel/linux/linux-5.10/sound/core/oss/ |
H A D | pcm_plugin.c | 49 static int snd_pcm_plugin_alloc(struct snd_pcm_plugin *plugin, snd_pcm_uframes_t frames) in snd_pcm_plugin_alloc() argument 64 size = array3_size(frames, format->channels, width); in snd_pcm_plugin_alloc() 71 if (plugin->buf_frames < frames) { in snd_pcm_plugin_alloc() 74 plugin->buf_frames = frames; in snd_pcm_plugin_alloc() 83 c->frames = frames; in snd_pcm_plugin_alloc() 95 c->frames = frames; in snd_pcm_plugin_alloc() 107 int snd_pcm_plug_alloc(struct snd_pcm_substream *plug, snd_pcm_uframes_t frames) in snd_pcm_plug_alloc() argument 116 frames in snd_pcm_plug_alloc() 141 snd_pcm_plugin_client_channels(struct snd_pcm_plugin *plugin, snd_pcm_uframes_t frames, struct snd_pcm_plugin_channel **channels) snd_pcm_plugin_client_channels() argument 202 calc_dst_frames(struct snd_pcm_substream *plug, snd_pcm_sframes_t frames, bool check_size) calc_dst_frames() argument 224 calc_src_frames(struct snd_pcm_substream *plug, snd_pcm_sframes_t frames, bool check_size) calc_src_frames() argument 600 snd_pcm_sframes_t frames = size; snd_pcm_plug_write_transfer() local 639 snd_pcm_sframes_t frames = size; snd_pcm_plug_read_transfer() local [all...] |
H A D | route.c | 28 snd_pcm_uframes_t frames, snd_pcm_format_t format) in zero_areas() 33 snd_pcm_area_silence(&dvp->area, 0, frames, format); in zero_areas() 41 snd_pcm_uframes_t frames, snd_pcm_format_t format) in copy_area() 44 snd_pcm_area_copy(&src_channel->area, 0, &dst_channel->area, 0, frames, format); in copy_area() 50 snd_pcm_uframes_t frames) in route_transfer() 58 if (frames == 0) in route_transfer() 60 if (frames > dst_channels[0].frames) in route_transfer() 61 frames = dst_channels[0].frames; in route_transfer() 27 zero_areas(struct snd_pcm_plugin_channel *dvp, int ndsts, snd_pcm_uframes_t frames, snd_pcm_format_t format) zero_areas() argument 39 copy_area(const struct snd_pcm_plugin_channel *src_channel, struct snd_pcm_plugin_channel *dst_channel, snd_pcm_uframes_t frames, snd_pcm_format_t format) copy_area() argument 47 route_transfer(struct snd_pcm_plugin *plugin, const struct snd_pcm_plugin_channel *src_channels, struct snd_pcm_plugin_channel *dst_channels, snd_pcm_uframes_t frames) route_transfer() argument [all...] |
/third_party/alsa-lib/test/ |
H A D | pcm_min.c | 15 snd_pcm_sframes_t frames; in main() local 36 frames = snd_pcm_writei(handle, buffer, sizeof(buffer)); in main() 37 if (frames < 0) in main() 38 frames = snd_pcm_recover(handle, frames, 0); in main() 39 if (frames < 0) { in main() 40 printf("snd_pcm_writei failed: %s\n", snd_strerror(frames)); in main() 43 if (frames > 0 && frames < (long)sizeof(buffer)) in main() 44 printf("Short write (expected %li, wrote %li)\n", (long)sizeof(buffer), frames); in main() [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/mediatek/mt76/ |
H A D | agg-rx.c | 16 mt76_aggr_release(struct mt76_rx_tid *tid, struct sk_buff_head *frames, int idx) in mt76_aggr_release() argument 28 __skb_queue_tail(frames, skb); in mt76_aggr_release() 33 struct sk_buff_head *frames, in mt76_rx_aggr_release_frames() 40 mt76_aggr_release(tid, frames, idx); in mt76_rx_aggr_release_frames() 45 mt76_rx_aggr_release_head(struct mt76_rx_tid *tid, struct sk_buff_head *frames) in mt76_rx_aggr_release_head() argument 50 mt76_aggr_release(tid, frames, idx); in mt76_rx_aggr_release_head() 56 mt76_rx_aggr_check_release(struct mt76_rx_tid *tid, struct sk_buff_head *frames) in mt76_rx_aggr_check_release() argument 65 mt76_rx_aggr_release_head(tid, frames); in mt76_rx_aggr_check_release() 84 mt76_rx_aggr_release_frames(tid, frames, status->seqno); in mt76_rx_aggr_check_release() 87 mt76_rx_aggr_release_head(tid, frames); in mt76_rx_aggr_check_release() 32 mt76_rx_aggr_release_frames(struct mt76_rx_tid *tid, struct sk_buff_head *frames, u16 head) mt76_rx_aggr_release_frames() argument 96 struct sk_buff_head frames; mt76_rx_aggr_reorder_work() local 119 mt76_rx_aggr_check_ctl(struct sk_buff *skb, struct sk_buff_head *frames) mt76_rx_aggr_check_ctl() argument 147 mt76_rx_aggr_reorder(struct sk_buff *skb, struct sk_buff_head *frames) mt76_rx_aggr_reorder() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/mediatek/mt76/ |
H A D | agg-rx.c | 16 mt76_aggr_release(struct mt76_rx_tid *tid, struct sk_buff_head *frames, int idx) in mt76_aggr_release() argument 28 __skb_queue_tail(frames, skb); in mt76_aggr_release() 33 struct sk_buff_head *frames, in mt76_rx_aggr_release_frames() 40 mt76_aggr_release(tid, frames, idx); in mt76_rx_aggr_release_frames() 45 mt76_rx_aggr_release_head(struct mt76_rx_tid *tid, struct sk_buff_head *frames) in mt76_rx_aggr_release_head() argument 50 mt76_aggr_release(tid, frames, idx); in mt76_rx_aggr_release_head() 56 mt76_rx_aggr_check_release(struct mt76_rx_tid *tid, struct sk_buff_head *frames) in mt76_rx_aggr_check_release() argument 65 mt76_rx_aggr_release_head(tid, frames); in mt76_rx_aggr_check_release() 84 mt76_rx_aggr_release_frames(tid, frames, status->seqno); in mt76_rx_aggr_check_release() 87 mt76_rx_aggr_release_head(tid, frames); in mt76_rx_aggr_check_release() 32 mt76_rx_aggr_release_frames(struct mt76_rx_tid *tid, struct sk_buff_head *frames, u16 head) mt76_rx_aggr_release_frames() argument 96 struct sk_buff_head frames; mt76_rx_aggr_reorder_work() local 119 mt76_rx_aggr_check_ctl(struct sk_buff *skb, struct sk_buff_head *frames) mt76_rx_aggr_check_ctl() argument 148 mt76_rx_aggr_reorder(struct sk_buff *skb, struct sk_buff_head *frames) mt76_rx_aggr_reorder() argument [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | ape.c | 57 APEFrame *frames; member 132 ape_ctx->frames[i].pos, ape_ctx->frames[i].size, in ape_dumpinfo() 133 ape_ctx->frames[i].nblocks); in ape_dumpinfo() 238 av_log(s, AV_LOG_ERROR, "No frames in the file!\n"); in ape_read_header() 242 av_log(s, AV_LOG_ERROR, "Too many frames: %"PRIu32"\n", in ape_read_header() 248 "Number of seek entries is less than number of frames: %"SIZE_SPECIFIER" vs. %"PRIu32"\n", in ape_read_header() 252 ape->frames = av_malloc_array(ape->totalframes, sizeof(APEFrame)); in ape_read_header() 253 if(!ape->frames) in ape_read_header() 265 ape->frames[ in ape_read_header() [all...] |
/kernel/linux/linux-5.10/drivers/media/usb/pwc/ |
H A D | pwc-ctrl.c | 142 int frames, int *compression, int send_to_cam) in set_video_mode_Nala() 168 if (frames < 4) in set_video_mode_Nala() 169 frames = 4; in set_video_mode_Nala() 170 else if (size > PSZ_QCIF && frames > 15) in set_video_mode_Nala() 171 frames = 15; in set_video_mode_Nala() 172 else if (frames > 25) in set_video_mode_Nala() 173 frames = 25; in set_video_mode_Nala() 174 frames = frames2frames[frames]; in set_video_mode_Nala() 175 fps = frames2table[frames]; in set_video_mode_Nala() 141 set_video_mode_Nala(struct pwc_device *pdev, int size, int pixfmt, int frames, int *compression, int send_to_cam) set_video_mode_Nala() argument 216 set_video_mode_Timon(struct pwc_device *pdev, int size, int pixfmt, int frames, int *compression, int send_to_cam) set_video_mode_Timon() argument 267 set_video_mode_Kiara(struct pwc_device *pdev, int size, int pixfmt, int frames, int *compression, int send_to_cam) set_video_mode_Kiara() argument 319 pwc_set_video_mode(struct pwc_device *pdev, int width, int height, int pixfmt, int frames, int *compression, int send_to_cam) pwc_set_video_mode() argument [all...] |
/kernel/linux/linux-6.6/drivers/media/usb/pwc/ |
H A D | pwc-ctrl.c | 142 int frames, int *compression, int send_to_cam) in set_video_mode_Nala() 168 if (frames < 4) in set_video_mode_Nala() 169 frames = 4; in set_video_mode_Nala() 170 else if (size > PSZ_QCIF && frames > 15) in set_video_mode_Nala() 171 frames = 15; in set_video_mode_Nala() 172 else if (frames > 25) in set_video_mode_Nala() 173 frames = 25; in set_video_mode_Nala() 174 frames = frames2frames[frames]; in set_video_mode_Nala() 175 fps = frames2table[frames]; in set_video_mode_Nala() 141 set_video_mode_Nala(struct pwc_device *pdev, int size, int pixfmt, int frames, int *compression, int send_to_cam) set_video_mode_Nala() argument 216 set_video_mode_Timon(struct pwc_device *pdev, int size, int pixfmt, int frames, int *compression, int send_to_cam) set_video_mode_Timon() argument 267 set_video_mode_Kiara(struct pwc_device *pdev, int size, int pixfmt, int frames, int *compression, int send_to_cam) set_video_mode_Kiara() argument 319 pwc_set_video_mode(struct pwc_device *pdev, int width, int height, int pixfmt, int frames, int *compression, int send_to_cam) pwc_set_video_mode() argument [all...] |
/third_party/alsa-utils/bat/ |
H A D | latencytest.c | 36 static float sumaudio(struct bat *bat, short int *buffer, int frames) in sumaudio() argument 41 while (frames) { in sumaudio() 42 frames--; in sumaudio() 55 static void play_and_listen(struct bat *bat, void *buffer, int frames) in play_and_listen() argument 65 averageinput = (int) (sumaudio(bat, buffer, frames) / frames); in play_and_listen() 73 while (n < frames) { in play_and_listen() 84 if (bat->latency.samples > frames) { in play_and_listen() 132 bat->latency.samples += frames; in play_and_listen() 183 bat->frames in roundtrip_latency_init() 187 handleinput(struct bat *bat, void *buffer, int frames) handleinput() argument 227 handleoutput(struct bat *bat, void *buffer, int bytes, int frames) handleoutput() argument [all...] |
H A D | signal.c | 91 static int reorder(struct bat *bat, float *val, int frames) in reorder() argument 96 bytes = frames * bat->channels * sizeof(float); in reorder() 105 for (i = 0; i < frames; i++) in reorder() 108 new_buf[c * frames + i]; in reorder() 114 static int adjust_waveform(struct bat *bat, float *val, int frames, in adjust_waveform() argument 140 nsamples = channels * frames; in adjust_waveform() 148 int generate_sine_wave(struct bat *bat, int frames, void *buf) in generate_sine_wave() argument 155 nsamples = bat->channels * frames; in generate_sine_wave() 168 sin_generator_vfill(&sg[c], sinus_f + c * frames, frames); in generate_sine_wave() [all...] |
/third_party/libsnd/tests/ |
H A D | peak_chunk_test.c | 118 int k, frames, count ; in test_float_peak() local 126 sfinfo.frames = 0 ; in test_float_peak() 128 frames = BUFFER_LEN / sfinfo.channels ; in test_float_peak() 135 data [4 * (frames / 8) + 0] = (frames / 8) * 0.01 ; /* First channel */ in test_float_peak() 136 data [4 * (frames / 6) + 1] = (frames / 6) * 0.01 ; /* Second channel */ in test_float_peak() 137 data [4 * (frames / 4) + 2] = (frames / 4) * 0.01 ; /* Third channel */ in test_float_peak() 138 data [4 * (frames / in test_float_peak() [all...] |
H A D | string_test.c | 228 sfinfo.frames = 0 ; in string_start_end_test() 257 if (sfinfo.frames != BUFFER_LEN) in string_start_end_test() 258 { printf ("***** Bad frame count %d (should be %d)\n\n", (int) sfinfo.frames, BUFFER_LEN) ; in string_start_end_test() 378 sfinfo.frames = 0 ; in string_start_test() 423 if (sfinfo.frames != BUFFER_LEN) in string_start_test() 424 { printf ("***** Bad frame count %d (should be %d)\n\n", (int) sfinfo.frames, BUFFER_LEN) ; in string_start_test() 563 sfinfo.frames = 0 ; in string_multi_set_test() 623 sf_count_t frames ; in string_rdwr_test() local 632 frames = sfinfo.frames ; in string_rdwr_test() 676 sf_count_t frames = BUFFER_LEN ; string_short_rdwr_test() local 787 sf_count_t frames ; string_rdwr_grow_test() local 845 sf_count_t frames ; string_header_update() local [all...] |
/base/hiviewdfx/faultloggerd/test/unittest/unwind/ |
H A D | fp_unwinder_test.cpp | 56 std::vector<DfxFrame> frames; in HWTEST_F() local 61 frames.emplace_back(frame); in HWTEST_F() 63 ASSERT_GT(frames.size(), 1); in HWTEST_F() 64 Unwinder::FillLocalFrames(frames); in HWTEST_F() 65 GTEST_LOG_(INFO) << "FpUnwinderTest001: frames:\n" << Unwinder::GetFramesStr(frames); in HWTEST_F() 88 std::vector<DfxFrame> frames; in HWTEST_F() local 93 frames.emplace_back(frame); in HWTEST_F() 95 ASSERT_GT(frames.size(), 1); in HWTEST_F() 96 Unwinder::FillLocalFrames(frames); in HWTEST_F() [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/ |
H A D | Thread.cpp | 43 auto location = frames.back()->location; in onLocationUpdate() 67 if(frame == frames.back()) // ... or if we've reached the pause-at-frame in onLocationUpdate() 100 frames.push_back(frame); in enter() 117 frames.pop_back(); in exit() 127 auto &frame = *frames.back(); in update() 146 return *frames.back(); in frame() 153 out.reserve(frames.size()); in stack() 154 for(auto frame : frames) in stack() 164 return frames.size(); in depth() 200 pauseAtFrame = frames in stepOver() [all...] |
/base/hiviewdfx/faultloggerd/test/unittest/process_dump/ |
H A D | lock_parser_test.cpp | 128 std::vector<DfxFrame> frames; in HWTEST_F() local 129 (void)unwinder->GetFramesByPcs(frames, pcs); in HWTEST_F() 130 ASSERT_FALSE(frames.empty()); in HWTEST_F() 131 unwinder->SetFrames(frames); in HWTEST_F() 182 std::vector<DfxFrame> frames; in HWTEST_F() local 183 (void)unwinder->GetFramesByPcs(frames, pcs); in HWTEST_F() 184 ASSERT_FALSE(frames.empty()); in HWTEST_F() 185 unwinder->SetFrames(frames); in HWTEST_F() 232 std::vector<DfxFrame> frames; in HWTEST_F() local 233 (void)unwinder->GetFramesByPcs(frames, pc in HWTEST_F() 271 std::vector<DfxFrame> frames; HWTEST_F() local 312 std::vector<DfxFrame> frames; HWTEST_F() local [all...] |