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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_format.py 98 big = 123456789012345678901234567890L
99 testboth("%d", big, "123456789012345678901234567890")
100 testboth("%d", -big, "-123456789012345678901234567890")
101 testboth("%5d", -big, "-123456789012345678901234567890")
102 testboth("%31d", -big, "-123456789012345678901234567890")
103 testboth("%32d", -big, " -123456789012345678901234567890")
104 testboth("%-32d", -big, "-123456789012345678901234567890 ")
105 testboth("%032d", -big, "-0123456789012345678901234567890")
106 testboth("%-032d", -big, "-123456789012345678901234567890 ")
107 testboth("%034d", -big, "-000123456789012345678901234567890")
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_format.py 98 big = 123456789012345678901234567890L
99 testboth("%d", big, "123456789012345678901234567890")
100 testboth("%d", -big, "-123456789012345678901234567890")
101 testboth("%5d", -big, "-123456789012345678901234567890")
102 testboth("%31d", -big, "-123456789012345678901234567890")
103 testboth("%32d", -big, " -123456789012345678901234567890")
104 testboth("%-32d", -big, "-123456789012345678901234567890 ")
105 testboth("%032d", -big, "-0123456789012345678901234567890")
106 testboth("%-032d", -big, "-123456789012345678901234567890 ")
107 testboth("%034d", -big, "-000123456789012345678901234567890"
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_format.py 98 big = 123456789012345678901234567890L
99 testboth("%d", big, "123456789012345678901234567890")
100 testboth("%d", -big, "-123456789012345678901234567890")
101 testboth("%5d", -big, "-123456789012345678901234567890")
102 testboth("%31d", -big, "-123456789012345678901234567890")
103 testboth("%32d", -big, " -123456789012345678901234567890")
104 testboth("%-32d", -big, "-123456789012345678901234567890 ")
105 testboth("%032d", -big, "-0123456789012345678901234567890")
106 testboth("%-032d", -big, "-123456789012345678901234567890 ")
107 testboth("%034d", -big, "-000123456789012345678901234567890"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_format.py 98 big = 123456789012345678901234567890L
99 testboth("%d", big, "123456789012345678901234567890")
100 testboth("%d", -big, "-123456789012345678901234567890")
101 testboth("%5d", -big, "-123456789012345678901234567890")
102 testboth("%31d", -big, "-123456789012345678901234567890")
103 testboth("%32d", -big, " -123456789012345678901234567890")
104 testboth("%-32d", -big, "-123456789012345678901234567890 ")
105 testboth("%032d", -big, "-0123456789012345678901234567890")
106 testboth("%-032d", -big, "-123456789012345678901234567890 ")
107 testboth("%034d", -big, "-000123456789012345678901234567890"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_format.py 98 big = 123456789012345678901234567890L
99 testboth("%d", big, "123456789012345678901234567890")
100 testboth("%d", -big, "-123456789012345678901234567890")
101 testboth("%5d", -big, "-123456789012345678901234567890")
102 testboth("%31d", -big, "-123456789012345678901234567890")
103 testboth("%32d", -big, " -123456789012345678901234567890")
104 testboth("%-32d", -big, "-123456789012345678901234567890 ")
105 testboth("%032d", -big, "-0123456789012345678901234567890")
106 testboth("%-032d", -big, "-123456789012345678901234567890 ")
107 testboth("%034d", -big, "-000123456789012345678901234567890"
    [all...]
  /external/lzma/CPP/7zip/UI/FileManager/
DialogSize.h 10 #define SIZED_DIALOG(big) (isBig ? big : big ## _2)
13 #define SIZED_DIALOG(big) big
  /external/valgrind/memcheck/tests/
resvn_stack.c 3 __attribute__((noinline)) void big(void) function
21 big();
big_blocks_freed_list.c 2 /* To be run with --freelist-vol=1000000 --freelist-big-blocks=50000 */
10 char *big = NULL; local
16 /* Verify that access via a dangling pointer to a big block bigger than
19 big = malloc (1000015);
21 free(big);
22 if (big[1000] > 0x0) jumped();
26 by doing big alloc/free. */
31 but not for the big block, which has been removed from the free list
33 if (big[2000] > 0x0) jumped();
36 big = NULL
    [all...]
sbfragment.c 39 char *big = NULL; local
43 unsigned long bigsize = 8; // current size of the (reallocated) big block.
57 big = malloc (bigsize);
58 if (big == NULL)
62 printf("big 0x%p\n", big);
71 free (big);
72 big = newbig;
74 printf("big 0x%p\n", big);
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue9604b.go 11 "math/big"
15 var one = big.NewInt(1)
24 func (t *_type) testvalues() []*big.Int {
25 var a []*big.Int
27 a = append(a, big.NewInt(0))
28 a = append(a, big.NewInt(1))
29 a = append(a, big.NewInt(2))
31 a = append(a, big.NewInt(-1))
32 a = append(a, big.NewInt(-2))
33 r := big.NewInt(1
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
issue9604b.go 11 "math/big"
15 var one = big.NewInt(1)
24 func (t *_type) testvalues() []*big.Int {
25 var a []*big.Int
27 a = append(a, big.NewInt(0))
28 a = append(a, big.NewInt(1))
29 a = append(a, big.NewInt(2))
31 a = append(a, big.NewInt(-1))
32 a = append(a, big.NewInt(-2))
33 r := big.NewInt(1
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/string/
wcsstr.c 36 wcswcs(const wchar_t *big, const wchar_t *little)
38 wcsstr(const wchar_t *big, const wchar_t *little)
47 return (wchar_t *)big;
49 if (wcslen(big) < wcslen(little))
52 p = big;
  /external/clang/test/Sema/
aarch64-neon-ranges.c 6 void test_vext_8bit(int8x8_t small, int8x16_t big) {
10 vextq_s8(big, big, 15);
11 vextq_u8(big, big, 15);
12 vextq_p8(big, big, 15);
17 vextq_s8(big, big, 16); // expected-error {{argument should be a value from 0 to 15}}
18 vextq_u8(big, big, 16); // expected-error {{argument should be a value from 0 to 15}
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/
err-be.s 3 ! { dg-error "-big required" "" { target sh*-*-elf } 0 }
5 ! Check that a mismatch between command-line options and the .big
8 .big
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
reloc-boundaries.d 2 [^:]*: file format elf32-(little|big)arm.*
  /prebuilts/go/darwin-x86/test/ken/
convert.go 23 type big float64 type
27 val big
207 w := big(0) // output value
221 i8 = int8(v); i8 = int8(i8); w = big(i8)
223 i8 = int8(v); u8 = uint8(i8); w = big(u8)
225 i8 = int8(v); i16 = int16(i8); w = big(i16)
227 i8 = int8(v); u16 = uint16(i8); w = big(u16)
229 i8 = int8(v); i32 = int32(i8); w = big(i32)
231 i8 = int8(v); u32 = uint32(i8); w = big(u32)
233 i8 = int8(v); i64 = int64(i8); w = big(i64
    [all...]
  /prebuilts/go/linux-x86/test/ken/
convert.go 23 type big float64 type
27 val big
207 w := big(0) // output value
221 i8 = int8(v); i8 = int8(i8); w = big(i8)
223 i8 = int8(v); u8 = uint8(i8); w = big(u8)
225 i8 = int8(v); i16 = int16(i8); w = big(i16)
227 i8 = int8(v); u16 = uint16(i8); w = big(u16)
229 i8 = int8(v); i32 = int32(i8); w = big(i32)
231 i8 = int8(v); u32 = uint32(i8); w = big(u32)
233 i8 = int8(v); i64 = int64(i8); w = big(i64
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
int128_unittest.cc 49 uint128 big(2000, 2);
57 EXPECT_LT(one, big);
58 EXPECT_LT(one, big);
61 EXPECT_GT(big, one);
62 EXPECT_GE(big, two);
63 EXPECT_GE(big, big_minus_one);
64 EXPECT_GT(big, big_minus_one);
65 EXPECT_LT(big_minus_one, big);
66 EXPECT_LE(big_minus_one, big);
67 EXPECT_NE(big_minus_one, big);
    [all...]
  /external/strace/tests/
xattr.c 51 char *const big = tail_alloc(XATTR_SIZE_MAX + 1); local
63 rc = fsetxattr(-1, name, big, XATTR_SIZE_MAX + 1, XATTR_CREATE);
65 name, big, XATTR_SIZE_MAX + 1, sprintrc(rc));
92 rc = getxattr(".", name, big, XATTR_SIZE_MAX + 1);
94 name, big, XATTR_SIZE_MAX + 1, sprintrc(rc));
96 rc = lgetxattr(".", name, big + 1, XATTR_SIZE_MAX);
98 name, big + 1, XATTR_SIZE_MAX, sprintrc(rc));
106 rc = listxattr(".", big, 0);
107 printf("listxattr(\".\", %p, 0) = %s\n", big, sprintrc(rc));
109 rc = listxattr(".", big, XATTR_SIZE_MAX + 1)
    [all...]
  /external/strace/tests-m32/
xattr.c 51 char *const big = tail_alloc(XATTR_SIZE_MAX + 1); local
63 rc = fsetxattr(-1, name, big, XATTR_SIZE_MAX + 1, XATTR_CREATE);
65 name, big, XATTR_SIZE_MAX + 1, sprintrc(rc));
92 rc = getxattr(".", name, big, XATTR_SIZE_MAX + 1);
94 name, big, XATTR_SIZE_MAX + 1, sprintrc(rc));
96 rc = lgetxattr(".", name, big + 1, XATTR_SIZE_MAX);
98 name, big + 1, XATTR_SIZE_MAX, sprintrc(rc));
106 rc = listxattr(".", big, 0);
107 printf("listxattr(\".\", %p, 0) = %s\n", big, sprintrc(rc));
109 rc = listxattr(".", big, XATTR_SIZE_MAX + 1)
    [all...]
  /external/strace/tests-mx32/
xattr.c 51 char *const big = tail_alloc(XATTR_SIZE_MAX + 1); local
63 rc = fsetxattr(-1, name, big, XATTR_SIZE_MAX + 1, XATTR_CREATE);
65 name, big, XATTR_SIZE_MAX + 1, sprintrc(rc));
92 rc = getxattr(".", name, big, XATTR_SIZE_MAX + 1);
94 name, big, XATTR_SIZE_MAX + 1, sprintrc(rc));
96 rc = lgetxattr(".", name, big + 1, XATTR_SIZE_MAX);
98 name, big + 1, XATTR_SIZE_MAX, sprintrc(rc));
106 rc = listxattr(".", big, 0);
107 printf("listxattr(\".\", %p, 0) = %s\n", big, sprintrc(rc));
109 rc = listxattr(".", big, XATTR_SIZE_MAX + 1)
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/elliptic/
elliptic.go 18 "math/big"
28 IsOnCurve(x, y *big.Int) bool
30 Add(x1, y1, x2, y2 *big.Int) (x, y *big.Int)
32 Double(x1, y1 *big.Int) (x, y *big.Int)
33 // ScalarMult returns k*(Bx,By) where k is a number in big-endian form.
34 ScalarMult(x1, y1 *big.Int, k []byte) (x, y *big.Int)
36 // and k is an integer in big-endian form
    [all...]
  /prebuilts/go/linux-x86/src/crypto/elliptic/
elliptic.go 18 "math/big"
28 IsOnCurve(x, y *big.Int) bool
30 Add(x1, y1, x2, y2 *big.Int) (x, y *big.Int)
32 Double(x1, y1 *big.Int) (x, y *big.Int)
33 // ScalarMult returns k*(Bx,By) where k is a number in big-endian form.
34 ScalarMult(x1, y1 *big.Int, k []byte) (x, y *big.Int)
36 // and k is an integer in big-endian form
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
binop.s 5 ; Some fairly big pseudorandom numbers we don't want to compute
unop.s 5 ; Some fairly big pseudorandom numbers we don't want to compute

Completed in 2351 milliseconds

1 2 3 4 5 6 7 8 91011>>