HomeSort by relevance Sort by last modified time
    Searched full:1024 (Results 776 - 800 of 9809) sorted by null

<<31323334353637383940>>

  /external/autotest/client/site_tests/platform_PartitionCheck/
platform_PartitionCheck.py 11 ROOTFS_SIZE = 2 * 1024 * 1024 * 1024
  /external/guava/guava-tests/benchmark/com/google/common/math/
BigIntegerMathRoundingBenchmark.java 48 positive[i] = randomPositiveBigInteger(1024);
49 nonzero1[i] = randomNonZeroBigInteger(1024);
50 nonzero2[i] = randomNonZeroBigInteger(1024);
  /external/guava/guava-tests/benchmark/com/google/common/primitives/
UnsignedBytesBenchmark.java 41 //@Param({"4", "8", "64", "1024", "1048576", "1048577", "6710884", "6710883"})
42 @Param({"4", "8", "64", "1024" })
79 bench.length = 1024;
  /external/iproute2/ip/
iplink_ipoib.c 54 addattr_l(n, 1024, IFLA_IPOIB_PKEY, &pkey, 2);
63 addattr_l(n, 1024, IFLA_IPOIB_MODE, &mode, 2);
68 addattr_l(n, 1024, IFLA_IPOIB_UMCAST, &umcast, 2);
link_veth.c 57 addattr_l(hdr, 1024, VETH_INFO_PEER, NULL, 0);
70 addattr_l(hdr, 1024, IFLA_IFNAME, name, len);
81 addattr32(hdr, 1024, IFLA_GROUP, group);
  /external/libvpx/libvpx/test/
vp9_quantize_test.cc 144 DECLARE_ALIGNED(16, tran_low_t, coeff_ptr[1024]);
149 DECLARE_ALIGNED(16, tran_low_t, qcoeff_ptr[1024]);
150 DECLARE_ALIGNED(16, tran_low_t, dqcoeff_ptr[1024]);
151 DECLARE_ALIGNED(16, tran_low_t, ref_qcoeff_ptr[1024]);
152 DECLARE_ALIGNED(16, tran_low_t, ref_dqcoeff_ptr[1024]);
163 const int count = (4 << sz) * (4 << sz); // 1024
267 DECLARE_ALIGNED(16, tran_low_t, coeff_ptr[1024]);
272 DECLARE_ALIGNED(16, tran_low_t, qcoeff_ptr[1024]);
273 DECLARE_ALIGNED(16, tran_low_t, dqcoeff_ptr[1024]);
274 DECLARE_ALIGNED(16, tran_low_t, ref_qcoeff_ptr[1024]);
    [all...]
  /external/llvm/test/MC/PowerPC/
ppc64-operands.s 127 # CHECK-BE: b .+1024 # encoding: [0x48,0x00,0x04,0x00]
128 # CHECK-LE: b .+1024 # encoding: [0x00,0x04,0x00,0x48]
129 b 1024
131 # CHECK-BE: ba 1024 # encoding: [0x48,0x00,0x04,0x02]
132 # CHECK-LE: ba 1024 # encoding: [0x02,0x04,0x00,0x48]
133 ba 1024
135 # CHECK-BE: beq 0, .+1024 # encoding: [0x41,0x82,0x04,0x00]
136 # CHECK-LE: beq 0, .+1024 # encoding: [0x00,0x04,0x82,0x41]
137 beq 1024
139 # CHECK-BE: beqa 0, 1024 # encoding: [0x41,0x82,0x04,0x02
    [all...]
  /external/llvm/test/Transforms/LoopUnroll/AArch64/
partial.ll 11 %exitcnd = icmp uge i32 %inc, 1024
43 %exitcnd2 = icmp uge i32 %inc2, 1024
51 %exitcnd1 = icmp uge i32 %inc1, 1024
  /external/llvm/test/Transforms/LoopVectorize/
induction_plus.ll 6 @array = common global [1024 x i32] zeroinitializer, align 16
19 %3 = getelementptr inbounds [1024 x i32], [1024 x i32]* @array, i64 0, i64 %2
  /external/opencv3/modules/imgproc/perf/
perf_matchTemplate.cpp 18 cv::Size(1024, 768), cv::Size(1280, 1024)),
53 testing::Values(cv::Size(1280, 1024)),
  /external/selinux/policycoreutils/sepolicy/sepolicy/
network.py 59 d[(src, protocol, perm)].append((i, ["all ports > 1024"]))
61 d[(src, protocol, perm)].append((i, ["all ports < 1024"]))
63 d[(src, protocol, perm)].append((i, ["all ports > 500 and < 1024"]))
  /external/valgrind/none/tests/linux/
