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

1 2

  /external/compiler-rt/test/asan/TestCases/Linux/
odr-violation.cc 37 #ifndef SZ
38 # define SZ 4
42 namespace foo { char G[SZ]; }
  /external/valgrind/none/tests/mips32/
bug320057-mips32.c 13 #define SZ 48216 + 1024
24 ftruncate(fd, SZ);
25 DO(ftruncate(fd, SZ));
27 ptr = mmap(0, SZ, (PROT_READ | PROT_WRITE), MAP_SHARED, fd, 0);
30 munmap(ptr, SZ);
bug320057-mips32.stdout.exp 2 ftruncate(fd, SZ); status: Success
  /external/boringssl/src/crypto/fipsmodule/sha/asm/
sha512-x86_64.pl 134 $SZ=8;
146 $SZ=4;
161 $_ctx="16*$SZ+0*8(%rsp)";
162 $_inp="16*$SZ+1*8(%rsp)";
163 $_end="16*$SZ+2*8(%rsp)";
164 $_rsp="16*$SZ+3*8(%rsp)";
165 $framesz="16*$SZ+4*8";
170 my $STRIDE=$SZ;
171 $STRIDE += 16 if ($i%(16/$SZ)==(16/$SZ-1))
    [all...]
sha512-armv8.pl 58 $SZ=8;
67 $SZ=4;
96 ldp @X[$i+1],@X[$i+2],[$inp],#2*$SZ
102 ldr @X[($i-11)&15],[sp,#`$SZ*(($i-11)%4)`]
108 str @X[($i-8)&15],[sp,#`$SZ*(($i-8)%4)`]
136 ldr $t3,[$Ktbl],#$SZ // *K++, $t2 in next round
165 ldr $t3,[$Ktbl],#$SZ // *K++, $t2 in next round
186 $code.=<<___ if ($SZ==4);
209 sub sp,sp,#4*$SZ
212 ldp $C,$D,[$ctx,#2*$SZ]
    [all...]
  /external/jemalloc/test/unit/
quarantine.c 24 #define SZ ZU(256)
25 #define NQUARANTINED (QUARANTINE_SIZE/SZ)
31 assert_zu_eq(nallocx(SZ, 0), SZ,
32 "SZ=%zu does not precisely equal a size class", SZ);
44 void *p = mallocx(SZ, 0);
55 #undef SZ
pack.c 15 #define SZ (ZU(1) << (LG_PAGE - 2))
17 #define SZ 4096
30 size_t sz; local
33 sz = sizeof(nbins);
34 assert_d_eq(mallctl("arenas.nbins", (void *)&nbins, &sz, NULL, 0), 0,
46 sz = sizeof(size);
47 assert_d_eq(mallctlbymib(mib, miblen, (void *)&size, &sz, NULL,
49 if (size == SZ)
61 size_t sz; local
69 sz = sizeof(nregs)
78 size_t sz; local
111 size_t sz; local
    [all...]
  /external/mesa3d/src/mesa/math/
m_trans_tmp.h 44 if (SZ >= 1) t[i][0] = TRX_4F(f, 0);
45 if (SZ >= 2) t[i][1] = TRX_4F(f, 1);
46 if (SZ >= 3) t[i][2] = TRX_4F(f, 2);
47 if (SZ == 4) t[i][3] = TRX_4F(f, 3); else t[i][3] = 1.0;
68 if (SZ >= 1) t[i][0] = TRX_4FN(f, 0);
69 if (SZ >= 2) t[i][1] = TRX_4FN(f, 1);
70 if (SZ >= 3) t[i][2] = TRX_4FN(f, 2);
71 if (SZ == 4) t[i][3] = TRX_4FN(f, 3); else t[i][3] = 1.0;
128 if (SZ >= 1) TRX_UB(t[i][0], f, 0);
129 if (SZ >= 2) TRX_UB(t[i][1], f, 1)
    [all...]
m_translate.c 128 #define SZ 4
136 #define SZ 3
145 #define SZ 2
151 #define SZ 1
183 #define SZ 4
191 #define SZ 3
201 #define SZ 1
229 #define SZ 4
237 #define SZ 3
246 #define SZ
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_queryobj.h 42 static inline void radeon_init_query_stateobj(radeonContextPtr radeon, int SZ)
44 radeon->query.queryobj.cmd_size = (SZ);
45 radeon->query.queryobj.cmd = calloc(SZ, sizeof(uint32_t));
52 radeon->hw.max_state_size += (SZ);
radeon_state_init.c 519 #define ALLOC_STATE_IDX( ATOM, CHK, SZ, NM, FLAG, IDX ) \
521 rmesa->hw.ATOM.cmd_size = SZ; \
522 rmesa->hw.ATOM.cmd = (GLuint *) calloc(SZ, sizeof(int)); \
523 rmesa->hw.ATOM.lastcmd = (GLuint *) calloc(SZ, sizeof(int)); \
529 rmesa->radeon.hw.max_state_size += SZ * sizeof(int); \
532 #define ALLOC_STATE( ATOM, CHK, SZ, NM, FLAG ) \
533 ALLOC_STATE_IDX(ATOM, CHK, SZ, NM, FLAG, 0)
    [all...]
  /prebuilts/go/darwin-x86/src/go/printer/testdata/
comments.x 5 // The SZ struct; it is empty.
6 type SZ struct{}
28 type SZ interface{}
  /prebuilts/go/linux-x86/src/go/printer/testdata/
comments.x 5 // The SZ struct; it is empty.
6 type SZ struct{}
28 type SZ interface{}
  /external/tpm2/
MemoryLib.c 205 #define SZ sizeof(s_actionInputBuffer[0])
206 for(size = (size + SZ - 1) / SZ; size > 0; size--)
208 #undef SZ
  /external/e2fsprogs/misc/
e2fuzz.sh 8 SZ=32m
35 echo "-s: Create FS images of this size. (${SZ})"
57 SZ="${OPTARG}"
127 truncate -s "${SZ}" "${BASE_IMG}"
  /external/mesa3d/src/mesa/tnl/
t_vb_vertex.c 61 #define USER_CLIPTEST(NAME, SZ) \
82 if (SZ > 2) dp += coord[2] * c; \
83 if (SZ > 3) dp += coord[3] * d; else dp += d; \
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_context.h 290 #define SZ_TO_HW(sz) ((sz-2)&0x3)
291 #define EMIT_SZ(sz) (EMIT_1F + (sz) - 1)
292 #define EMIT_ATTR( ATTR, STYLE, S4, SZ ) \
298 offset += (SZ); \
328 extern void i915_disassemble_program(const GLuint * program, GLuint sz);
  /external/mesa3d/src/mesa/main/
macros.h 280 /** Copy \p SZ elements into a 4-element vector */
281 #define COPY_SZ_4V(DST, SZ, SRC) \
283 switch (SZ) { \
291 /** Copy \p SZ elements into a homegeneous (4-element) vector, giving
293 #define COPY_CLEAN_4V(DST, SZ, SRC) \
296 COPY_SZ_4V( DST, SZ, SRC ); \
604 /** Copy \p sz elements into a homegeneous (4-element) vector, giving
609 COPY_CLEAN_4V_TYPE_AS_UNION(fi_type dst[4], int sz, const fi_type src[4],
630 COPY_SZ_4V(dst, sz, src);
  /prebuilts/go/darwin-x86/src/internal/syscall/windows/registry/
value.go 20 SZ = 1
96 // If value is not SZ or EXPAND_SZ, it will return the correct value
104 case SZ, EXPAND_SZ:
304 // under key k to value and SZ. The value must not contain a zero byte.
306 return k.setStringValue(name, SZ, value)
registry_test.go 126 {Type: registry.SZ, Name: "String1", Value: ""},
127 {Type: registry.SZ, Name: "String2", Value: "\000", WillFail: true},
128 {Type: registry.SZ, Name: "String3", Value: "Hello World"},
129 {Type: registry.SZ, Name: "String4", Value: "Hello World\000", WillFail: true},
165 case registry.SZ:
382 case registry.SZ, registry.EXPAND_SZ:
537 case registry.SZ:
  /prebuilts/go/linux-x86/src/internal/syscall/windows/registry/
value.go 20 SZ = 1
96 // If value is not SZ or EXPAND_SZ, it will return the correct value
104 case SZ, EXPAND_SZ:
304 // under key k to value and SZ. The value must not contain a zero byte.
306 return k.setStringValue(name, SZ, value)
registry_test.go 126 {Type: registry.SZ, Name: "String1", Value: ""},
127 {Type: registry.SZ, Name: "String2", Value: "\000", WillFail: true},
128 {Type: registry.SZ, Name: "String3", Value: "Hello World"},
129 {Type: registry.SZ, Name: "String4", Value: "Hello World\000", WillFail: true},
165 case registry.SZ:
382 case registry.SZ, registry.EXPAND_SZ:
537 case registry.SZ:
  /toolchain/binutils/binutils-2.25/include/coff/
ti.h 317 #define PUT_SCNHDR_SIZE(ABFD, SZ, SZP) \
318 H_PUT_32 (ABFD, (SZ) / bfd_octets_per_byte (ABFD), SZP)
  /toolchain/binutils/binutils-2.25/gas/config/
tc-mcore.c     [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_state_init.c 629 #define ALLOC_STATE( ATOM, CHK, SZ, NM, IDX ) \
631 rmesa->hw.ATOM.cmd_size = SZ; \
632 rmesa->hw.ATOM.cmd = (GLuint *) calloc(SZ, sizeof(int)); \
633 rmesa->hw.ATOM.lastcmd = (GLuint *) calloc(SZ, sizeof(int)); \
638 rmesa->radeon.hw.max_state_size += SZ * sizeof(int); \
    [all...]

Completed in 524 milliseconds

1 2