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

<<31323334353637383940>>

  /external/iproute2/ip/
link_gre6.c 66 char buf[1024];
282 addattr32(n, 1024, IFLA_GRE_IKEY, ikey);
283 addattr32(n, 1024, IFLA_GRE_OKEY, okey);
284 addattr_l(n, 1024, IFLA_GRE_IFLAGS, &iflags, 2);
285 addattr_l(n, 1024, IFLA_GRE_OFLAGS, &oflags, 2);
286 addattr_l(n, 1024, IFLA_GRE_LOCAL, &laddr, sizeof(laddr));
287 addattr_l(n, 1024, IFLA_GRE_REMOTE, &raddr, sizeof(raddr));
289 addattr32(n, 1024, IFLA_GRE_LINK, link);
290 addattr_l(n, 1024, IFLA_GRE_TTL, &hop_limit, 1);
291 addattr_l(n, 1024, IFLA_GRE_ENCAP_LIMIT, &encap_limit, 1)
    [all...]
link_vti.c 52 char buf[1024];
189 addattr32(n, 1024, IFLA_VTI_IKEY, ikey);
190 addattr32(n, 1024, IFLA_VTI_OKEY, okey);
191 addattr_l(n, 1024, IFLA_VTI_LOCAL, &saddr, 4);
192 addattr_l(n, 1024, IFLA_VTI_REMOTE, &daddr, 4);
194 addattr32(n, 1024, IFLA_VTI_LINK, link);
201 char s1[1024];
link_vti6.c 48 char buf[1024];
186 addattr32(n, 1024, IFLA_VTI_IKEY, ikey);
187 addattr32(n, 1024, IFLA_VTI_OKEY, okey);
188 addattr_l(n, 1024, IFLA_VTI_LOCAL, &saddr, sizeof(saddr));
189 addattr_l(n, 1024, IFLA_VTI_REMOTE, &daddr, sizeof(daddr));
191 addattr32(n, 1024, IFLA_VTI_LINK, link);
198 char s1[1024];
  /external/libbrillo/brillo/streams/
