/external/tensorflow/tensorflow/core/grappler/utils/ |
D | frame_test.cc | 66 void InferFromGraph(FrameView* frame_view, GraphDef* graph, bool valid) { in InferFromGraph() argument 70 status = frame_view->InferFromGraphView(graph_view); in InferFromGraph() 79 void InferFromGraph<GraphDef>(FrameView* frame_view, GraphDef* graph, in InferFromGraph() argument 81 Status status = frame_view->InferFromGraph(*graph); in InferFromGraph() 111 FrameView frame_view; in TYPED_TEST() local 112 InferFromGraph<TypeParam>(&frame_view, &graph, /*valid=*/true); in TYPED_TEST() 121 EXPECT_EQ(frame_view.num_frames(), 2); in TYPED_TEST() 124 std::vector<int> node_frames = frame_view.Frames(node); in TYPED_TEST() 137 FrameView frame_view; in TYPED_TEST() local 138 InferFromGraph<TypeParam>(&frame_view, &graph, /*valid=*/true); in TYPED_TEST() [all …]
|
/external/webrtc/modules/rtp_rtcp/source/ |
D | video_rtp_depacketizer_av1_unittest.cc | 123 rtc::ArrayView<const uint8_t> frame_view(*frame); in TEST() local 124 EXPECT_TRUE(frame_view[0] & kObuHeaderHasSize); in TEST() 125 EXPECT_EQ(frame_view[1], 3); in TEST() 138 rtc::ArrayView<const uint8_t> frame_view(*frame); in TEST() local 139 EXPECT_TRUE(frame_view[0] & kObuHeaderHasSize); in TEST() 140 EXPECT_EQ(frame_view[1], 3); in TEST() 152 rtc::ArrayView<const uint8_t> frame_view(*frame); in TEST() local 153 EXPECT_TRUE(frame_view[0] & kObuHeaderHasSize); in TEST() 154 EXPECT_EQ(frame_view[2], 3); in TEST() 169 rtc::ArrayView<const uint8_t> frame_view(*frame); in TEST() local [all …]
|
/external/webrtc/modules/audio_processing/agc2/ |
D | noise_level_estimator_unittest.cc | 39 AudioFrameView<float> frame_view = signal.float_frame_view(); in RunEstimator() local 41 frame_view.channel(0)[j] = sample_generator(); in RunEstimator() 43 estimator.Analyze(frame_view); in RunEstimator()
|
/external/ImageMagick/MagickCore/ |
D | decorate.c | 176 *frame_view; in FrameImage() local 283 frame_view=AcquireAuthenticCacheView(frame_image,exception); in FrameImage() 297 q=QueueCacheViewAuthenticPixels(frame_view,0,0,frame_image->columns, in FrameImage() 378 (void) SyncCacheViewAuthenticPixels(frame_view,exception); in FrameImage() 404 q=QueueCacheViewAuthenticPixels(frame_view,0,frame_info->y+y, in FrameImage() 450 if (SyncCacheViewAuthenticPixels(frame_view,exception) == MagickFalse) in FrameImage() 479 q=QueueCacheViewAuthenticPixels(frame_view,0,(ssize_t) (frame_image->rows- in FrameImage() 559 (void) SyncCacheViewAuthenticPixels(frame_view,exception); in FrameImage() 562 frame_view=DestroyCacheView(frame_view); in FrameImage()
|
/external/webrtc/modules/audio_processing/agc2/rnn_vad/ |
D | pitch_search_internal.cc | 339 const auto frame_view = pitch_buffer.subview(0, kFrameSize20ms12kHz + 1); in ComputePitchPeriod12kHz() local 340 float denominator = 1.f + vector_math.DotProduct(frame_view, frame_view); in ComputePitchPeriod12kHz()
|
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
D | loop_optimizer.cc | 383 FrameView frame_view; in Optimize() local 385 TF_RETURN_IF_ERROR(frame_view.InferFromGraph(*optimized_graph_)); in Optimize() 387 frame_parent_.resize(frame_view.num_frames(), -1); in Optimize() 388 frame_children_.resize(frame_view.num_frames()); in Optimize() 391 const std::vector<int>& frame_ids = frame_view.Frames(node); in Optimize()
|
D | scoped_allocator_optimizer.cc | 1044 void PartitionByLoopStructure(const FrameView& frame_view, in PartitionByLoopStructure() argument 1052 const std::vector<int>& loop_ids = frame_view.Frames(*nd); in PartitionByLoopStructure() 1092 FrameView frame_view; in ProcessGraphDef() local 1095 LOG_WARNING_AND_RETURN_IF_ERROR(frame_view.InferFromGraph(*graph)); in ProcessGraphDef() 1123 status = ApplyToAll(root.get(), [this, rewriter, graph, &frame_view, in ProcessGraphDef() 1129 PartitionByLoopStructure(frame_view, t->nodes_, &loop_groups); in ProcessGraphDef()
|