Home
last modified time | relevance | path

Searched refs:body_data (Results 1 – 5 of 5) sorted by relevance

/external/libogg/src/
Dframing.c194 os->body_data=_ogg_malloc(os->body_storage*sizeof(*os->body_data)); in ogg_stream_init()
198 if(!os->body_data || !os->lacing_vals || !os->granule_vals){ in ogg_stream_init()
212 if(!os || !os->body_data) return -1; in ogg_stream_check()
219 if(os->body_data)_ogg_free(os->body_data); in ogg_stream_clear()
242 ret=_ogg_realloc(os->body_data,(os->body_storage+needed+1024)* in _os_body_expand()
243 sizeof(*os->body_data)); in _os_body_expand()
249 os->body_data=ret; in _os_body_expand()
322 memmove(os->body_data,os->body_data+os->body_returned, in ogg_stream_iovecin()
337 memcpy(os->body_data+os->body_fill, iov[i].iov_base, iov[i].iov_len); in ogg_stream_iovecin()
485 og->body=os->body_data+os->body_returned; in ogg_stream_flush_i()
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_live_range_test.cc287 HloInstruction* body_data = body_builder.AddInstruction( in TEST_F() local
299 shape, HloOpcode::kMultiply, body_data, body_data)); in TEST_F()
302 shape, HloOpcode::kAdd, body_data, body_data_increment)); in TEST_F()
327 {body_param, body_iter, body_data, body_iter_increment, in TEST_F()
Dmemory_space_assignment_test.cc765 HloInstruction* body_data = body_builder.AddInstruction( in TEST_P() local
777 shape, HloOpcode::kMultiply, body_data, body_data)); in TEST_P()
780 shape, HloOpcode::kAdd, body_data, body_data_increment)); in TEST_P()
805 {body_param, body_iter, body_data, body_iter_increment, in TEST_P()
822 EXPECT_THAT(body_data, op::ShapeWithLayout(shape)); in TEST_P()
2648 HloInstruction* body_data = body_builder.AddInstruction( in TEST_P() local
2660 shape, HloOpcode::kMultiply, body_data, body_data)); in TEST_P()
2663 shape, HloOpcode::kAdd, body_data, body_data_increment)); in TEST_P()
2694 {body_param, body_iter, body_data, body_iter_increment, in TEST_P()
2969 HloInstruction* body_data = body_builder.AddInstruction( in TEST_P() local
[all …]
Dbuffer_assignment_test.cc800 HloInstruction* body_data = body_builder.AddInstruction( in TEST_F() local
807 f32vec10_color1, HloOpcode::kAdd, body_data, body_data_increment)); in TEST_F()
/external/libogg/include/ogg/
Dogg.h54 unsigned char *body_data; /* bytes from packet bodies */ member