HomeSort by relevance Sort by last modified time
    Searched refs:likely (Results 101 - 125 of 308) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/bintrees/bintrees/
qbintree.c 121 #define __Pyx_PyUnicode_READY(op) (likely(PyUnicode_IS_READY(op)) ? \
200 (likely((obj)->ob_type->tp_as_mapping) ? (PySequence_GetSlice(obj, a, b)) : \
204 (likely((obj)->ob_type->tp_as_mapping) ? (PySequence_SetSlice(obj, a, b, value)) : \
208 (likely((obj)->ob_type->tp_as_mapping) ? (PySequence_DelSlice(obj, a, b)) : \
320 #define likely(x) __builtin_expect(!!(x), 1) macro
323 #define likely(x) (x) macro
327 #define likely(x) (x) macro
478 if (likely((0 <= i) & (i < PyList_GET_SIZE(o)))) {
498 if (likely((0 <= i) & (i < PyTuple_GET_SIZE(o)))) {
519 Py_ssize_t n = (likely(i >= 0)) ? i : i + PyList_GET_SIZE(o)
    [all...]
qrbtree.c 121 #define __Pyx_PyUnicode_READY(op) (likely(PyUnicode_IS_READY(op)) ? \
200 (likely((obj)->ob_type->tp_as_mapping) ? (PySequence_GetSlice(obj, a, b)) : \
204 (likely((obj)->ob_type->tp_as_mapping) ? (PySequence_SetSlice(obj, a, b, value)) : \
208 (likely((obj)->ob_type->tp_as_mapping) ? (PySequence_DelSlice(obj, a, b)) : \
320 #define likely(x) __builtin_expect(!!(x), 1) macro
323 #define likely(x) (x) macro
327 #define likely(x) (x) macro
478 if (likely((0 <= i) & (i < PyList_GET_SIZE(o)))) {
498 if (likely((0 <= i) & (i < PyTuple_GET_SIZE(o)))) {
519 Py_ssize_t n = (likely(i >= 0)) ? i : i + PyList_GET_SIZE(o)
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-common.cc 118 if (likely ((unsigned int) (direction - HB_DIRECTION_LTR)
255 return likely (item) ? item->lang : HB_LANGUAGE_INVALID;
hb-private.hh 151 #define likely(expr) (__builtin_expect (_HB_BOOLEAN_EXPR(expr), 1)) macro
154 #define likely(expr) (expr) macro
231 return likely (number) ? (sizeof (unsigned int) * 8 - __builtin_clz (number)) : 0;
247 return likely (number) ? __builtin_ctz (number) : 0;
295 if (likely (len < allocated))
308 if (likely (!overflows)) {
414 if (likely (item))
455 if (likely (item))
hb-ot-layout-gpos-table.hh 112 if (likely (horizontal)) glyph_pos.x_advance += font->em_scale_x (get_short (values++)); else values++;
443 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
488 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
490 if (likely (index >= valueCount)) return TRACE_RETURN (false);
666 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
736 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
941 if (likely (HB_DIRECTION_IS_HORIZONTAL (c->direction)))
947 if (likely (HB_DIRECTION_IS_HORIZONTAL (c->direction)))
    [all...]
hb-ot-layout-gsub-table.hh 78 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
154 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
353 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
487 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
617 if (likely (c->glyphs[i] != component[i]))
633 if (likely (!match_input (c, count,
792 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
804 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
978 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
    [all...]
hb-open-type-private.hh 229 return TRACE_RETURN (likely (this->start <= p && p <= this->end && (unsigned int) (this->end - p) >= len));
243 return TRACE_RETURN (likely (!overflows && this->check_range (base, record_size * len)));
249 return likely (this->check_range (obj, obj->min_size));
569 return TRACE_RETURN (likely (c->check_struct (this)));
595 return TRACE_RETURN (likely (c->check_struct (this)));
708 return TRACE_RETURN (likely (obj.sanitize (c)) || neuter (c));
717 return TRACE_RETURN (likely (obj.sanitize (c, user_data)) || neuter (c));
hb-font-private.hh 316 if (likely (HB_DIRECTION_IS_HORIZONTAL (direction))) {
339 if (likely (HB_DIRECTION_IS_HORIZONTAL (direction))) {
384 if (likely (HB_DIRECTION_IS_HORIZONTAL (direction))) {
hb-buffer-private.hh 181 { return likely (size < allocated) ? true : enlarge (size); }
hb-object-private.hh 112 if (likely (obj))
hb-unicode-private.hh 172 if (likely (plane == 0))
  /external/elfutils/libdw/
memory-access.h 64 if (likely ((__b & 0x80) == 0)) \
91 if (likely ((__b & 0x80) == 0)) \
dwarf_begin_elf.c 163 if (likely (result != NULL)
  /external/harfbuzz_ng/src/
hb-common.cc 118 if (likely ((unsigned int) (direction - HB_DIRECTION_LTR)
255 return likely (item) ? item->lang : HB_LANGUAGE_INVALID;
hb-open-type-private.hh 229 return TRACE_RETURN (likely (this->start <= p && p <= this->end && (unsigned int) (this->end - p) >= len));
243 return TRACE_RETURN (likely (!overflows && this->check_range (base, record_size * len)));
249 return likely (this->check_range (obj, obj->min_size));
569 return TRACE_RETURN (likely (c->check_struct (this)));
595 return TRACE_RETURN (likely (c->check_struct (this)));
708 return TRACE_RETURN (likely (obj.sanitize (c)) || neuter (c));
717 return TRACE_RETURN (likely (obj.sanitize (c, user_data)) || neuter (c));
955 if (likely (count < 32)) {
hb-private.hh 151 #define likely(expr) (__builtin_expect (_HB_BOOLEAN_EXPR(expr), 1)) macro
154 #define likely(expr) (expr) macro
231 return likely (number) ? (sizeof (unsigned int) * 8 - __builtin_clz (number)) : 0;
247 return likely (number) ? __builtin_ctz (number) : 0;
295 if (likely (len < allocated))
308 if (likely (!overflows)) {
414 if (likely (item))
455 if (likely (item))
hb-ot-layout-gpos-table.hh 112 if (likely (horizontal)) glyph_pos.x_advance += font->em_scale_x (get_short (values++)); else values++;
443 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
488 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
490 if (likely (index >= valueCount)) return TRACE_RETURN (false);
666 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
738 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
943 if (likely (HB_DIRECTION_IS_HORIZONTAL (c->direction)))
949 if (likely (HB_DIRECTION_IS_HORIZONTAL (c->direction)))
    [all...]
hb-ot-layout-gsub-table.hh 78 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
154 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
346 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
480 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
610 if (likely (c->glyphs[i] != component[i]))
626 if (likely (!match_input (c, count,
785 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
797 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
971 if (likely (index == NOT_COVERED)) return TRACE_RETURN (false);
    [all...]
hb-font-private.hh 316 if (likely (HB_DIRECTION_IS_HORIZONTAL (direction))) {
339 if (likely (HB_DIRECTION_IS_HORIZONTAL (direction))) {
384 if (likely (HB_DIRECTION_IS_HORIZONTAL (direction))) {
  /external/kernel-headers/original/asm-x86/
cmpxchg_32.h 234 if (likely(boot_cpu_data.x86 > 3)) \
245 if (likely(boot_cpu_data.x86 > 3)) \
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_context.h 100 #ifndef likely
102 #define likely(expr) (__builtin_expect(expr, 1)) macro
105 #define likely(expr) (expr) macro
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_context.h 100 #ifndef likely
102 #define likely(expr) (__builtin_expect(expr, 1)) macro
105 #define likely(expr) (expr) macro
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/
Runtime.pm 53 problem, one or more likely causes, and any suggested remedies.
86 whether they are likely to be fixed in an upcoming release.
  /external/chromium_org/tools/vim/
ninja-build.vim 33 # it is, the more likely it's wrong (checking for just "build/common.gypi"
35 # exists). The longer it is, the more likely it is to break when we rename
  /external/elfutils/libelf/
elf_update.c 198 if (likely (size != -1)

Completed in 408 milliseconds

1 2 3 45 6 7 8 91011>>