OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:testBitNot
(Results
1 - 3
of
3
) sorted by null
/external/v8/test/mjsunit/
bit-not.js
28
function
testBitNot
(x, name) {
42
testBitNot
(0, 0);
43
testBitNot
(1, 1);
44
testBitNot
(-1, 1);
45
testBitNot
(100, 100);
46
testBitNot
(0x40000000, "0x40000000");
47
testBitNot
(0x7fffffff, "0x7fffffff");
48
testBitNot
(0x80000000, "0x80000000");
50
testBitNot
(2.2, 2.2);
51
testBitNot
(-2.3, -2.3)
[
all
...]
/frameworks/compile/libbcc/tests/data/src/
expr-ansi.c
29
void
testBitNot
(){ printf("~%d = %d\n", 10, ~10); }
58
testBitNot
();
expr.c
29
testBitNot
(){ printf("~%d = %d\n", 10, ~10); }
58
testBitNot
();
Completed in 111 milliseconds