HomeSort by relevance Sort by last modified time
    Searched refs:dst_map (Results 1 - 8 of 8) sorted by null

  /art/libartbase/base/
safe_copy_test.cc 89 void* dst_map = mmap(nullptr, kPageSize * 4, PROT_READ | PROT_WRITE, local
91 ASSERT_NE(MAP_FAILED, dst_map);
94 char* dst = static_cast<char*>(dst_map);
105 ASSERT_EQ(0, munmap(dst_map, kPageSize * 4));
  /external/mesa3d/src/gallium/auxiliary/util/
u_surface.c 260 uint8_t *dst_map; local
358 dst_map = pipe->transfer_map(pipe,
364 assert(dst_map);
365 if (!dst_map) {
372 memcpy(dst_map, src_map, src_box.width);
374 util_copy_box(dst_map,
412 ubyte *dst_map; local
430 dst_map = pipe_transfer_map(pipe,
439 dst_map = pipe_transfer_map_3d(pipe,
447 assert(dst_map);
497 ubyte *dst_map; local
    [all...]
u_prim_restart.c 49 void *src_map = NULL, *dst_map = NULL; local
68 dst_map = pipe_buffer_map(context, *dst_buffer,
70 if (!dst_map)
84 uint16_t *dst = (uint16_t *) dst_map;
92 uint16_t *dst = (uint16_t *) dst_map;
100 uint32_t *dst = (uint32_t *) dst_map;
  /external/mesa3d/src/gallium/drivers/svga/
svga_draw_arrays.c 52 void *dst_map = NULL; local
59 dst_map = pipe_buffer_map(pipe, dst, PIPE_TRANSFER_WRITE, &transfer);
60 if (!dst_map)
63 generate(0, nr, dst_map);
71 if (dst_map)
svga_draw_elements.c 77 void *dst_map = NULL; local
110 dst_map = pipe_buffer_map(pipe, dst, PIPE_TRANSFER_WRITE, &dst_transfer);
111 if (!dst_map)
114 translate((const char *) src_map + offset, 0, 0, gen_nr, 0, dst_map);
139 if (dst_map)
svga_state_constants.c 554 void *src_map = NULL, *dst_map; local
633 &dst_buffer, &dst_map);
634 if (!dst_map) {
641 memcpy(dst_map, src_map, cbuf->buffer_size);
647 memcpy((char *) dst_map + extra_offset, extras, extra_size);
  /external/tensorflow/tensorflow/contrib/boosted_trees/kernels/
training_ops.cc 591 std::unordered_map<int32, float> dst_map; local
594 dst_map.reserve(dst_vec->value_size());
596 dst_map[dst_vec->index(idx)] = dst_vec->value(idx);
600 dst_map[src_vec.index(idx)] += src_vec.value(idx);
605 for (const auto& entry : dst_map) {
    [all...]
  /external/mesa3d/src/gallium/state_trackers/nine/
vertexdeclaration9.c 479 void *dst_map; local
519 &dst_map, D3DLOCK_DISCARD);
525 translate->run(translate, 0, VertexCount, 0, 0, dst_map);

Completed in 126 milliseconds