HomeSort by relevance Sort by last modified time
    Searched refs:out_info (Results 1 - 25 of 33) sorted by null

1 2

  /external/valgrind/coregrind/m_ume/
macho.c 111 const HChar *filename, load_info_t *out_info);
115 const HChar *filename, load_info_t *out_info);
119 const HChar *filename, load_info_t *out_info);
125 The dylinker's entry point is returned in out_info->linker_entry.
128 open_dylinker(const HChar *filename, load_info_t *out_info)
155 err = load_mach_file(fd, 0, filesize, MH_DYLINKER, filename, out_info);
169 loaded address is returned in out_info->text.
171 out_info->stack_start.
176 load_info_t *out_info)
184 Addr slided_addr = segcmd->vmaddr + out_info->linker_offset
    [all...]
  /external/tensorflow/tensorflow/core/graph/
control_flow.cc 61 ControlFlowInfo* out_info = &(*info)[out_id]; local
62 const Node* out_parent = out_info->parent_frame;
88 out_info->frame = out;
89 out_info->parent_frame = frame;
91 GetNodeAttr(out->attrs(), "frame_name", &out_info->frame_name));
92 if (out_info->frame_name.empty()) {
99 if (out_info->frame_name != frame_name) {
106 "' is in frame '", out_info->frame_name, "'.");
109 out_info->frame = frame;
110 out_info->parent_frame = parent
    [all...]
  /external/libxcam/xcore/
drm_bo_buffer.cpp 215 VideoBufferInfo out_info;
216 out_info.init (info.format, info.width, info.height, info.aligned_width, info.aligned_height);
219 _swap_offsets[SwappedBuffer::SwapYOffset0] = out_info.offsets[0];
220 _swap_offsets[SwappedBuffer::SwapYOffset1] = out_info.size;
221 out_info.size += out_info.strides[0] * out_info.aligned_height;
225 _swap_offsets[SwappedBuffer::SwapUVOffset0] = out_info.offsets[1];
226 _swap_offsets[SwappedBuffer::SwapUVOffset1] = out_info.size;
227 out_info.size += out_info.strides[1] * (out_info.aligned_height + 1) / 2
    [all...]
swapped_buffer.cpp 89 VideoBufferInfo out_info; local
92 swap_new_buffer_info (cur_info, flags, out_info),
103 SmartPtr<SwappedBuffer> out = create_new_swap_buffer (out_info, data);
  /external/harfbuzz_ng/src/
hb-buffer.cc 91 * There are two info pointers: info and out_info. They always have
94 * As an optimization, both info and out_info may point to the
100 * As soon as out_info gets longer than info, out_info is moved over
104 * switches info and out_info.
125 bool separate_out = out_info != info;
150 out_info = separate_out ? (hb_glyph_info_t *) pos : info;
163 if (out_info == info &&
168 out_info = (hb_glyph_info_t *) pos;
169 memcpy (out_info, info, out_len * sizeof (out_info[0]))
    [all...]
hb-ot-shape-complex-thai.cc 335 _hb_glyph_info_set_general_category (&buffer->out_info[end - 2], HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK);
339 while (start > 0 && IS_TONE_MARK (buffer->out_info[start - 1].codepoint))
346 hb_glyph_info_t t = buffer->out_info[end - 2];
347 memmove (buffer->out_info + start + 1,
348 buffer->out_info + start,
349 sizeof (buffer->out_info[0]) * (end - start - 2));
350 buffer->out_info[start] = t;
hb-buffer-private.hh 113 hb_glyph_info_t *out_info; member in struct:hb_buffer_t
181 inline hb_glyph_info_t &prev (void) { return out_info[out_len ? out_len - 1 : 0]; }
182 inline hb_glyph_info_t prev (void) const { return out_info[out_len ? out_len - 1 : 0]; }
184 inline bool has_separate_output (void) const { return info != out_info; }
228 if (unlikely (out_info != info || out_len != idx)) {
230 out_info[out_len] = info[idx];
hb-ot-shape-normalize.cc 394 buffer->out_info[starter].codepoint,
407 buffer->out_info[starter].codepoint = composed;
408 buffer->out_info[starter].glyph_index() = glyph;
409 _hb_glyph_info_set_unicode_props (&buffer->out_info[starter], buffer);
hb-ot-shape-complex-hangul.cc 210 hb_glyph_info_t *info = buffer->out_info;
352 * that are now in buffer->out_info.
354 hb_glyph_info_t *info = buffer->out_info;
  /system/extras/boot_control_copy/
bootinfo.h 49 bool boot_info_load(BrilloBootInfo *out_info);
bootinfo.cpp 120 bool boot_info_load(BrilloBootInfo *out_info)
124 memset(out_info, '\0', sizeof(BrilloBootInfo));
135 num_read = read(fd, (void*) out_info, sizeof(BrilloBootInfo));
  /external/libxcam/modules/ocl/
cl_fisheye_handler.cpp 234 const VideoBufferInfo &out_info = output->get_video_info (); local
261 cl_desc.width = XCAM_ALIGN_DOWN (out_info.width, 8) / 8; //CL_RGBA * CL_UNSIGNED_INT16 = 8
262 cl_desc.height = XCAM_ALIGN_DOWN (out_info.height, 2);
263 cl_desc.row_pitch = out_info.strides[NV12PlaneYIdx];
264 _output[NV12PlaneYIdx] = convert_to_climage (context, output, cl_desc, out_info.offsets[NV12PlaneYIdx]);
266 cl_desc.row_pitch = out_info.strides[NV12PlaneUVIdx];
267 _output[NV12PlaneUVIdx] = convert_to_climage (context, output, cl_desc, out_info.offsets[NV12PlaneUVIdx]);
271 cl_desc.width = XCAM_ALIGN_DOWN (out_info.width, 4) / 4; //CL_RGBA * CL_UNSIGNED_INT8 = 4
272 cl_desc.height = XCAM_ALIGN_DOWN (out_info.height, 2);
273 cl_desc.row_pitch = out_info.strides[NV12PlaneYIdx]
    [all...]
cl_geo_map_handler.cpp 248 const VideoBufferInfo &out_info = output->get_video_info (); local
270 cl_desc.width = XCAM_ALIGN_DOWN (out_info.width, 4) / 8; //CL_RGBA * CL_UNSIGNED_INT16 = 8
271 cl_desc.height = XCAM_ALIGN_DOWN (out_info.height, 2);
272 cl_desc.row_pitch = out_info.strides[NV12PlaneYIdx];
273 _output[NV12PlaneYIdx] = convert_to_climage (context, output, cl_desc, out_info.offsets[NV12PlaneYIdx]);
275 cl_desc.row_pitch = out_info.strides[NV12PlaneUVIdx];
276 _output[NV12PlaneUVIdx] = convert_to_climage (context, output, cl_desc, out_info.offsets[NV12PlaneUVIdx]);
292 uint_x = out_info.width / (float)_map_width;
293 uint_y = out_info.height / (float)_map_height;
cl_video_buffer.cpp 119 VideoBufferInfo out_info;
120 out_info.init (info.format, info.width, info.height, info.aligned_width, info.aligned_height);
cl_image_360_stitch.cpp 403 const VideoBufferInfo &out_info = output->get_video_info (); local
406 uint32_t fisheye_width_sum = out_info.width;
412 _fisheye[0].height = out_info.height + _stitch_info.crop[0].top + _stitch_info.crop[0].bottom;
432 _fisheye[0].height = out_info.height + _stitch_info.crop[0].top + _stitch_info.crop[0].bottom;
437 _fisheye[0].width = view_angle[0] / 360.0f * out_info.width;
441 _fisheye[1].width = view_angle[1] / 360.0f * out_info.width;
445 _fisheye[2].width = view_angle[2] / 360.0f * out_info.width;
449 _fisheye[3].width = view_angle[3] / 360.0f * out_info.width;
474 _stitch_info.merge_width[i] = XCAM_ALIGN_UP((uint32_t)(20.0f / 360.0f * out_info.width), 32);
572 const VideoBufferInfo &out_info = output->get_video_info () local
624 const VideoBufferInfo &out_info = output->get_video_info (); local
    [all...]
cl_blender.cpp 130 const VideoBufferInfo &out_info = output->get_video_info (); local
149 auto_calc_merge_window (get_input_valid_area(0).width, get_input_valid_area(1).width, out_info.width, merge_window),
154 merge_window.height = out_info.height;
cl_tonemapping_handler.cpp 193 const CLImageDesc out_info = image_out->get_image_desc (); local
195 work_size.global[0] = out_info.width;
196 work_size.global[1] = out_info.height / 4;
cl_newtonemapping_handler.cpp 365 const CLImageDesc out_info = image_out->get_image_desc (); local
367 work_size.global[0] = out_info.width;
368 work_size.global[1] = out_info.height / 4;
cl_tnr_handler.cpp 412 const CLImageDesc out_info = image_out->get_image_desc (); local
413 work_size.global[0] = out_info.width;
414 work_size.global[1] = out_info.height;
  /frameworks/native/libs/vr/libvrsensor/include/dvr/
pose_client.h 152 DvrPoseRingBufferInfo* out_info);
  /frameworks/native/libs/vr/libvrsensor/
pose_client.cpp 192 int GetRingBuffer(DvrPoseRingBufferInfo* out_info) {
196 if (out_info) {
197 out_info->min_future_count = DvrVsyncPoseBuffer::kMinFutureCount;
198 out_info->total_count = DvrVsyncPoseBuffer::kSize;
199 out_info->buffer = vsync_buffer->vsync_poses;
  /external/libxcam/modules/soft/
soft_geo_mapper.cpp 102 VideoBufferInfo out_info; local
103 out_info.init (
107 set_out_video_info (out_info);
soft_blender.cpp 508 const VideoBufferInfo &out_info = out_buf->get_video_info (); local
510 out_area.width = out_info.width;
511 out_area.height = out_info.height;
516 out_buf, out_area.width, out_area.height, out_info.strides[0],
517 out_info.offsets[0] + out_area.pos_x + out_area.pos_y * out_info.strides[0]);
519 out_buf, out_area.width / 2, out_area.height / 2, out_info.strides[1],
520 out_info.offsets[1] + out_area.pos_x + out_area.pos_y / 2 * out_info.strides[1]);
667 VideoBufferInfo out_info; local
    [all...]
soft_stitcher.cpp 635 const VideoBufferInfo &out_info = out_buf->get_video_info (); local
646 out_buf, copy_area.out_area.width, copy_area.out_area.height, out_info.strides[0],
647 out_info.offsets[0] + copy_area.out_area.pos_x + copy_area.out_area.pos_y * out_info.strides[0]);
649 out_buf, copy_area.out_area.width / 2, copy_area.out_area.height / 2, out_info.strides[0],
650 out_info.offsets[1] + copy_area.out_area.pos_x + copy_area.out_area.pos_y / 2 * out_info.strides[1]);
911 VideoBufferInfo out_info; local
918 out_info.init (
922 set_out_video_info (out_info);
    [all...]
  /external/libxcam/wrapper/gstreamer/
gstxcamfilter.cpp 708 GstVideoInfo in_info, out_info; local
711 !gst_video_info_from_caps (&out_info, outcaps)) {
719 GST_VIDEO_INFO_FORMAT (&out_info) == GST_VIDEO_FORMAT_NV12,
723 xcamfilter->gst_src_video_info = out_info;
739 GST_VIDEO_INFO_WIDTH (&out_info), GST_VIDEO_INFO_HEIGHT (&out_info), (uint32_t) xcamfilter->stitch_res_mode);
741 GST_VIDEO_INFO_WIDTH (&out_info), GST_VIDEO_INFO_HEIGHT (&out_info));
    [all...]

Completed in 684 milliseconds

1 2