Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:LIKELY
(Results
1 - 18
of
18
) sorted by relevance
/third_party/musl/porting/linux/user/src/trace/
H
A
D
trace_marker.c
42
#define
LIKELY
(exp) (__builtin_expect(!!(exp), 1))
macro
95
if (
LIKELY
((!is_enable_trace(label) || message == NULL))) {
in trace_marker_begin()
128
if (
LIKELY
(!is_enable_trace(label))) {
in trace_marker_end()
156
if (
LIKELY
((!is_enable_trace(label) || message == NULL))) {
in trace_marker_async_begin()
189
if (
LIKELY
((!is_enable_trace(label) || message == NULL))) {
in trace_marker_async_end()
221
if (
LIKELY
((!is_enable_trace(label) || message == NULL))) {
in trace_marker_count()
/third_party/musl/src/trace/linux/
H
A
D
trace_marker.c
43
#define
LIKELY
(exp) (__builtin_expect(!!(exp), 1))
macro
96
if (
LIKELY
((!is_enable_trace(label) || message == NULL))) {
in trace_marker_begin()
129
if (
LIKELY
(!is_enable_trace(label))) {
in trace_marker_end()
157
if (
LIKELY
((!is_enable_trace(label) || message == NULL))) {
in trace_marker_async_begin()
190
if (
LIKELY
((!is_enable_trace(label) || message == NULL))) {
in trace_marker_async_end()
222
if (
LIKELY
((!is_enable_trace(label) || message == NULL))) {
in trace_marker_count()
/third_party/gn/src/base/
H
A
D
compiler_specific.h
50
#if !defined(
LIKELY
)
52
#define
LIKELY
(x) __builtin_expect(!!(x), 1)
macro
54
#define
LIKELY
(x) (x)
macro
56
#endif // !defined(
LIKELY
)
/third_party/node/src/
H
A
D
node_wasm_web_api.cc
108
if (
LIKELY
(chunk->IsArrayBufferView())) {
in Push()
113
} else if (
LIKELY
(chunk->IsArrayBuffer())) {
in Push()
H
A
D
debug_utils-inl.h
69
if (
LIKELY
(p == nullptr)) return format;
in SPrintFImpl()
H
A
D
string_decoder.cc
117
if (
LIKELY
(MissingBytes() == 0)) {
in DecodeData()
H
A
D
node_http2.cc
639
if (
LIKELY
(!HasHttp2Observer(env())))
in EmitStatistics()
659
if (
LIKELY
(!HasHttp2Observer(env())))
in EmitStatistics()
898
if (
LIKELY
(!stream)) {
in OnBeginHeadersCallback()
1207
if (
LIKELY
(buf.base == nullptr))
in OnDataChunkReceived()
1699
if (
LIKELY
(stream))
in ClearOutgoing()
1888
if (
LIKELY
(*ret > 0))
in SubmitRequest()
1918
if (
LIKELY
(stream_buf_offset_ == 0)) {
in OnStreamRead()
H
A
D
node_perf.cc
169
if (
LIKELY
(!state->observers[NODE_PERFORMANCE_ENTRY_TYPE_GC]))
in MarkGarbageCollectionEnd()
H
A
D
util.h
141
#define
LIKELY
(expr) __builtin_expect(!!(expr), 1)
macro
145
#define
LIKELY
(expr) expr
macro
H
A
D
util.cc
526
if (
LIKELY
(flag == SetConstructorFunctionFlag::SET_CLASS_NAME))
in SetConstructorFunction()
H
A
D
env.cc
143
if (
LIKELY
(offset < native_execution_async_resources_.size() &&
in pop_async_context()
H
A
D
node_buffer.cc
325
if (
LIKELY
(actual > 0)) {
in New()
/third_party/node/src/permission/
H
A
D
permission.h
38
if (
LIKELY
(!enabled_)) return true;
in is_granted()
/third_party/python/Modules/_blake2/impl/
H
A
D
blake2s-round.h
26
#define
LIKELY
(x) __builtin_expect((x),1)
macro
H
A
D
blake2b-round.h
26
#define
LIKELY
(x) __builtin_expect((x),1)
macro
/third_party/python/Objects/
H
A
D
obmalloc.c
749
# define
LIKELY
(value) __builtin_expect((value), 1)
macro
752
# define
LIKELY
(value) (value)
macro
1852
if (
LIKELY
(pool != NULL)) {
in allocate_from_new_pool()
1970
if (
LIKELY
(pool != pool->nextpool)) {
in pymalloc_alloc()
1999
if (
LIKELY
(ptr != NULL)) {
in _PyObject_Malloc()
2018
if (
LIKELY
(ptr != NULL)) {
in _PyObject_Calloc()
2260
if (
LIKELY
(pool->ref.count != 0)) {
in pymalloc_free()
/third_party/node/src/api/
H
A
D
environment.cc
107
if (
LIKELY
(ret != nullptr))
in Allocate()
114
if (
LIKELY
(ret != nullptr))
in AllocateUninitialized()
122
if (
LIKELY
(ret != nullptr) || UNLIKELY(size == 0))
in Reallocate()
/third_party/node/src/crypto/
H
A
D
crypto_hash.cc
298
if (
LIKELY
(params.length > 0)) {
in DeriveBits()
Completed in 22 milliseconds