Home
last modified time | relevance | path

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

12345678910>>...96

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/relate/
H A Dlinear_linear.hpp56 if ( ! may_update<boundary, exterior, '0', TransposeResult>(m_result) ) in disjoint_linestring_pred()
92 // check if there is a boundary in operator ()()
99 update<boundary, exterior, '0', TransposeResult>(m_result); in operator ()()
167 || may_update<interior, boundary, '0'>(result) in apply()
169 || may_update<boundary, interior, '0'>(result) in apply()
170 || may_update<boundary, boundary, '0'>(result) in apply()
171 || may_update<boundary, exterior, '0'>(result) ) in apply()
187 || may_update<interior, boundary, '0', true>(result) in apply()
189 || may_update<boundary, interior, '0', true>(result) in apply()
190 || may_update<boundary, boundary, '0', true>(result) in apply()
[all …]
H A Dareal_areal.hpp64 && ! may_update<boundary, interior, '1', TransposeResult>(m_result) in no_turns_aa_pred()
71 && ! may_update<boundary, exterior, '1', TransposeResult>(m_result) ) in no_turns_aa_pred()
110 update<boundary, interior, '1', TransposeResult>(m_result); in operator ()()
143 update<boundary, exterior, '1', TransposeResult>(m_result); in operator ()()
153 update<boundary, exterior, '1', TransposeResult>(m_result); in operator ()()
181 update<boundary, interior, '1', TransposeResult>(m_result); in operator ()()
265 || may_update<boundary, interior, '1'>(result) in apply()
266 || may_update<boundary, exterior, '1'>(result) in apply()
274 || may_update<boundary, exterior, '1'>(result) in apply()
275 || may_update<boundary, interior, '1'>(result) in apply()
[all …]
H A Dlinear_areal.hpp80 if ( ! may_update<boundary, interior, '0', TransposeResult>(m_result) ) in no_turns_la_linestring_pred()
85 if ( ! may_update<boundary, exterior, '0', TransposeResult>(m_result) ) in no_turns_la_linestring_pred()
126 // check if there is a boundary in operator ()()
135 update<boundary, interior, '0', TransposeResult>(m_result); in operator ()()
140 update<boundary, exterior, '0', TransposeResult>(m_result); in operator ()()
165 && ! may_update<boundary, exterior, '1', TransposeResult>(m_result) ) in no_turns_la_areal_pred()
190 update<boundary, exterior, '1', TransposeResult>(m_result); in operator ()()
310 relate::set<exterior, boundary, '1', TransposeResult>(result); in apply()
313 else if ( may_update<exterior, boundary, '1', TransposeResult>(result) ) in apply()
340 // we can be sure that the exterior overlaps the boundary in apply()
[all …]
H A Dmulti_point_geometry.hpp177 || relate::may_update<interior, boundary, '0', Transpose>(result) in apply()
198 relate::set<interior, boundary, '0', Transpose>(result); in apply()
214 || relate::may_update<exterior, boundary, tc_t::boundary, Transpose>(result) ) in apply()
226 if ( relate::may_update<exterior, boundary, tc_t::boundary, Transpose>(result) in apply()
230 relate::set<exterior, boundary, tc_t::boundary, Transpose>(result); in apply()
315 relate::set<interior, boundary, '0', Transpose>(m_result); in apply()
327 || relate::may_update<interior, boundary, '0', Transpose>(m_result) ) ) in apply()
400 || relate::may_update<interior, boundary, '0', Transpose>(result) in apply()
424 else if (in_val == 0) // on boundary of single in apply()
427 relate::set<interior, boundary, '0', Transpose>(result); in apply()
[all …]
H A Dpoint_geometry.hpp51 relate::set<interior, boundary, '0', Transpose>(result); in apply()
65 || relate::may_update<exterior, boundary, tc_t::boundary, Transpose>(result) ) in apply()
67 // the point is on the boundary in apply()
70 // NOTE: even for MLs, if there is at least one boundary point, in apply()
73 relate::set<exterior, boundary, tc_t::boundary, Transpose>(result); in apply()
77 // check if there is a boundary in Geometry in apply()
82 relate::set<exterior, boundary, tc_t::boundary, Transpose>(result); in apply()
154 // else if ( geometry::covered_by(point, box) ) // point is on the boundary
160 // //else if ( box_has_equal_min_max<Box>::apply(box) ) // no boundary outside point
H A Dtopology_check.hpp39 // static const char boundary = 'F';
53 static const char boundary = '0'; member
118 static const char boundary = '0'; member
147 return count % 2 != 0; // odd count -> boundary in check_boundary_point()
265 // odd count -> boundary in for_each_boundary_point()
282 // odd count -> boundary in for_each_boundary_point()
304 static const char boundary = '1'; member
316 static const char boundary = '1'; member
328 static const char boundary = '1'; member
/OK3568_Linux_fs/kernel/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 …]
/OK3568_Linux_fs/kernel/kernel/
H A Dstackleak.c53 /* It would be nice not to have 'kstack_ptr' and 'boundary' on stack */ in stackleak_erase()
55 unsigned long boundary = (unsigned long)end_of_stack(current); in stackleak_erase() local
63 if (unlikely(kstack_ptr - boundary >= THREAD_SIZE)) in stackleak_erase()
64 kstack_ptr = boundary; in stackleak_erase()
67 while (kstack_ptr > boundary && poison_count <= depth) { in stackleak_erase()
80 if (kstack_ptr == boundary) in stackleak_erase()
89 * 'kstack_ptr' and move up till the new 'boundary'. We assume that in stackleak_erase()
93 boundary = current_stack_pointer; in stackleak_erase()
95 boundary = current_top_of_stack(); in stackleak_erase()
97 while (kstack_ptr < boundary) { in stackleak_erase()
[all …]
/OK3568_Linux_fs/kernel/drivers/gpio/
H A Dgpio-104-idi-48.c118 unsigned boundary; in idi_48_irq_mask() local
124 boundary = i / 8; in idi_48_irq_mask()
126 idi48gpio->irq_mask[boundary] &= ~mask; in idi_48_irq_mask()
128 if (!idi48gpio->irq_mask[boundary]) { in idi_48_irq_mask()
129 idi48gpio->cos_enb &= ~BIT(boundary); in idi_48_irq_mask()
150 unsigned boundary; in idi_48_irq_unmask() local
157 boundary = i / 8; in idi_48_irq_unmask()
158 prev_irq_mask = idi48gpio->irq_mask[boundary]; in idi_48_irq_unmask()
160 idi48gpio->irq_mask[boundary] |= mask; in idi_48_irq_unmask()
163 idi48gpio->cos_enb |= BIT(boundary); in idi_48_irq_unmask()
[all …]
/OK3568_Linux_fs/kernel/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()
270 runtime->boundary = new_boundary; in snd_pcm_ioctl_hw_params_compat()
418 snd_pcm_uframes_t boundary; in snd_pcm_ioctl_sync_ptr_x32() local
[all …]
/OK3568_Linux_fs/kernel/mm/
H A Ddmapool.c48 size_t boundary; member
113 * @boundary: returned blocks won't cross this power of two boundary
122 * If @boundary is nonzero, objects returned from dma_pool_alloc() won't
123 * cross that size boundary. This is useful for devices which have
131 size_t size, size_t align, size_t boundary) in dma_pool_create() argument
150 if (!boundary) in dma_pool_create()
151 boundary = allocation; in dma_pool_create()
152 else if ((boundary < size) || (boundary & (boundary - 1))) in dma_pool_create()
166 retval->boundary = boundary; in dma_pool_create()
206 unsigned int next_boundary = pool->boundary; in pool_initialise_page()
[all …]
/OK3568_Linux_fs/kernel/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()
/OK3568_Linux_fs/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 …]
/OK3568_Linux_fs/buildroot/board/boundarydevices/common/
H A Dreadme.txt1 Buildroot for Boundary Devices platforms:
47 See Boundary Devices's buildroot-external-boundary project
51 https://github.com/boundarydevices/buildroot-external-boundary
/OK3568_Linux_fs/kernel/arch/powerpc/mm/nohash/
H A D8xx.c153 unsigned long boundary = strict_boundary ? sinittext : etext8; in mmu_mapin_ram() local
163 mmu_mapin_ram_chunk(0, boundary, PAGE_KERNEL_TEXT, true); in mmu_mapin_ram()
165 top = boundary; in mmu_mapin_ram()
167 mmu_mapin_ram_chunk(boundary, einittext8, PAGE_KERNEL_TEXT, true); in mmu_mapin_ram()
183 unsigned long boundary = strict_kernel_rwx_enabled() ? sinittext : etext8; in mmu_mark_initmem_nx() local
186 mmu_mapin_ram_chunk(0, boundary, PAGE_KERNEL_TEXT, false); in mmu_mark_initmem_nx()
187 mmu_mapin_ram_chunk(boundary, einittext8, PAGE_KERNEL, false); in mmu_mark_initmem_nx()
/OK3568_Linux_fs/buildroot/configs/
H A Dnitrogen8mn_defconfig31 # Latest revision of branch boundary-imx_5.4.70_2.3.0
41 # Latest revision of branch boundary-imx_v2020.10
52 # Latest revision of branch boundary-imx_5.10.x_2.0.0
54 BR2_LINUX_KERNEL_DEFCONFIG="boundary"
H A Dnitrogen8m_defconfig31 # Latest revision of branch boundary-imx_5.4.70_2.3.0
41 # Latest revision of branch boundary-imx_v2020.10
52 # Latest revision of branch boundary-imx_5.10.x_2.0.0
54 BR2_LINUX_KERNEL_DEFCONFIG="boundary"
H A Dnitrogen8mp_defconfig31 # Latest revision of branch boundary-imx_5.4.70_2.3.0
41 # Latest revision of branch boundary-imx_v2020.10
52 # Latest revision of branch boundary-imx_5.10.x_2.0.0
54 BR2_LINUX_KERNEL_DEFCONFIG="boundary"
H A Dnitrogen8mm_defconfig31 # Latest revision of branch boundary-imx_5.4.70_2.3.0
41 # Latest revision of branch boundary-imx_v2020.10
52 # Latest revision of branch boundary-imx_5.10.x_2.0.0
54 BR2_LINUX_KERNEL_DEFCONFIG="boundary"
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
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";
/OK3568_Linux_fs/kernel/drivers/mtd/nand/onenand/
H A Donenand_base.c39 /* Default Flex-OneNAND boundary and lock respectively */
43 MODULE_PARM_DESC(flex_bdry, "SLC Boundary information for Flex-OneNAND"
45 "DIE_BDRY: SLC boundary of the die"
46 "LOCK: Locking information for SLC boundary"
47 " : 0->Set boundary in unlocked status"
48 " : 1->Set boundary in locked status");
303 unsigned boundary, blk, die = 0; in flexonenand_block() local
310 boundary = this->boundary[die]; in flexonenand_block()
313 if (blk > boundary) in flexonenand_block()
314 blk = (blk + boundary + 1) >> 1; in flexonenand_block()
[all …]

12345678910>>...96