Home
last modified time | relevance | path

Searched full:boundary (Results 1 – 25 of 1877) sorted by relevance

12345678910>>...76

/openbmc/qemu/tests/qemu-iotests/
H A D171.out19 write before image boundary
23 write across image boundary
26 write at image boundary
29 write after image boundary
32 writev before/after image boundary
35 read before image boundary
39 read across image boundary
42 read at image boundary
45 read after image boundary
48 readv before/after image boundary
[all …]
H A D004.out4 write before image boundary
8 write into image boundary
11 write at image boundary
14 write past image boundary
17 pwrite past image boundary
20 writev past image boundary
23 read before image boundary
27 read into image boundary
30 read at image boundary
33 read past image boundary
[all …]
H A D00451 echo "write before image boundary"
55 echo "write into image boundary"
59 echo "write at image boundary"
63 echo "write past image boundary"
67 echo "pwrite past image boundary"
71 echo "writev past image boundary"
75 echo "read before image boundary"
79 echo "read into image boundary"
83 echo "read at image boundary"
87 echo "read past image boundary"
[all …]
H A D17179 echo "write before image boundary"
83 echo "write across image boundary"
87 echo "write at image boundary"
91 echo "write after image boundary"
95 echo "writev before/after image boundary"
99 echo "read before image boundary"
103 echo "read across image boundary"
107 echo "read at image boundary"
111 echo "read after image boundary"
115 echo "readv before/after image boundary"
[all …]
/openbmc/bmcweb/include/
H A Dmultipart_parser.hpp48 enum class Boundary enum
70 const std::string boundaryFormat = "multipart/form-data; boundary="; in parse()
78 boundary = "\r\n--"; in parse()
79 boundary += ctBoundary; in parse()
81 lookbehind.resize(boundary.size() + 8); in parse()
98 if (index == boundary.size() - 2) in parse()
107 else if (index - 1 == boundary.size() - 2) in parse()
118 if (c != boundary[index + 2]) in parse()
206 skipNonBoundary(buffer, boundary.size() - 1, i); in parse()
231 std::string boundary; member in MultipartParser
[all …]
/openbmc/linux/include/linux/pds/
H A Dpds_adminq.h147 * @rsvd: word boundary padding
163 * @rsvd: Word boundary padding
166 * @rsvd1: Word boundary padding
181 * @rsvd: word boundary padding
196 * @rsvd: word boundary padding
249 * @rsvd: Word boundary padding
251 * @rsvd2: Word boundary padding
293 * @rsvd: Word boundary padding
314 * @rsvd: Word boundary padding
334 * @rsvd: Word boundary padding
[all …]
/openbmc/linux/include/media/
H A Dv4l2-rect.h54 * v4l2_rect_map_inside()- r should be inside boundary.
56 * @boundary: rect containing the boundary for @r
59 const struct v4l2_rect *boundary) in v4l2_rect_map_inside() argument
61 v4l2_rect_set_max_size(r, boundary); in v4l2_rect_map_inside()
62 if (r->left < boundary->left) in v4l2_rect_map_inside()
63 r->left = boundary->left; in v4l2_rect_map_inside()
64 if (r->top < boundary->top) in v4l2_rect_map_inside()
65 r->top = boundary->top; in v4l2_rect_map_inside()
66 if (r->left + r->width > boundary->left + boundary->width) in v4l2_rect_map_inside()
67 r->left = boundary->left + boundary->width - r->width; in v4l2_rect_map_inside()
[all …]
/openbmc/bmcweb/test/include/
H A Dmultipart_test.cpp44 "boundary=---------------------------d74496d66958873e"); in TEST_F()
49 EXPECT_EQ(parser.boundary, in TEST_F()
79 "boundary=---------------------------d74496d66958873e"); in TEST_F()
97 "boundary=---------------------------d74496d66958873e"); in TEST_F()
119 "boundary+=-----------------------------d74496d66958873e"); in TEST_F()
138 "boundary=---------------------------d74496d66958873e"); in TEST_F()
158 "boundary=---------------------------d74496d66958873e"); in TEST_F()
178 "boundary=---------------------------d7449sd6d66958873e"); in TEST_F()
197 "boundary=---------------------------d74496d66958873e"); in TEST_F()
216 "boundary=---------------------------d74496d66958873e"); in TEST_F()
[all …]
/openbmc/linux/mm/
H A Ddmapool_test.c19 size_t boundary; member
23 { .size = 16, .align = 16, .boundary = 0 },
24 { .size = 64, .align = 64, .boundary = 0 },
25 { .size = 256, .align = 256, .boundary = 0 },
26 { .size = 1024, .align = 1024, .boundary = 0 },
27 { .size = 4096, .align = 4096, .boundary = 0 },
28 { .size = 68, .align = 32, .boundary = 4096 },
74 parms->align, parms->boundary); in dmapool_test_block()
H A Ddmapool.c58 unsigned int boundary; member
207 * @boundary: returned blocks won't cross this power of two boundary
216 * If @boundary is nonzero, objects returned from dma_pool_alloc() won't
217 * cross that size boundary. This is useful for devices which have
225 size_t size, size_t align, size_t boundary) in dma_pool_create() argument
247 if (!boundary) in dma_pool_create()
248 boundary = allocation; in dma_pool_create()
249 else if ((boundary < size) || (boundary & (boundary - 1))) in dma_pool_create()
252 boundary = min(boundary, allocation); in dma_pool_create()
265 retval->boundary = boundary; in dma_pool_create()
[all …]
/openbmc/linux/sound/core/
H A Dpcm_compat.c80 u32 boundary; member
90 snd_pcm_uframes_t boundary; in snd_pcm_ioctl_sw_params_compat() local
107 * Check silent_size parameter. Since we have 64bit boundary, in snd_pcm_ioctl_sw_params_compat()
108 * silence_size must be compared with the 32bit boundary. in snd_pcm_ioctl_sw_params_compat()
110 boundary = recalculate_boundary(substream->runtime); in snd_pcm_ioctl_sw_params_compat()
111 if (boundary && params.silence_size >= boundary) in snd_pcm_ioctl_sw_params_compat()
112 params.silence_size = substream->runtime->boundary; in snd_pcm_ioctl_sw_params_compat()
116 if (boundary && put_user(boundary, &src->boundary)) in snd_pcm_ioctl_sw_params_compat()
275 runtime->boundary = new_boundary; in snd_pcm_ioctl_hw_params_compat()
424 snd_pcm_uframes_t boundary; in snd_pcm_ioctl_sync_ptr_x32() local
[all …]
/openbmc/linux/drivers/scsi/isci/
H A Dunsolicited_frame_control.c77 * - The address must align on a 64-byte boundary. Guaranteed to be in sci_unsolicited_frame_control_construct()
78 * on 64-byte boundary already 1KB boundary for unsolicited frames. in sci_unsolicited_frame_control_construct()
90 * - The address must align on a 64-bit boundary. Guaranteed to be on 64 in sci_unsolicited_frame_control_construct()
91 * byte boundary already due to above programming headers being on a in sci_unsolicited_frame_control_construct()
92 * 64-bit boundary and headers are on a 64-bytes in size. in sci_unsolicited_frame_control_construct()
103 * - Aligned on a 1KB boundary. */ in sci_unsolicited_frame_control_construct()
120 * pointers. Everything is aligned on 1k boundary with an in sci_unsolicited_frame_control_construct()
/openbmc/linux/arch/arm/boot/dts/nxp/imx/
H A Dimx6dl-nit6xlite.dts3 * Copyright 2015 Boundary Devices, Inc.
11 model = "Boundary Devices i.MX6 Solo Nitrogen6_Lite Board";
12 compatible = "boundary,imx6dl-nit6xlite", "fsl,imx6dl";
H A Dimx6q-nitrogen6_max.dts3 * Copyright 2015 Boundary Devices, Inc.
11 model = "Boundary Devices i.MX6 Quad Nitrogen6_MAX Board";
12 compatible = "boundary,imx6q-nitrogen6_max", "fsl,imx6q";
H A Dimx6q-nitrogen6_som2.dts3 * Copyright 2016 Boundary Devices, Inc.
11 model = "Boundary Devices i.MX6 Quad Nitrogen6_SOM2 Board";
12 compatible = "boundary,imx6q-nitrogen6_som2", "fsl,imx6q";
H A Dimx6qp-nitrogen6_som2.dts3 * Copyright 2017 Boundary Devices, Inc.
12 model = "Boundary Devices i.MX6 Quad Plus Nitrogen6_SOM2 Board";
13 compatible = "boundary,imx6qp-nitrogen6_som2", "fsl,imx6qp";
H A Dimx6dl-nitrogen6x.dts3 * Copyright 2013 Boundary Devices, Inc.
13 model = "Boundary Devices i.MX6 DualLite Nitrogen6x Board";
14 compatible = "boundary,imx6dl-nitrogen6x", "fsl,imx6dl";
H A Dimx6qp-nitrogen6_max.dts3 * Copyright 2016 Boundary Devices, Inc.
12 model = "Boundary Devices i.MX6 Quad Plus Nitrogen6_MAX Board";
13 compatible = "boundary,imx6qp-nitrogen6_max", "fsl,imx6qp";
H A Dimx6q-nitrogen6x.dts3 * Copyright 2013 Boundary Devices, Inc.
13 model = "Boundary Devices i.MX6 Quad Nitrogen6x Board";
14 compatible = "boundary,imx6q-nitrogen6x", "fsl,imx6q";
/openbmc/linux/Documentation/ABI/testing/
H A Ddebugfs-scmi-raw13 (receiving an EOF at each message boundary).
31 (receiving an EOF at each message boundary).
42 each message boundary).
53 each message boundary).
82 (receiving an EOF at each message boundary).
109 (receiving an EOF at each message boundary).
/openbmc/linux/arch/parisc/include/asm/
H A Dfixmap.h19 * cache aliasing boundary for machines that support equivalent aliasing.
22 * indicates that it has an alias boundary of 4 MB. It also supports
26 * This indicates the alias boundary is unknown and may be larger than
29 * Here we assume the maximum alias boundary is 4 MB.
/openbmc/linux/arch/powerpc/mm/nohash/
H A D8xx.c145 unsigned long boundary = strict_boundary ? sinittext : etext8; in mmu_mapin_ram() local
152 mmu_mapin_ram_chunk(0, boundary, PAGE_KERNEL_X, true); in mmu_mapin_ram()
154 top = boundary; in mmu_mapin_ram()
156 mmu_mapin_ram_chunk(boundary, einittext8, PAGE_KERNEL_X, true); in mmu_mapin_ram()
172 unsigned long boundary = strict_kernel_rwx_enabled() ? sinittext : etext8; in mmu_mark_initmem_nx() local
176 mmu_mapin_ram_chunk(boundary, einittext8, PAGE_KERNEL, false); in mmu_mark_initmem_nx()
/openbmc/u-boot/drivers/mtd/onenand/
H A Donenand_base.c231 unsigned int boundary, blk, die = 0; in flexonenand_block() local
238 boundary = this->boundary[die]; in flexonenand_block()
241 if (blk > boundary) in flexonenand_block()
242 blk = (blk + boundary + 1) >> 1; in flexonenand_block()
265 int die = 0, boundary; in flexonenand_addr() local
273 boundary = this->boundary[die]; in flexonenand_addr()
275 if (block > (boundary + 1)) in flexonenand_addr()
276 ofs += (loff_t) (block - boundary - 1) in flexonenand_addr()
858 int ret = 0, boundary = 0; in onenand_read_ops_nolock() local
910 * Chip boundary handling in DDP in onenand_read_ops_nolock()
[all …]
/openbmc/linux/arch/powerpc/boot/
H A Dpage.h20 /* align addr on a size boundary - adjust address up/down if needed */
24 /* align addr on a size boundary - adjust address up if needed */
27 /* to align the pointer to the (next) page boundary */
/openbmc/bios-bmc-smm-error-logger/test/
H A Dpci_handler_test.cpp45 // Smaller region size for easier boundary testing
90 // Read to buffer boundary from non 0 offset in TEST_F()
98 // Read over buffer boundary (which will read until the end) in TEST_F()
123 // Write to buffer boundary from non 0 offset in TEST_F()
134 // Read over buffer boundary (which will read until the end) in TEST_F()

12345678910>>...76