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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
mips4-branch-likely.d 2 #name: MIPS mips4 branch-likely instructions
4 # Test mips4 branch-likely instructions.
micromips@mips4-branch-likely.d 2 #name: MIPS mips4 branch-likely instructions
3 #source: mips4-branch-likely.s
6 # Test mips4 branch-likely instructions (microMIPS).
mips4-branch-likely.s 1 # Source file used to test -mips4 branch-likely instructions.
  /external/libunwind/include/
compiler.h 51 # define likely(x) __builtin_expect ((x), 1) macro
54 # define likely(x) (x) macro
68 # define likely(x) (x) macro
  /external/elfutils/libelf/
elf_flagdata.c 57 if (likely (cmd == ELF_C_SET))
59 else if (likely (cmd == ELF_C_CLR))
elf_flagelf.c 54 if (likely (cmd == ELF_C_SET))
57 else if (likely (cmd == ELF_C_CLR))
elf_flagphdr.c 54 if (likely (cmd == ELF_C_SET))
56 else if (likely (cmd == ELF_C_CLR))
elf_flagscn.c 54 if (likely (cmd == ELF_C_SET))
56 else if (likely (cmd == ELF_C_CLR))
elf_flagshdr.c 54 if (likely (cmd == ELF_C_SET))
56 else if (likely (cmd == ELF_C_CLR))
elf_version.c 50 if (likely (version < EV_NUM))
elf_flagehdr.c 54 if (likely (cmd == ELF_C_SET))
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
mulbug-err-1.s 1 ; Test error message for mul insns at locations likely to trig
  /external/elfutils/libasm/
asm_abort.c 48 if (likely (! ctx->textp))
asm_newscn_ingrp.c 45 if (likely (result != NULL))
64 if (likely (! ctx->textp))
  /external/elfutils/libdwfl/
dwfl_module_addrdie.c 39 if (likely (error == DWFL_E_NOERROR))
dwfl_module_nextcu.c 39 if (likely (error == DWFL_E_NOERROR))
dwfl_module_register_names.c 55 for (int regno = 0; regno < nregs && likely (result == 0); ++regno)
70 if (likely (len > 0))
  /external/harfbuzz_ng/src/
hb-ot-maxp-table.hh 55 likely (version.major == 1 ||
hb-utf-private.hh 54 if (likely (text < end &&
66 if (likely (1 < end - text &&
81 if (likely (2 < end - text &&
116 if (likely (next (text, end, unicode, replacement) == end))
143 if (likely (!hb_in_range (c, 0xD800u, 0xDFFFu)))
149 if (likely (c <= 0xDBFFu && text < end))
153 if (likely (hb_in_range (l, 0xDC00u, 0xDFFFu)))
175 if (likely (!hb_in_range (c, 0xD800u, 0xDFFFu)))
181 if (likely (c >= 0xDC00u && start < text))
185 if (likely (hb_in_range (h, 0xD800u, 0xDBFFu))
    [all...]
  /external/e2fsprogs/lib/ext2fs/
crc32c_defs.h 54 #define likely(x) __builtin_expect(!!(x), 1) macro
57 #define likely(x) (x) macro
  /external/mesa3d/src/mapi/
u_current.h 74 return (likely(u_current_table) ?
85 return likely(u_current_context) ? u_current_context : u_current_get_context_internal();
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
layout.go 54 // Use likely direction if we have it.
55 var likely *Block
56 switch b.Likely {
58 likely = b.Succs[0].b
60 likely = b.Succs[1].b
62 if likely != nil && !scheduled[likely.ID] {
63 bid = likely.ID
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
layout.go 54 // Use likely direction if we have it.
55 var likely *Block
56 switch b.Likely {
58 likely = b.Succs[0].b
60 likely = b.Succs[1].b
62 if likely != nil && !scheduled[likely.ID] {
63 bid = likely.ID
  /external/libunwind/src/x86_64/
Gtrace.c 92 if (likely(frames != NULL))
183 if (likely (pthread_once != NULL))
245 if (likely(dwarf_put (d, d->loc[UNW_X86_64_RIP], rip) >= 0)
246 && likely(dwarf_put (d, d->loc[UNW_X86_64_RBP], rbp) >= 0)
247 && likely(dwarf_put (d, d->loc[UNW_X86_64_RSP], rsp) >= 0)
248 && likely((ret = unw_step (cursor)) >= 0))
296 if (likely(addr == rip))
303 if (likely(! addr))
482 if (likely(ret >= 0) && likely(f->rbp_cfa_offset != -1)
    [all...]
  /development/ndk/platforms/android-9/arch-x86/include/asm/
cmpxchg_32.h 31 #define cmpxchg(ptr,o,n) ({ __typeof__(*(ptr)) __ret; if (likely(boot_cpu_data.x86 > 3)) __ret = __cmpxchg((ptr), (unsigned long)(o), (unsigned long)(n), sizeof(*(ptr))); else __ret = cmpxchg_386((ptr), (unsigned long)(o), (unsigned long)(n), sizeof(*(ptr))); __ret; })
32 #define cmpxchg_local(ptr,o,n) ({ __typeof__(*(ptr)) __ret; if (likely(boot_cpu_data.x86 > 3)) __ret = __cmpxchg_local((ptr), (unsigned long)(o), (unsigned long)(n), sizeof(*(ptr))); else __ret = cmpxchg_386((ptr), (unsigned long)(o), (unsigned long)(n), sizeof(*(ptr))); __ret; })

Completed in 836 milliseconds

1 2 3 4 5 6 7 8 91011>>