stream_unittest.cc 276 char buf[1024];
279 EXPECT_CALL(stream_mock, ReadNonBlocking(buf, 1024, _, _, _))
286 EXPECT_CALL(stream_mock, ReadNonBlocking(buf, 1024, _, _, _))
295 EXPECT_CALL(stream_mock, ReadNonBlocking(buf, 1024, _, _, _))
301 EXPECT_CALL(stream_mock, ReadNonBlocking(buf, 1024, _, _, _))
307 EXPECT_CALL(stream_mock, ReadNonBlocking(buf, 1024, _, _, _))
317 EXPECT_CALL(stream_mock, ReadNonBlocking(buf, 1024, _, _, _))
333 char buf[1024];
335 EXPECT_CALL(stream_mock, ReadBlocking(buf, 1024, _, _))
342 EXPECT_CALL(stream_mock, ReadBlocking(buf, 1024, _, _)
    [all...]
  /external/llvm/test/MC/AArch64/
arm64-arithmetic-encoding.s 32 add w3, w4, #1024
33 add w3, w4, #1024, lsl #0
34 add x3, x4, #1024
35 add x3, x4, #1024, lsl #0
37 ; CHECK: add w3, w4, #1024 ; encoding: [0x83,0x00,0x10,0x11]
38 ; CHECK: add w3, w4, #1024 ; encoding: [0x83,0x00,0x10,0x11]
39 ; CHECK: add x3, x4, #1024 ; encoding: [0x83,0x00,0x10,0x91]
40 ; CHECK: add x3, x4, #1024 ; encoding: [0x83,0x00,0x10,0x91]
42 add w3, w4, #1024, lsl #12
45 add x3, x4, #1024, lsl #1
    [all...]
  /external/compiler-rt/lib/asan/tests/
asan_mac_test_helpers.mm 94 dispatch_block_t block = ^{ worker_do_crash(1024); };
104 dispatch_block_t block = ^{ worker_do_crash(1024); };
116 dispatch_block_t block_alloc = ^{ worker_do_alloc(1024); };
117 dispatch_block_t block_crash = ^{ worker_do_crash(1024); };
132 dispatch_block_t block_alloc = ^{ worker_do_alloc(1024); };
133 dispatch_block_t block_crash = ^{ worker_do_crash(1024); };
143 dispatch_block_t block_crash = ^{ worker_do_crash(1024); };
  /external/guice/extensions/testlib/test/com/google/inject/testing/fieldbinder/
BoundFieldModuleTest.java 55 final Integer testValue = 1024;
67 final Integer testValue = 1024;
93 FieldBindableSubclass instance = new FieldBindableSubclass(1024);
102 final Integer testValue = 1024;
117 final Integer testValue = 1024;
129 final Integer testValue = 1024;
147 final Integer testValue = 1024;
174 final Integer testValue1 = 1024, testValue2 = 2048;
197 final Integer testValue1 = 1024, testValue2 = 2048;
216 final Integer testValue1 = 1024, testValue2 = 2048
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
ParallaxTest.java 66 layers[1] = new TextureRegion(texture, 0, 363, 1024, 149);
90 if (camera.position.x < -1024 + camera.viewportWidth / 2) {
91 camera.position.x = -1024 + (int)(camera.viewportWidth / 2);
95 if (camera.position.x > 1024 - camera.viewportWidth / 2) {
96 camera.position.x = 1024 - (int)(camera.viewportWidth / 2);
119 // layer is 1024x320
130 batch.draw(layers[2], i * layers[2].getRegionWidth() - 1024, -160);
  /external/llvm/test/CodeGen/Thumb/
stack-access.ll 21 define void @test2([1024 x i8]** %p) {
22 %arr1 = alloca [1024 x i8], align 1
23 %arr2 = alloca [1024 x i8], align 1
27 store [1024 x i8]* %arr1, [1024 x i8]** %p, align 4
30 store [1024 x i8]* %arr2, [1024 x i8]** %p, align 4
  /libcore/luni/src/test/java/libcore/java/io/
FileInputStreamTest.java 36 private static final int TOTAL_SIZE = 1024;
231 byte[] buffer = new byte[1024 * 1024]; // 1 MB
232 for (int i = 0; i < 3 * 1024; i++) { // 3 GB
240 long lastByte = 3 * 1024 * 1024 * 1024L - 1;
  /libcore/luni/src/test/java/libcore/java/math/
BigIntegerTest.java 35 // I assume here that we'll never cache more than 1024 values.
37 for (int i = -1024; i <= 1024; ++i) {
91 for (int rep = 0; rep < 1024; ++rep) { // Manual flakiness protection for random tests.
106 for (int rep = 0; rep < 1024; ++rep) { // Manual flakiness protection for random tests.
121 int[] primes = new int[1024];
145 for (int rep = 0; rep < 1024; ++rep) { // Manual flakiness protection for random tests.
  /system/core/libmemunreachable/tests/
Allocator_test.cpp 88 const size_t size = 1024 * 1024;
97 const int size = 1024 * 1024;
137 for (int i = 0; i < 1024; i++) {
140 for (int i = 0; i < 1024; i++) {
148 for (int i = 0; i < 1024; i++) {
  /build/tools/releasetools/
test_common.py 33 kilobytes = 1024
34 megabytes = 1024 * kilobytes
35 gigabytes = 1024 * megabytes
192 file_contents = os.urandom(1024)
196 file_contents = os.urandom(1024)
218 random_string = os.urandom(1024)
231 random_string = os.urandom(1024)
256 short_string = os.urandom(1024)
272 random_string = os.urandom(1024)
  /external/llvm/test/Transforms/LoopVectorize/X86/
vector_ptr_load_store.ll 50 ; for (int i = 0; i < 1024; ++i) {
73 %13 = icmp ne i32 %12, 1024
87 @ia = global [1024 x i32*] zeroinitializer, align 16
88 @ib = global [1024 x i32] zeroinitializer, align 16
89 @ic = global [1024 x i8] zeroinitializer, align 16
103 %4 = getelementptr inbounds [1024 x i32*], [1024 x i32*]* @ia, i32 0, i64 %2
110 %11 = icmp ne i64 %10, 1024
138 %12 = icmp ne i32 %11, 1024
  /external/llvm/test/Transforms/LoopVectorize/
interleaved-accesses.ll 8 ; int AB[1024];
9 ; int CD[1024];
11 ; for (int i = 0; i < 1024; i+=2) {
28 @AB = common global [1024 x i32] zeroinitializer, align 4
29 @CD = common global [1024 x i32] zeroinitializer, align 4
37 %arrayidx0 = getelementptr inbounds [1024 x i32], [1024 x i32]* @AB, i64 0, i64 %indvars.iv
40 %arrayidx1 = getelementptr inbounds [1024 x i32], [1024 x i32]* @AB, i64 0, i64 %tmp1
44 %arrayidx2 = getelementptr inbounds [1024 x i32], [1024 x i32]* @CD, i64 0, i64 %indvars.i
    [all...]
  /external/v8/test/unittests/base/
bits-unittest.cc 212 EXPECT_EQ(1, SignedMulHigh32(1024 * 1024 * 1024, 4));
213 EXPECT_EQ(2, SignedMulHigh32(8 * 1024, 1024 * 1024));
223 EXPECT_EQ(i + 1, SignedMulHighAndAdd32(1024 * 1024 * 1024, 4, i));
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
x86-64-avx512f.s 22 vaddpd 1024(%rdx){1to8}, %zmm29, %zmm30 # AVX512F
23 vaddpd -1024(%rdx){1to8}, %zmm29, %zmm30 # AVX512F Disp8
54 vaddsd 1024(%rdx), %xmm29, %xmm30{%k7} # AVX512F
55 vaddsd -1024(%rdx), %xmm29, %xmm30{%k7} # AVX512F Disp8
98 vblendmpd 1024(%rdx){1to8}, %zmm29, %zmm30 # AVX512F
99 vblendmpd -1024(%rdx){1to8}, %zmm29, %zmm30 # AVX512F Disp8
158 vbroadcastsd 1024(%rdx), %zmm30 # AVX512F
159 vbroadcastsd -1024(%rdx), %zmm30 # AVX512F Disp8
190 vcmppd $123, 1024(%rdx){1to8}, %zmm30, %k5 # AVX512F
191 vcmppd $123, -1024(%rdx){1to8}, %zmm30, %k5 # AVX512F Disp
    [all...]
  /bionic/benchmarks/
stdio_benchmark.cpp 23 #define KB 1024
24 #define MB 1024*KB
72 char buf[1024];
  /development/ndk/platforms/android-9/arch-mips/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)
  /device/generic/goldfish/
init.ranchu.rc 35 setprop ro.hwui.text_small_cache_width 1024
36 setprop ro.hwui.text_small_cache_height 1024
38 setprop ro.hwui.text_large_cache_height 1024
  /device/google/atv/
init.ranchu.rc 35 setprop ro.hwui.text_small_cache_width 1024
36 setprop ro.hwui.text_small_cache_height 1024
38 setprop ro.hwui.text_large_cache_height 1024
  /external/autotest/client/profilers/powertop/src/
cpufreq.c 69 char line[1024];
71 char gov[1024];
89 memset(line, 0, 1024);
usb.c 72 char line[1024];
87 memset(line, 0, 1024);
102 memset(line, 0, 1024);
xrandr.c 48 char line[1024];
53 memset(line, 0, 1024);
60 if (fgets(line, 1024, file)==NULL)
  /external/autotest/client/site_tests/platform_AesThroughput/
platform_AesThroughput.py 16 self.results = {'bytes_per_sec_ideal_min' : 20 * 1024 * 1024}
46 keys = ['16_bytes', '64_bytes', '256_bytes', '1024_bytes', '8192_bytes']

Completed in 636 milliseconds

<<31323334353637383940>>