pthread-stack.c 73 const size_t file_size = 1024 * 1024;
89 const size_t stack_size = 256 * 1024;
  /external/valgrind/none/tests/solaris/
pthread-stack.c 68 size_t file_size = 1024 * 1024;
83 const size_t stack_size = 256 * 1024;
  /hardware/intel/img/psb_headers/DRM/cc54/inc/
drm_common_api.h 25 #define MAX_DMA_DATA_SIZE_IN_BYTES (4 * 1024 * 1024)
40 #define MAX_RNG_SIZE_IN_BYTES (4 * 1024)
  /libcore/luni/src/test/java/libcore/java/io/
FilterInputStreamNullSourceTest.java 41 assertReadsFailWithIoException(new BufferedInputStream(null, 1024));
90 new InflaterInputStream(null, new Inflater(), 1024);
102 assertReadsFailWithIoException(new PushbackInputStream(null, 1024));
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidGZIPStreamTest.java 64 byte[] sample = new byte[128 * 1024];
71 for (i = 0; i < (128 * 1024) / 256; i++) {
106 assertEquals(totalLen, 128 * 1024);
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
bloom_filter.h 58 // dictionaries, so n = 100. 1024 buckets give us m = 1024.
64 // 1021 is the largest prime under 1024.
  /prebuilts/go/darwin-x86/src/runtime/
msize.go 41 // one mapping sizes <= 1024 to their class and one mapping
42 // sizes >= 1024 and <= MaxSmallSize to their class.
44 // the size divided by 8 (rounded up). Objects >= 1024 bytes
53 var size_to_class8 [1024/8 + 1]int8
54 var size_to_class128 [(_MaxSmallSize-1024)/128 + 1]int8
60 if size > 1024-8 {
61 return int32(size_to_class128[(size-1024+127)>>7])
116 for ; nextsize < 1024 && nextsize <= int(class_to_size[sizeclass]); nextsize += 8 {
119 if nextsize >= 1024 {
121 size_to_class128[(nextsize-1024)/128] = int8(sizeclass
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
msize.go 41 // one mapping sizes <= 1024 to their class and one mapping
42 // sizes >= 1024 and <= MaxSmallSize to their class.
44 // the size divided by 8 (rounded up). Objects >= 1024 bytes
53 var size_to_class8 [1024/8 + 1]int8
54 var size_to_class128 [(_MaxSmallSize-1024)/128 + 1]int8
60 if size > 1024-8 {
61 return int32(size_to_class128[(size-1024+127)>>7])
116 for ; nextsize < 1024 && nextsize <= int(class_to_size[sizeclass]); nextsize += 8 {
119 if nextsize >= 1024 {
121 size_to_class128[(nextsize-1024)/128] = int8(sizeclass
    [all...]
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/asm/mips-boards/
malta.h 34 #define GCMP_ADDRSPACE_SZ (256 * 1024)
36 #define GIC_ADDRSPACE_SZ (128 * 1024)
39 #define MSC01_BIU_ADDRSPACE_SZ (256 * 1024)
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/asm/mips-boards/
malta.h 34 #define GCMP_ADDRSPACE_SZ (256 * 1024)
36 #define GIC_ADDRSPACE_SZ (128 * 1024)
39 #define MSC01_BIU_ADDRSPACE_SZ (256 * 1024)
  /prebuilts/ndk/current/platforms/android-14/arch-mips/usr/include/asm/mips-boards/
malta.h 34 #define GCMP_ADDRSPACE_SZ (256 * 1024)
36 #define GIC_ADDRSPACE_SZ (128 * 1024)
39 #define MSC01_BIU_ADDRSPACE_SZ (256 * 1024)
  /prebuilts/ndk/current/platforms/android-15/arch-mips/usr/include/asm/mips-boards/
malta.h 34 #define GCMP_ADDRSPACE_SZ (256 * 1024)
36 #define GIC_ADDRSPACE_SZ (128 * 1024)
39 #define MSC01_BIU_ADDRSPACE_SZ (256 * 1024)
  /prebuilts/ndk/current/platforms/android-16/arch-mips/usr/include/asm/mips-boards/
malta.h 34 #define GCMP_ADDRSPACE_SZ (256 * 1024)
36 #define GIC_ADDRSPACE_SZ (128 * 1024)
39 #define MSC01_BIU_ADDRSPACE_SZ (256 * 1024)
  /prebuilts/ndk/current/platforms/android-17/arch-mips/usr/include/asm/mips-boards/
malta.h 34 #define GCMP_ADDRSPACE_SZ (256 * 1024)
36 #define GIC_ADDRSPACE_SZ (128 * 1024)
39 #define MSC01_BIU_ADDRSPACE_SZ (256 * 1024)

Completed in 546 milliseconds

<<31323334353637383940>>