Home
last modified time | relevance | path

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

/third_party/grpc/test/core/iomgr/
Dtcp_posix_test.cc159 int* current_data) { in count_slices() argument
166 GPR_ASSERT(buf[j] == *current_data); in count_slices()
167 *current_data = (*current_data + 1) % 256; in count_slices()
178 int current_data; in read_cb() local
183 current_data = state->read_bytes % 256; in read_cb()
185 &current_data); in read_cb()
308 size_t* num_blocks, uint8_t* current_data) { in allocate_blocks() argument
323 buf[j] = *current_data; in allocate_blocks()
324 (*current_data)++; in allocate_blocks()
406 uint8_t current_data = 0; in write_test() local
[all …]
Dendpoint_tests.cc52 size_t count_slices(grpc_slice* slices, size_t nslices, int* current_data) { in count_slices() argument
60 GPR_ASSERT(buf[j] == *current_data); in count_slices()
61 *current_data = (*current_data + 1) % 256; in count_slices()
78 size_t* num_blocks, uint8_t* current_data) { in allocate_blocks() argument
94 buf[j] = *current_data; in allocate_blocks()
95 (*current_data)++; in allocate_blocks()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_setup.c1268 const ubyte *current_data = NULL; in try_update_scene_state() local
1275 current_data = (ubyte *) llvmpipe_resource_data(buffer); in try_update_scene_state()
1279 current_data = (ubyte *) setup->constants[i].current.user_buffer; in try_update_scene_state()
1282 if (current_data && current_size >= sizeof(float)) { in try_update_scene_state()
1283 current_data += setup->constants[i].current.buffer_offset; in try_update_scene_state()
1290 current_data, in try_update_scene_state()
1301 current_data, in try_update_scene_state()
1325 const ubyte *current_data = NULL; in try_update_scene_state() local
1330 current_data = (ubyte *) llvmpipe_resource_data(buffer); in try_update_scene_state()
1331 if (current_data) { in try_update_scene_state()
[all …]
Dlp_state_cs.c1201 const ubyte *current_data = NULL; in update_csctx_consts() local
1205 current_data = (ubyte *) llvmpipe_resource_data(buffer); in update_csctx_consts()
1209 current_data = (ubyte *) csctx->constants[i].current.user_buffer; in update_csctx_consts()
1212 if (current_data && current_size >= sizeof(float)) { in update_csctx_consts()
1213 current_data += csctx->constants[i].current.buffer_offset; in update_csctx_consts()
1214 csctx->cs.current.jit_context.constants[i] = (const float *)current_data; in update_csctx_consts()
1233 const ubyte *current_data = NULL; in update_csctx_ssbo() local
1238 current_data = (ubyte *) llvmpipe_resource_data(buffer); in update_csctx_ssbo()
1239 if (current_data) { in update_csctx_ssbo()
1240 current_data += csctx->ssbos[i].current.buffer_offset; in update_csctx_ssbo()
[all …]
/third_party/mesa3d/src/mesa/vbo/
Dvbo_save.h85 fi_type *current_data; member
Dvbo_save_draw.c102 if (!node->cold->current_data) in playback_copy_to_current()
105 fi_type *data = node->cold->current_data; in playback_copy_to_current()
Dvbo_save_api.c550 node->cold->current_data = NULL; in compile_vertex_list()
554 node->cold->current_data = NULL; in compile_vertex_list()
557 node->cold->current_data = malloc(current_size * sizeof(GLfloat)); in compile_vertex_list()
558 if (node->cold->current_data) { in compile_vertex_list()
566 memcpy(node->cold->current_data, buffer + vertex_offset + attr_offset, in compile_vertex_list()
/third_party/boost/boost/graph/
Dpush_relabel_max_flow.hpp135 , current_data(num_vertices(g_), out_edges(*vertices(g_).first, g_)) in push_relabel()
136 , current(current_data.begin(), idx) in push_relabel()
763 current_data; member in boost::detail::push_relabel
/third_party/ffmpeg/libavcodec/
Dsnowenc.c259 uint8_t *current_data[3]= { s->input_picture->data[0] + (x + y* stride)*block_w, in encode_q_branch() local
335 init_ref(c, current_data, s->last_picture[ref]->data, NULL, block_w*x, block_w*y, 0); in encode_q_branch()
381 sum = pix_sum(current_data[0], stride, block_w, block_w); in encode_q_branch()
383 iscore = pix_norm1(current_data[0], stride, block_w) - 2*l*sum + l*l*block_s; in encode_q_branch()
387 … sum = pix_sum(current_data[1], uvstride, block_w>>s->chroma_h_shift, block_w>>s->chroma_v_shift); in encode_q_branch()
390 … sum = pix_sum(current_data[2], uvstride, block_w>>s->chroma_h_shift, block_w>>s->chroma_v_shift); in encode_q_branch()
/third_party/mesa3d/src/mesa/main/
Ddlist.c816 free(node->cold->current_data); in vbo_destroy_vertex_list()
817 node->cold->current_data = NULL; in vbo_destroy_vertex_list()