Home
last modified time | relevance | path

Searched refs:Size (Results 1 – 25 of 208) sorted by relevance

123456789

/openbmc/qemu/tests/qtest/fuzz/
H A Di440fx_fuzz.c42 const unsigned char *Data, size_t Size) { in ioport_fuzz_qtest() argument
53 while (Size >= sizeof(a)) { in ioport_fuzz_qtest()
80 Size -= sizeof(a); in ioport_fuzz_qtest()
88 size_t Size) in i440fx_fuzz_qtest() argument
90 ioport_fuzz_qtest(s, Data, Size); in i440fx_fuzz_qtest()
95 const unsigned char *Data, size_t Size) { in pciconfig_fuzz_qos() argument
107 while (Size >= sizeof(a)) { in pciconfig_fuzz_qos()
129 Size -= sizeof(a); in pciconfig_fuzz_qos()
137 size_t Size) in i440fx_fuzz_qos() argument
145 pciconfig_fuzz_qos(s, bus, Data, Size); in i440fx_fuzz_qos()
H A Dvirtio_net_fuzz.c31 const unsigned char *Data, size_t Size, bool check_used) in virtio_net_fuzz_multi() argument
49 while (Size >= sizeof(vqa)) { in virtio_net_fuzz_multi()
52 Size -= sizeof(vqa); in virtio_net_fuzz_multi()
56 vqa.length = vqa.length >= Size ? Size : vqa.length; in virtio_net_fuzz_multi()
113 Size -= vqa.length; in virtio_net_fuzz_multi()
119 const unsigned char *Data, size_t Size) in virtio_net_fuzz_check_used() argument
121 virtio_net_fuzz_multi(s, Data, Size, true); in virtio_net_fuzz_check_used()
H A Dvirtio_scsi_fuzz.c65 const unsigned char *Data, size_t Size) in virtio_scsi_fuzz() argument
91 while (Size >= sizeof(vqa)) { in virtio_scsi_fuzz()
96 Size -= sizeof(vqa); in virtio_scsi_fuzz()
100 vqa.length = vqa.length >= Size ? Size : vqa.length; in virtio_scsi_fuzz()
124 Size -= vqa.length; in virtio_scsi_fuzz()
135 const unsigned char *Data, size_t Size) in virtio_scsi_with_flag_fuzz() argument
140 if (Size >= sizeof(uint64_t)) { in virtio_scsi_with_flag_fuzz()
143 Data + sizeof(uint64_t), Size - sizeof(uint64_t)); in virtio_scsi_with_flag_fuzz()
H A Dvirtio_blk_fuzz.c62 const unsigned char *Data, size_t Size) in virtio_blk_fuzz() argument
88 while (Size >= sizeof(vqa)) { in virtio_blk_fuzz()
93 Size -= sizeof(vqa); in virtio_blk_fuzz()
97 vqa.length = vqa.length >= Size ? Size : vqa.length; in virtio_blk_fuzz()
120 Size -= vqa.length; in virtio_blk_fuzz()
131 const unsigned char *Data, size_t Size) in virtio_blk_with_flag_fuzz() argument
136 if (Size >= sizeof(uint64_t)) { in virtio_blk_with_flag_fuzz()
139 Data + sizeof(uint64_t), Size - sizeof(uint64_t)); in virtio_blk_with_flag_fuzz()
/openbmc/libpldm/abi/x86_64/
H A Dgcc.dump10298 'Size' => '1',
10303 'Size' => '4',
10308 'Size' => '1',
10313 'Size' => '2',
10318 'Size' => '4',
10323 'Size' => '8',
10328 'Size' => '1',
10337 'Size' => '1',
10342 'Size' => '2',
10351 'Size' => '4',
[all …]
/openbmc/qemu/tests/qemu-iotests/
H A D084.out26 Test 2: Size too large (512 TB - 128 MB + 64 kB)
29 Test 3: Size valid (64M), but Blocks In Image too small (63)
32 Test 4: Size valid (64M), but Blocks In Image exceeds max allowed
35 Test 5: Valid Image: 64MB, Blocks In Image 64, Block Size 1MB
41 Test 6: Block Size != 1MB; too small test (1MB - 1)
44 Test 7: Block Size != 1MB; too large test (1MB + 64KB)
/openbmc/u-boot/board/alliedtelesis/SBx81LIFKW/
H A Dkwbimage.cfg23 # MClk 333MHz, Size 128MB, ECC disable
36 DATA 0xffd01504 0x07FFFFF1 # SDRAM CS[0] Size 128MiB
38 DATA 0xffd0150c 0x00FFFFF4 # SDRAM CS[1] Size, window disabled
39 DATA 0xffd01514 0x00FFFFF8 # SDRAM CS[2] Size, window disabled
40 DATA 0xffd0151c 0x00FFFFFC # SDRAM CS[3] Size, window disabled
/openbmc/u-boot/board/alliedtelesis/SBx81LIFXCAT/
H A Dkwbimage.cfg23 # MClk 333MHz, Size 128MB, ECC disable
38 DATA 0xffd01504 0x07FFFFF1 # SDRAM CS[0] Size 128MiB
40 DATA 0xffd0150c 0x00FFFFF4 # SDRAM CS[1] Size, window disabled
41 DATA 0xffd01514 0x00FFFFF8 # SDRAM CS[2] Size, window disabled
42 DATA 0xffd0151c 0x00FFFFFC # SDRAM CS[3] Size, window disabled
/openbmc/openbmc/poky/meta/recipes-extended/pbzip2/pbzip2/
H A D0001-pbzip2-Fix-invalid-suffix-on-literal-C-11-warning.patch33 - fprintf(stderr, " Output Size: %"PRIuMAX" bytes\n", (uintmax_t)CompressedSize);
34 + fprintf(stderr, " Output Size: %" PRIuMAX " bytes\n", (uintmax_t)CompressedSize);
42 - fprintf(stderr, " Output Size: %"PRIuMAX" bytes\n", (uintmax_t)CompressedSize);
43 + fprintf(stderr, " Output Size: %" PRIuMAX " bytes\n", (uintmax_t)CompressedSize);
58 fprintf(stderr, " BWT Block Size: %c00k\n", BWTblockSizeChar);
60 - fprintf(stderr, " Input Size: %"PRIuMAX" bytes\n", (uintmax_t)InFileSize);
61 + fprintf(stderr, " Input Size: %" PRIuMAX " bytes\n", (uintmax_t)InFileSize);
/openbmc/openbmc/poky/meta/recipes-devtools/clang/clang/
H A D0019-compiler-rt-Do-not-use-backtrace-APIs-on-non-glibc-l.patch30 size_t Backtrace(uintptr_t *TraceBuffer, size_t Size) {
34 return backtrace(reinterpret_cast<void **>(TraceBuffer), Size);
41 @@ -30,7 +35,11 @@ size_t Backtrace(uintptr_t *TraceBuffer, size_t Size) {
43 GWP_ASAN_ALWAYS_INLINE size_t SegvBacktrace(uintptr_t *TraceBuffer, size_t Size,
46 return Backtrace(TraceBuffer, Size);
/openbmc/phosphor-host-ipmid/include/ipmid/message/
H A Dtypes.hpp91 struct Size struct
97 constexpr auto getNrBits(const fixed_int_t<Bits>&) -> Size<Bits>;
99 constexpr auto getNrBits(const fixed_uint_t<Bits>&) -> Size<Bits>;
101 constexpr auto getNrBits(const std::bitset<Bits>&) -> Size<Bits>;
/openbmc/hiomapd/Documentation/
H A Dprotocol.md423 | Parameter | Unit | Size | M | I | D |
429 | Parameter | Unit | Size | M | I | D |
445 | Parameter | Unit | Size | M | I | D |
451 | Parameter | Unit | Size | M | I | D |
467 | Parameter | Unit | Size | M | I | D |
473 | Parameter | Unit | Size | M | I | D |
500 | Parameter | Unit | Size | M | I | D |
507 | Parameter | Unit | Size | M | I | D |
510 | Read Window Size | Blocks | 2 | 1 | 1 | q |
511 | Write Window Size | Blocks | 2 | 3 | 3 | q |
[all …]
/openbmc/u-boot/arch/arm/include/asm/arch-sa1100/
H A Dbitfield.h45 #define Fld(Size, Shft) (((Size) << 16) + (Shft)) argument
/openbmc/u-boot/arch/arm/include/asm/arch-pxa/
H A Dbitfield.h45 #define Fld(Size, Shft) (((Size) << 16) + (Shft)) argument
/openbmc/u-boot/board/Seagate/nas220/
H A Dkwbimage.cfg122 DATA 0xFFD01504 0x07FFFFF1 # CS[0]n Size
127 # bit31-24: 0x07, Size (i.e. 128MB)
131 DATA 0xFFD0150C 0x00000000 # CS[1]n Size, window disabled
133 DATA 0xFFD01514 0x00000000 # CS[2]n Size, window disabled
134 DATA 0xFFD0151C 0x00000000 # CS[3]n Size, window disabled
/openbmc/u-boot/board/Seagate/dockstar/
H A Dkwbimage.cfg123 DATA 0xFFD01504 0x07FFFFF1 # CS[0]n Size
128 # bit31-24: 0x07, Size (i.e. 128MB)
131 DATA 0xFFD0150C 0x00000000 # CS[1]n Size, window disabled
133 DATA 0xFFD01514 0x00000000 # CS[2]n Size, window disabled
134 DATA 0xFFD0151C 0x00000000 # CS[3]n Size, window disabled
/openbmc/u-boot/board/Synology/ds109/
H A Dkwbimage.cfg124 DATA 0xFFD01504 0x07FFFFF1 # CS[0]n Size
129 # bit31-24: 0x07, Size (i.e. 128MB)
132 DATA 0xFFD0150C 0x00000000 # CS[1]n Size, window disabled
135 DATA 0xFFD01514 0x00000000 # CS[2]n Size, window disabled
137 DATA 0xFFD0151C 0x00000000 # CS[3]n Size, window disabled
H A Dopenocd.cfg57 mww 0xD0001504 0x07FFFFF1 ;# CS0n Size Register
59 mww 0xD000150C 0x00000000 ;# CS1n Size Register
61 mww 0xD0001514 0x00000000 ;# CS2n Size Register
62 mww 0xD000151C 0x00000000 ;# CS3n Size Register
/openbmc/u-boot/board/Seagate/goflexhome/
H A Dkwbimage.cfg126 DATA 0xFFD01504 0x07FFFFF1 # CS[0]n Size
131 # bit31-24: 0x07, Size (i.e. 128MB)
134 DATA 0xFFD0150C 0x00000000 # CS[1]n Size, window disabled
136 DATA 0xFFD01514 0x00000000 # CS[2]n Size, window disabled
137 DATA 0xFFD0151C 0x00000000 # CS[3]n Size, window disabled
/openbmc/u-boot/board/Marvell/dreamplug/
H A Dkwbimage.cfg121 DATA 0xFFD01504 0x0FFFFFF1 # CS[0]n Size
126 # bit31-24: 0x0F, Size (i.e. 256MB)
129 DATA 0xFFD0150C 0x0FFFFFF5 # CS[1]n Size 256Mb Window enabled for CS1
131 DATA 0xFFD01514 0x00000000 # CS[2]n Size, window disabled
132 DATA 0xFFD0151C 0x00000000 # CS[3]n Size, window disabled
/openbmc/u-boot/board/Marvell/sheevaplug/
H A Dkwbimage.cfg120 DATA 0xFFD01504 0x0FFFFFF1 # CS[0]n Size
125 # bit31-24: 0x0F, Size (i.e. 256MB)
128 DATA 0xFFD0150C 0x0FFFFFF5 # CS[1]n Size 256Mb Window enabled for CS1
130 DATA 0xFFD01514 0x00000000 # CS[2]n Size, window disabled
131 DATA 0xFFD0151C 0x00000000 # CS[3]n Size, window disabled
/openbmc/u-boot/board/Marvell/guruplug/
H A Dkwbimage.cfg120 DATA 0xFFD01504 0x0FFFFFF1 # CS[0]n Size
125 # bit31-24: 0x0F, Size (i.e. 256MB)
128 DATA 0xFFD0150C 0x0FFFFFF5 # CS[1]n Size 256Mb Window enabled for CS1
130 DATA 0xFFD01514 0x00000000 # CS[2]n Size, window disabled
131 DATA 0xFFD0151C 0x00000000 # CS[3]n Size, window disabled
/openbmc/openbmc/meta-phosphor/dynamic-layers/aspeed-layer/recipes-bsp/u-boot/files/
H A D0001-configs-ast-Add-redundnant-env.patch26 -#define CONFIG_ENV_SIZE 0x20000 /* Total Size of Environment Sector */
28 +#define CONFIG_ENV_SIZE 0x10000 /* Total Size of Environment Sector */
/openbmc/openbmc/meta-openembedded/meta-python/recipes-extended/python-blivet/python3-blivet/
H A D0006-tweak-btrfs-packages.patch40 _min_size = Size("256 MiB")
41 _max_size = Size("16 EiB")
/openbmc/u-boot/board/LaCie/netspace_v2/
H A Dkwbimage.cfg120 DATA 0xFFD01504 0x0FFFFFF1 # CS[0]n Size
125 # bit31-24: 0x07, Size (i.e. 128MB)
127 DATA 0xFFD0150C 0x00000000 # CS[1]n Size, window disabled
128 DATA 0xFFD01514 0x00000000 # CS[2]n Size, window disabled
129 DATA 0xFFD0151C 0x00000000 # CS[3]n Size, window disabled

123456789