OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:is_intn
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/v8/src/
assembler.h
1012
inline bool
is_intn
(int x, int n) {
function in namespace:v8::internal
[
all
...]
/external/v8/src/
assembler.h
819
inline bool
is_intn
(int x, int n) {
function in namespace:v8::internal
823
inline bool is_int8(int x) { return
is_intn
(x, 8); }
824
inline bool is_int16(int x) { return
is_intn
(x, 16); }
825
inline bool is_int18(int x) { return
is_intn
(x, 18); }
826
inline bool is_int24(int x) { return
is_intn
(x, 24); }
Completed in 46 milliseconds