Searched refs:out_info (Results 1 – 7 of 7) sorted by relevance
/external/harfbuzz_ng/src/ |
D | hb-buffer.hh | 114 hb_glyph_info_t *out_info; member 186 hb_glyph_info_t &prev () { return out_info[out_len ? out_len - 1 : 0]; } in prev() 187 hb_glyph_info_t prev () const { return out_info[out_len ? out_len - 1 : 0]; } in prev() 189 bool has_separate_output () const { return info != out_info; } in has_separate_output() 219 if (unlikely (out_info != info || out_len != idx)) { in replace_glyph() 221 out_info[out_len] = info[idx]; in replace_glyph() 223 out_info[out_len].codepoint = glyph_index; in replace_glyph() 236 out_info[out_len] = idx < len ? info[idx] : out_info[out_len - 1]; in output_glyph() 237 out_info[out_len].codepoint = glyph_index; in output_glyph() 241 return out_info[out_len - 1]; in output_glyph() [all …]
|
D | hb-buffer.cc | 126 bool separate_out = out_info != info; in enlarge() 151 out_info = separate_out ? (hb_glyph_info_t *) pos : info; in enlarge() 164 if (out_info == info && in make_room_for() 169 out_info = (hb_glyph_info_t *) pos; in make_room_for() 170 memcpy (out_info, info, out_len * sizeof (out_info[0])); in make_room_for() 206 out_info = info; in get_scratch_buffer() 250 out_info = info; in clear() 299 out_info = info; in remove_output() 312 out_info = info; in clear_output() 325 out_info = info; in clear_positions() [all …]
|
D | hb-ot-shape-complex-thai.cc | 343 …_hb_glyph_info_set_general_category (&buffer->out_info[end - 2], HB_UNICODE_GENERAL_CATEGORY_NON_S… in preprocess_text_thai() 347 while (start > 0 && IS_TONE_MARK (buffer->out_info[start - 1].codepoint)) in preprocess_text_thai() 354 hb_glyph_info_t t = buffer->out_info[end - 2]; in preprocess_text_thai() 355 memmove (buffer->out_info + start + 1, in preprocess_text_thai() 356 buffer->out_info + start, in preprocess_text_thai() 357 sizeof (buffer->out_info[0]) * (end - start - 2)); in preprocess_text_thai() 358 buffer->out_info[start] = t; in preprocess_text_thai()
|
D | hb-ot-shape-normalize.cc | 446 buffer->out_info[starter].codepoint, in _hb_ot_shape_normalize() 459 buffer->out_info[starter].codepoint = composed; in _hb_ot_shape_normalize() 460 buffer->out_info[starter].glyph_index() = glyph; in _hb_ot_shape_normalize() 461 _hb_glyph_info_set_unicode_props (&buffer->out_info[starter], buffer); in _hb_ot_shape_normalize()
|
D | hb-ot-shape-complex-hangul.cc | 212 hb_glyph_info_t *info = buffer->out_info; in preprocess_text_hangul() 367 hb_glyph_info_t *info = buffer->out_info; in preprocess_text_hangul()
|
D | hb-ot-layout-gsubgpos.hh | 405 const hb_glyph_info_t &info = c->buffer->out_info[idx]; in prev() 856 const auto *out = buffer->out_info; in match_input()
|
/external/tensorflow/tensorflow/core/graph/ |
D | control_flow.cc | 121 ControlFlowInfo* out_info = &(*info)[out_id]; in BuildControlFlowInfo() local 122 const Node* out_parent = out_info->parent_frame; in BuildControlFlowInfo() 147 out_info->frame = out; in BuildControlFlowInfo() 148 out_info->parent_frame = frame; in BuildControlFlowInfo() 150 GetNodeAttr(out->attrs(), "frame_name", &out_info->frame_name)); in BuildControlFlowInfo() 151 if (out_info->frame_name.empty()) { in BuildControlFlowInfo() 159 if (out_info->frame_name != frame_name) { in BuildControlFlowInfo() 165 " is in frame '", out_info->frame_name, "'."); in BuildControlFlowInfo() 168 out_info->frame = frame; in BuildControlFlowInfo() 169 out_info->parent_frame = parent; in BuildControlFlowInfo() [all …]
|