Home
last modified time | relevance | path

Searched refs:boundary (Results 1 – 25 of 284) sorted by relevance

12345678910>>...12

/openbmc/qemu/tests/qemu-iotests/
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 D171.out19 write before image boundary
23 write across image boundary
26 write at image boundary
29 write after image boundary
35 read before image boundary
39 read across image boundary
42 read at image boundary
45 read after image boundary
118 write at image boundary
134 read at image boundary
[all …]
/openbmc/linux/include/media/
H A Dv4l2-rect.h59 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()
68 if (r->top + r->height > boundary->top + boundary->height) in v4l2_rect_map_inside()
69 r->top = boundary->top + boundary->height - r->height; in v4l2_rect_map_inside()
/openbmc/bmcweb/include/
H A Dmultipart_parser.hpp72 boundary = "\r\n--"; in parse()
73 boundary += ctBoundary; in parse()
75 lookbehind.resize(boundary.size() + 8); in parse()
92 if (index == boundary.size() - 2) in parse()
112 if (c != boundary[index + 2]) in parse()
225 std::string boundary; member in MultipartParser
231 for (const char current : boundary) in indexBoundary()
257 i += boundary.size(); in skipNonBoundary()
265 if (index < boundary.size()) in processPartData()
267 if (boundary[index] == c) in processPartData()
[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
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()
302 unsigned int next_boundary = pool->boundary, offset = 0; in pool_initialise_page()
309 next_boundary += pool->boundary; in pool_initialise_page()
/openbmc/linux/arch/powerpc/mm/nohash/
H A D8xx.c144 unsigned long boundary = strict_boundary ? sinittext : etext8; in mmu_mapin_ram() local
151 mmu_mapin_ram_chunk(0, boundary, PAGE_KERNEL_TEXT, true); in mmu_mapin_ram()
153 top = boundary; in mmu_mapin_ram()
155 mmu_mapin_ram_chunk(boundary, einittext8, PAGE_KERNEL_TEXT, true); in mmu_mapin_ram()
171 unsigned long boundary = strict_kernel_rwx_enabled() ? sinittext : etext8; in mmu_mark_initmem_nx() local
175 mmu_mapin_ram_chunk(boundary, einittext8, PAGE_KERNEL, false); in mmu_mark_initmem_nx()
H A De500.c169 unsigned long boundary; in map_mem_in_cams_addr() local
172 boundary = (unsigned long)(_sinittext - _stext); in map_mem_in_cams_addr()
174 boundary = ram; in map_mem_in_cams_addr()
177 for (i = 0; boundary && i < max_cam_idx; i++) { in map_mem_in_cams_addr()
181 cam_sz = calc_cam_sz(boundary, virt, phys); in map_mem_in_cams_addr()
185 boundary -= cam_sz; in map_mem_in_cams_addr()
/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
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()
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
441 boundary = recalculate_boundary(runtime); in snd_pcm_ioctl_sync_ptr_x32()
442 if (!boundary) in snd_pcm_ioctl_sync_ptr_x32()
443 boundary = 0x7fffffff; in snd_pcm_ioctl_sync_ptr_x32()
[all …]
/openbmc/openbmc/poky/meta/recipes-connectivity/ofono/ofono/
H A D0001-mbim-add-an-optional-TEMP_FAILURE_RETRY-macro-copy.patch20 #define align_len(len, boundary) (((len)+(boundary)-1) & ~((boundary)-1))
/openbmc/bmcweb/test/include/
H A Dmultipart_test.cpp54 EXPECT_EQ(parser.boundary, in TEST_F()
284 EXPECT_EQ(parser.boundary, in TEST_F()
326 EXPECT_EQ(parser.boundary, "\r\n----end"); in TEST_F()
371 EXPECT_EQ(parser.boundary, in TEST_F()
417 EXPECT_EQ(parser.boundary, "\r\n----XX"); in TEST_F()
443 EXPECT_EQ(parser.boundary, "\r\n----XX"); in TEST_F()
/openbmc/linux/drivers/mtd/tests/
H A Dpagetest.c31 static unsigned char *boundary; variable
99 memcpy(boundary, writebuf + mtd->erasesize - pgsize, pgsize); in verify_eraseblock()
100 prandom_bytes_state(&rnd_state, boundary + pgsize, pgsize); in verify_eraseblock()
101 if (memcmp(twopages, boundary, bufsize)) { in verify_eraseblock()
368 boundary = kmalloc(bufsize, GFP_KERNEL); in mtd_pagetest_init()
369 if (!boundary) in mtd_pagetest_init()
442 kfree(boundary); in mtd_pagetest_init()
/openbmc/u-boot/drivers/mtd/onenand/
H A Donenand_base.c238 boundary = this->boundary[die]; in flexonenand_block()
241 if (blk > boundary) 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()
858 int ret = 0, boundary = 0; in onenand_read_ops_nolock() local
917 boundary = 1; in onenand_read_ops_nolock()
919 boundary = 0; in onenand_read_ops_nolock()
955 if (unlikely(boundary)) in onenand_read_ops_nolock()
2350 this->boundary[die]; in flexonenand_get_size()
[all …]
/openbmc/obmc-console/test/
H A Dmeson.build6 'test-ringbuffer-boundary-poll',
7 'test-ringbuffer-boundary-read',
/openbmc/qemu/hw/net/
H A Dne2000.c153 int avail, index, boundary; in ne2000_buffer_full() local
160 boundary = s->boundary << 8; in ne2000_buffer_full()
161 if (index < boundary) in ne2000_buffer_full()
162 avail = boundary - index; in ne2000_buffer_full()
164 avail = (s->stop - s->start) - (index - boundary); in ne2000_buffer_full()
311 s->boundary = val; in ne2000_ioport_write()
380 ret = s->boundary; in ne2000_ioport_read()
614 VMSTATE_UINT8(boundary, NE2000State),
/openbmc/linux/include/sound/
H A Dpcm-indirect.h44 if (diff < -(snd_pcm_sframes_t) (runtime->boundary / 2)) in snd_pcm_indirect_playback_transfer()
45 diff += runtime->boundary; in snd_pcm_indirect_playback_transfer()
117 if (diff < -(snd_pcm_sframes_t) (runtime->boundary / 2)) in snd_pcm_indirect_capture_transfer()
118 diff += runtime->boundary; in snd_pcm_indirect_capture_transfer()
/openbmc/linux/Documentation/filesystems/ext4/
H A Dverity.rst14 - Zero-padding to the next 65536-byte boundary. This padding need not
23 - Zero-padding to the next filesystem block boundary.
30 block boundary.
/openbmc/linux/drivers/mtd/nand/onenand/
H A Donenand_base.c310 boundary = this->boundary[die]; in flexonenand_block()
313 if (blk > boundary) in flexonenand_block()
337 int die = 0, boundary; in flexonenand_addr() local
345 boundary = this->boundary[die]; in flexonenand_addr()
347 if (block > (boundary + 1)) in flexonenand_addr()
1226 int ret = 0, boundary = 0; in onenand_read_ops_nolock() local
1277 boundary = 1; in onenand_read_ops_nolock()
1279 boundary = 0; in onenand_read_ops_nolock()
1304 if (unlikely(boundary)) in onenand_read_ops_nolock()
3474 this->boundary[die]; in flexonenand_get_size()
[all …]
/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/arm/mach-omap1/
H A Dsram-init.c26 #define ROUND_DOWN(value, boundary) ((value) & (~((boundary) - 1))) argument
/openbmc/linux/drivers/acpi/acpica/
H A Dacmacros.h201 #define ACPI_ROUND_DOWN(value, boundary) (((acpi_size)(value)) & \ argument
202 (~(((acpi_size) boundary)-1)))
204 #define ACPI_ROUND_UP(value, boundary) ((((acpi_size)(value)) + \ argument
205 (((acpi_size) boundary)-1)) & \
206 (~(((acpi_size) boundary)-1)))
225 #define ACPI_ROUND_UP_TO(value, boundary) (((value) + ((boundary)-1)) / (boundary)) argument
/openbmc/linux/sound/isa/gus/
H A Dgus_mem.c133 unsigned int idx, boundary; in snd_gf1_mem_find() local
148 while (pblock->ptr >= (boundary = info[idx].address + info[idx].size)) in snd_gf1_mem_find()
150 while (pblock->ptr + pblock->size >= (boundary = info[idx].address + info[idx].size)) in snd_gf1_mem_find()
152 ptr2 = boundary; in snd_gf1_mem_find()
156 if (pblock->next->ptr < boundary) in snd_gf1_mem_find()
/openbmc/obmc-console/
H A D.gitignore60 test/test-ringbuffer-boundary-poll
61 test/test-ringbuffer-boundary-read
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/pidgin/pidgin-sipe/
H A D0001-Align-structs-casts-with-time_t-elements-to-8byte-bo.patch4 Subject: [PATCH] Align structs casts with time_t elements to 8byte boundary
8 element, that now increases the natural alignment boundary of structures
/openbmc/linux/fs/
H A Dmpage.c484 int boundary = 0; in __mpage_writepage() local
522 boundary = buffer_boundary(bh); in __mpage_writepage()
523 if (boundary) { in __mpage_writepage()
574 boundary = buffer_boundary(&map_bh); in __mpage_writepage()
634 if (boundary || (first_unmapped != blocks_per_page)) { in __mpage_writepage()

12345678910>>...12