HomeSort by relevance Sort by last modified time
    Searched defs:seg (Results 51 - 75 of 186) sorted by null

1 23 4 5 6 7 8

  /external/harfbuzz_ng/src/
hb-graphite2.cc 239 gr_segment *seg = NULL; local
255 seg = gr_make_seg (grfont, grface,
261 if (unlikely (!seg)) {
266 unsigned int glyph_count = gr_seg_n_slots (seg);
269 gr_seg_destroy (seg);
280 gr_seg_destroy (seg);
304 for (is = gr_seg_first_slot (seg), ic = 0; is; is = gr_slot_next_in_segment (is), ic++)
348 curradvx = gr_seg_advance_X(seg);
351 for (pPos = hb_buffer_get_glyph_positions (buffer, NULL), is = gr_seg_first_slot (seg);
367 pPos[-1].x_advance += gr_seg_advance_X(seg) - curradvx
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_aq_cyclicrefresh.c 74 // with number of seg blocks, so compare available bits to number of blocks.
183 struct segmentation *const seg = &cm->seg; local
192 vp9_disable_segmentation(&cm->seg);
226 vp9_enable_segmentation(&cm->seg);
227 vp9_clearall_segfeatures(seg);
229 seg->abs_delta = SEGMENT_DELTADATA;
231 // Note: setting temporal_update has no effect, as the seg-map coding method
236 // seg->temporal_update = 0;
239 vp9_disable_segfeature(seg, 0, SEG_LVL_ALT_Q)
    [all...]
vp9_segmentation.c 22 void vp9_enable_segmentation(struct segmentation *seg) {
23 seg->enabled = 1;
24 seg->update_map = 1;
25 seg->update_data = 1;
28 void vp9_disable_segmentation(struct segmentation *seg) {
29 seg->enabled = 0;
33 struct segmentation *const seg = &cpi->common.seg; local
40 seg->update_map = 1;
41 seg->update_data = 1
217 struct segmentation *seg = &cm->seg; local
    [all...]
  /external/valgrind/main/coregrind/
fixup_macho_loadcmds.c 448 struct segment_command_64 *seg = (struct segment_command_64 *)cmd; local
449 if (0 == strcmp(seg->segname, "__LINKEDIT"))
450 seg__linkedit = seg;
451 if (0 == strcmp(seg->segname, "__UNIXSTACK"))
452 seg__unixstack = seg;
482 struct segment_command_64 *seg = seg__unixstack; local
483 if (seg->vmaddr != expected_stack_start)
485 if (seg->vmsize != expected_stack_size)
487 if (seg->maxprot != 7)
489 if (seg->initprot != 3
502 struct segment_command_64 *seg = seg__linkedit; local
    [all...]
  /external/valgrind/main/coregrind/m_coredump/
coredump-elf.c 71 static Bool may_dump(const NSegment *seg)
73 if (seg->kind == SkAnonC ||
74 seg->kind == SkShmC ||
75 (seg->kind == SkFileC &&
76 !VKI_S_ISCHR(seg->mode) && !VKI_S_ISBLK(seg->mode)))
83 static Bool should_dump(const NSegment *seg)
85 return may_dump(seg); // && seg->hasW;
113 static void fill_phdr(ESZ(Phdr) *phdr, const NSegment *seg, UInt off, Bool write
523 NSegment const * seg; local
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-main.c 1484 NSegment const* seg = VG_(am_find_nsegment)(stackMin); local
    [all...]
syswrap-mips32-linux.c 251 NSegment const *seg; local
286 seg = VG_ (am_find_nsegment) ((Addr) sp);
288 if (seg && seg->kind != SkResvn) {
290 ctst->client_stack_szB = ctst->client_stack_highest_word - seg->start;
291 VG_ (register_stack) (seg->start, ctst->client_stack_highest_word);
295 ctid, seg->start, VG_PGROUNDUP (sp));
    [all...]
syswrap-x86-linux.c 220 NSegment const* seg; local
283 seg = VG_(am_find_nsegment)((Addr)esp);
284 if (seg && seg->kind != SkResvn) {
286 ctst->client_stack_szB = ctst->client_stack_highest_word - seg->start;
288 VG_(register_stack)(seg->start, ctst->client_stack_highest_word);
292 ctid, seg->start, VG_PGROUNDUP(esp));
    [all...]
  /frameworks/wilhelm/tools/permute/
permute.c 86 Segment *seg = &s->mSegmentArray[s->mSegmentCount++]; local
87 seg->mFrameStart = frameStart;
88 seg->mFrameLength = frameLength;
89 seg->mPermutedStart = ~0;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
loopfilter.c 117 int seg, /* segment number */ local
130 for(seg = 0; seg < MAX_MB_SEGMENTS; seg++)
141 lvl_seg = mbd->segment_feature_data[MB_LVL_ALT_LF][seg];
145 lvl_seg += mbd->segment_feature_data[MB_LVL_ALT_LF][seg];
155 vpx_memset(lfi->lvl[seg][0], lvl_seg, 4 * 4 );
172 lfi->lvl[seg][ref][mode] = lvl_mode;
177 lfi->lvl[seg][ref][mode] = lvl_mode;
192 lfi->lvl[seg][ref][mode] = lvl_mode
217 const int seg = mode_info_context->mbmi.segment_id; local
274 const int seg = mode_info_context->mbmi.segment_id; local
349 const int seg = mode_info_context->mbmi.segment_id; local
405 const int seg = mode_info_context->mbmi.segment_id; local
491 const int seg = mode_info_context->mbmi.segment_id; local
607 const int seg = mode_info_context->mbmi.segment_id; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_aq_cyclicrefresh.c 74 // with number of seg blocks, so compare available bits to number of blocks.
183 struct segmentation *const seg = &cm->seg; local
192 vp9_disable_segmentation(&cm->seg);
226 vp9_enable_segmentation(&cm->seg);
227 vp9_clearall_segfeatures(seg);
229 seg->abs_delta = SEGMENT_DELTADATA;
231 // Note: setting temporal_update has no effect, as the seg-map coding method
236 // seg->temporal_update = 0;
239 vp9_disable_segfeature(seg, 0, SEG_LVL_ALT_Q)
    [all...]
vp9_segmentation.c 22 void vp9_enable_segmentation(struct segmentation *seg) {
23 seg->enabled = 1;
24 seg->update_map = 1;
25 seg->update_data = 1;
28 void vp9_disable_segmentation(struct segmentation *seg) {
29 seg->enabled = 0;
33 struct segmentation *const seg = &cpi->common.seg; local
40 seg->update_map = 1;
41 seg->update_data = 1
217 struct segmentation *seg = &cm->seg; local
    [all...]
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
processor.h 54 unsigned long seg; member in struct:__anon61027
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
processor.h 54 unsigned long seg; member in struct:__anon63752
  /prebuilts/ndk/9/platforms/android-12/arch-mips/usr/include/asm/
processor.h 54 unsigned long seg; member in struct:__anon65496
  /prebuilts/ndk/9/platforms/android-13/arch-mips/usr/include/asm/
processor.h 54 unsigned long seg; member in struct:__anon66816
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/
processor.h 54 unsigned long seg; member in struct:__anon68147
  /prebuilts/ndk/9/platforms/android-15/arch-mips/usr/include/asm/
processor.h 54 unsigned long seg; member in struct:__anon69480
  /prebuilts/ndk/9/platforms/android-16/arch-mips/usr/include/asm/
processor.h 54 unsigned long seg; member in struct:__anon70813
  /prebuilts/ndk/9/platforms/android-17/arch-mips/usr/include/asm/
processor.h 54 unsigned long seg; member in struct:__anon72146
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/
processor.h 54 unsigned long seg; member in struct:__anon73479
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/asm/
processor.h 54 unsigned long seg; member in struct:__anon74886
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/
processor.h 54 unsigned long seg; member in struct:__anon82439
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
threading.c 492 const int seg = xd->mode_info_context->mbmi.segment_id; local
495 filter_level = lfi_n->lvl[seg][ref_frame][mode_index];
  /external/libvpx/libvpx/vp8/decoder/
threading.c 492 const int seg = xd->mode_info_context->mbmi.segment_id; local
495 filter_level = lfi_n->lvl[seg][ref_frame][mode_index];

Completed in 5064 milliseconds

1 23 4 5 6 7 8