Searched refs:bounds (Results 1 - 200 of 326) sorted by relevance

12

/linux-4.1.27/lib/
H A Dtest_kasan.c25 pr_info("out-of-bounds to right\n"); kmalloc_oob_right()
41 pr_info("out-of-bounds to left\n"); kmalloc_oob_left()
57 pr_info("kmalloc_node(): out-of-bounds to right\n"); kmalloc_node_oob_right()
73 pr_info("kmalloc large allocation: out-of-bounds to right\n"); kmalloc_large_oob_rigth()
90 pr_info("out-of-bounds after krealloc more\n"); kmalloc_oob_krealloc_more()
109 pr_info("out-of-bounds after krealloc less\n"); kmalloc_oob_krealloc_less()
127 pr_info("kmalloc out-of-bounds for 16-bytes access\n"); kmalloc_oob_16()
146 pr_info("out-of-bounds in memset\n"); kmalloc_oob_in_memset()
223 pr_info("out-of-bounds in kmem_cache_alloc\n"); kmem_cache_oob()
243 pr_info("out-of-bounds global variable\n"); kasan_global_oob()
253 pr_info("out-of-bounds on stack\n"); kasan_stack_oob()
H A Ddynamic_queue_limits.c99 /* Enforce bounds on limit */ dql_completed()
/linux-4.1.27/arch/x86/mm/
H A Dmpx.c23 * bounds tables (the bounds directory is user-allocated).
33 /* Only bounds table and bounds directory can be allocated here */ mpx_mmap()
245 * If a bounds overflow occurs then a #BR is generated. This
297 * upper bounds are architecturally represented in 1's mpx_generate_siginfo()
340 * The bounds directory pointer is stored in a register task_get_bounds_dir()
357 * flags, and return the address of the bounds table. task_get_bounds_dir()
371 * the bounds directory. Then, it will save the base of the bounds mpx_enable_management()
375 * fpu_xsave() is expected to be very expensive. Storing the bounds mpx_enable_management()
404 * bounds table is 16KB. With 64-bit mode, MPX_BT_SIZE_BYTES is 2GB,
405 * and the size of each bounds table is 4MB.
416 * bounds table: allocate_bt()
427 * Go poke the address of the new bounds table in to the allocate_bt()
428 * bounds directory entry out in userspace memory. Note: allocate_bt()
460 * some invalid data in to a bounds table. allocate_bt()
473 * When a BNDSTX instruction attempts to save bounds to a bounds
475 * first-level bounds directory. If it does not find a table in
514 * Userspace never asked us to manage the bounds tables, mpx_handle_bd_fault()
558 * Get the base of bounds tables pointed by specific bounds
592 * When the kernel is managing bounds tables, a bounds directory get_bt_addr()
602 * just means there was no bounds table for this memory. Make get_bt_addr()
613 * Free the backing physical pages of bounds table 'bt_addr'.
614 * Assume start...end is within that bounds table.
625 * will be a hole in the bounds table. This -EINVAL return will zap_bt_entries()
635 * range of this bounds table, find all of the VM_MPX VMAs, and zap_bt_entries()
641 * We followed a bounds directory entry down zap_bt_entries()
690 * There was no bounds table pointed to by the unmap_single_bt()
697 * Something messed with the bounds directory unmap_single_bt()
699 * here, so it could not be a _new_ bounds table unmap_single_bt()
709 * from one bounds table through VM_MPX flag. unmap_single_bt()
715 * If the bounds table pointed by bounds directory 'bd_entry' is
716 * not shared, unmap this whole bounds table. Otherwise, only free
717 * those backing physical pages of bounds table entries covered
729 * We could see an "error" ret for not-present bounds unmap_shared_bt()
754 * A virtual address region being munmap()ed might share bounds table
756 * memory of these shared bounds tables entries covered in this virtual
789 * covered by one bounds table. unmap_edge_bts()
792 * VMAs, only part of the backing physical memory of the bounds unmap_edge_bts()
793 * table need be freeed. Otherwise the whole bounds table need unmap_edge_bts()
802 * If more than one bounds tables are covered in this virtual unmap_edge_bts()
824 * "Edge" bounds tables are those which are being used by the region mpx_unmap_tables()
844 * Only unmap the bounds table that are mpx_unmap_tables()
879 * Free unused bounds tables covered in a virtual address region being
893 * the kernel to help manage the bounds tables, mpx_notify_unmap()
903 * recursion represents having bounds tables for bounds tables, mpx_notify_unmap()
H A Dphysaddr.c37 /* only check upper bounds since lower bounds will trigger carry */ __phys_addr_symbol()
/linux-4.1.27/arch/x86/include/asm/
H A Dmpx.h9 * NULL is theoretically a valid place to put the bounds
19 * index into bounds directory (BD).
24 * bounds table (BT).
72 * NULL is theoretically a valid place to put the bounds mpx_mm_init()
H A Dpgtable_32_types.h23 * any out-of-bounds memory accesses will hopefully be caught.
H A Dtraps.h20 asmlinkage void bounds(void);
45 #define trace_bounds bounds
H A Dmmu_context.h243 * MPX itself (reading bounds tables) is expected to arch_unmap()
/linux-4.1.27/kernel/
H A Dbounds.c17 /* The enum constants to put into include/generated/bounds.h */ foo()
/linux-4.1.27/drivers/media/platform/soc_camera/
H A Dsoc_camera_platform.c95 a->bounds.left = 0; soc_camera_platform_cropcap()
96 a->bounds.top = 0; soc_camera_platform_cropcap()
97 a->bounds.width = p->format.width; soc_camera_platform_cropcap()
98 a->bounds.height = p->format.height; soc_camera_platform_cropcap()
99 a->defrect = a->bounds; soc_camera_platform_cropcap()
H A Dsoc_scale_crop.c113 * be within camera cropcap bounds soc_camera_client_s_crop()
134 /* Put user requested rectangle within sensor bounds */ soc_camera_client_s_crop()
135 soc_camera_limit_side(&rect->left, &rect->width, cap.bounds.left, 2, soc_camera_client_s_crop()
136 cap.bounds.width); soc_camera_client_s_crop()
137 soc_camera_limit_side(&rect->top, &rect->height, cap.bounds.top, 4, soc_camera_client_s_crop()
138 cap.bounds.height); soc_camera_client_s_crop()
149 * is still within its bounds soc_camera_client_s_crop()
153 (cap.bounds.width > width || cap.bounds.height > height)) { soc_camera_client_s_crop()
168 * Instead we just drop to the left and top bounds. soc_camera_client_s_crop()
171 cam_rect->left = cap.bounds.left; soc_camera_client_s_crop()
178 cam_rect->top = cap.bounds.top; soc_camera_client_s_crop()
197 *cam_rect = cap.bounds; soc_camera_client_s_crop()
251 if (max_width > cap.bounds.width) client_s_fmt()
252 max_width = cap.bounds.width; client_s_fmt()
253 if (max_height > cap.bounds.height) client_s_fmt()
254 max_height = cap.bounds.height; client_s_fmt()
/linux-4.1.27/drivers/infiniband/ulp/isert/
H A Disert_proto.h20 /* Maximal bounds on received asynchronous PDUs */
/linux-4.1.27/drivers/hid/
H A Dhid-xinmo.c5 * -1). It is needed because hid-input discards out of bounds values.
26 * Fix negative events that are out of bounds.
H A Dhid-picolcd_debugfs.c178 /* record a flash address to buf (bounds check to be done by caller) */ _picolcd_flash_setaddr()
188 /* read a given size of data (bounds check to be done by caller) */ _picolcd_flash_read()
270 /* write a given size of data (bounds check to be done by caller) */ _picolcd_flash_write()
H A Dhid-multitouch.c319 /* Ignore if value index is out of bounds. */ mt_feature_mapping()
501 /* Ignore if indexes are out of bounds. */ mt_touch_input_mapping()
/linux-4.1.27/include/uapi/linux/
H A Dprctl.h134 __u64 start_code; /* code section bounds */
136 __u64 start_data; /* data section bounds */
141 __u64 arg_start; /* command line arguments bounds */
143 __u64 env_start; /* environment variables bounds */
183 * Tell the kernel to start/stop helping userspace manage bounds tables.
H A Dv4l2-common.h44 /* Cropping bounds */
52 /* Composing bounds */
H A Ddm-ioctl.h41 * since it will be out-of-bounds.
/linux-4.1.27/drivers/media/i2c/
H A Dak881x.c136 a->bounds.left = 0; ak881x_cropcap()
137 a->bounds.top = 0; ak881x_cropcap()
138 a->bounds.width = 720; ak881x_cropcap()
139 a->bounds.height = ak881x->lines; ak881x_cropcap()
140 a->defrect = a->bounds; ak881x_cropcap()
H A Dtvp5150.c923 a->bounds.left = 0; tvp5150_cropcap()
924 a->bounds.top = 0; tvp5150_cropcap()
925 a->bounds.width = TVP5150_H_MAX; tvp5150_cropcap()
934 a->bounds.height = TVP5150_V_MAX_525_60; tvp5150_cropcap()
936 a->bounds.height = TVP5150_V_MAX_OTHERS; tvp5150_cropcap()
938 a->defrect = a->bounds; tvp5150_cropcap()
H A Dsmiapp-pll.c56 dev_dbg(dev, "%s out of bounds: %d (%d--%d)\n", str, val, min, max); bounds_check()
/linux-4.1.27/drivers/md/persistent-data/
H A Ddm-bitset.h21 * and access an out of bounds word. However, an out of bounds bit in the
122 * -ENODATA will be returned if the index is out of bounds.
135 * -ENODATA will be returned if the index is out of bounds.
149 * -ENODATA will be returned if the index is out of bounds.
H A Ddm-array.h22 * The arrays implicitly know their length, and bounds are checked for
128 * -ENODATA will be returned if the index is out of bounds.
146 * -ENODATA will be returned if the index is out of bounds.
H A Ddm-btree.c642 /* change the bounds on the lowest key */ btree_insert_raw()
/linux-4.1.27/drivers/net/wireless/ti/wl12xx/
H A Dcmd.c76 wl1271_warning("FEM index from INI out of bounds"); wl1271_cmd_general_parms()
108 wl1271_warning("FEM index from FW out of bounds"); wl1271_cmd_general_parms()
143 wl1271_warning("FEM index from ini out of bounds"); wl128x_cmd_general_parms()
176 wl1271_warning("FEM index from FW out of bounds"); wl128x_cmd_general_parms()
/linux-4.1.27/arch/sh/kernel/vsyscall/
H A Dvsyscall.c37 * These symbols are defined by vsyscall.o to mark the bounds
/linux-4.1.27/arch/powerpc/boot/
H A Dmpc8xx.c40 printf("Warning: PLPRCR[MFI] value of %d out-of-bounds\r\n", mpc885_get_clock()
/linux-4.1.27/include/linux/
H A Dlockref.h18 #include <generated/bounds.h>
H A Dpage-flags-layout.h5 #include <generated/bounds.h>
H A Dblk_types.h116 #define BIO_EOF 2 /* out-out-bounds error */
H A Dpage-flags.h13 #include <generated/bounds.h>
H A Dmm_types.h457 /* address of the bounds directory */
/linux-4.1.27/drivers/media/pci/bt8xx/
H A Dbttv-vbi.c189 bounds.top is the corresponding first field line number vbi_buffer_prepare()
192 if (fh->vbi_fmt.end >= tvnorm->cropcap.bounds.top) vbi_buffer_prepare()
193 min_vdelay += fh->vbi_fmt.end - tvnorm->cropcap.bounds.top; vbi_buffer_prepare()
259 max_end = (tvnorm->cropcap.bounds.top try_fmt()
260 + tvnorm->cropcap.bounds.height) >> 1; try_fmt()
395 max_end = (tvnorm->cropcap.bounds.top bttv_g_fmt_vbi_cap()
396 + tvnorm->cropcap.bounds.height) >> 1; bttv_g_fmt_vbi_cap()
H A Dbttv-driver.c265 extraheight Added to sheight for cropcap.bounds.height only
270 .cropcap.bounds.left = minhdelayx1, \
273 .cropcap.bounds.top = (videostart0) * 2 - (vdelay) + MIN_VDELAY, \
275 .cropcap.bounds.width = (totalwidth) - (minhdelayx1) - 4, \
276 .cropcap.bounds.height = (sheight) + (extraheight) + (vdelay) - \
307 The last line is determined by cropcap.bounds. */
758 btv->crop_start = tvnorm->cropcap.bounds.top disclaim_video_lines()
759 + tvnorm->cropcap.bounds.height; disclaim_video_lines()
1163 btv->crop_start = tvnorm->cropcap.bounds.top set_tvnorm()
1164 + tvnorm->cropcap.bounds.height; set_tvnorm()
2013 b = &bttv_tvnorms[btv->tvnorm].cropcap.bounds; limit_scaled_size_lock()
2027 by the V4L2 spec, hence cropcap.bounds are our limit. */ limit_scaled_size_lock()
2867 b = &bttv_tvnorms[btv->tvnorm].cropcap.bounds; bttv_s_crop()
H A Dbttvp.h104 is determined by cropcap.bounds. */
/linux-4.1.27/drivers/media/i2c/soc_camera/
H A Dimx074.c226 a->bounds.left = 0; imx074_cropcap()
227 a->bounds.top = 0; imx074_cropcap()
228 a->bounds.width = IMX074_WIDTH; imx074_cropcap()
229 a->bounds.height = IMX074_HEIGHT; imx074_cropcap()
230 a->defrect = a->bounds; imx074_cropcap()
H A Dov9640.c566 a->bounds.left = 0; ov9640_cropcap()
567 a->bounds.top = 0; ov9640_cropcap()
568 a->bounds.width = W_SXGA; ov9640_cropcap()
569 a->bounds.height = H_SXGA; ov9640_cropcap()
570 a->defrect = a->bounds; ov9640_cropcap()
H A Dtw9910.c677 a->bounds.left = 0; tw9910_cropcap()
678 a->bounds.top = 0; tw9910_cropcap()
680 a->bounds.width = 640; tw9910_cropcap()
681 a->bounds.height = 480; tw9910_cropcap()
683 a->bounds.width = 768; tw9910_cropcap()
684 a->bounds.height = 576; tw9910_cropcap()
686 a->defrect = a->bounds; tw9910_cropcap()
H A Dmt9m001.c241 a->bounds.left = MT9M001_COLUMN_SKIP; mt9m001_cropcap()
242 a->bounds.top = MT9M001_ROW_SKIP; mt9m001_cropcap()
243 a->bounds.width = MT9M001_MAX_WIDTH; mt9m001_cropcap()
244 a->bounds.height = MT9M001_MAX_HEIGHT; mt9m001_cropcap()
245 a->defrect = a->bounds; mt9m001_cropcap()
H A Dmt9t031.c328 a->bounds.left = MT9T031_COLUMN_SKIP; mt9t031_cropcap()
329 a->bounds.top = MT9T031_ROW_SKIP; mt9t031_cropcap()
330 a->bounds.width = MT9T031_MAX_WIDTH; mt9t031_cropcap()
331 a->bounds.height = MT9T031_MAX_HEIGHT; mt9t031_cropcap()
332 a->defrect = a->bounds; mt9t031_cropcap()
H A Dov5642.c896 a->bounds.left = 0; ov5642_cropcap()
897 a->bounds.top = 0; ov5642_cropcap()
898 a->bounds.width = OV5642_MAX_WIDTH; ov5642_cropcap()
899 a->bounds.height = OV5642_MAX_HEIGHT; ov5642_cropcap()
900 a->defrect = a->bounds; ov5642_cropcap()
H A Dov9740.c732 a->bounds.left = 0; ov9740_cropcap()
733 a->bounds.top = 0; ov9740_cropcap()
734 a->bounds.width = OV9740_MAX_WIDTH; ov9740_cropcap()
735 a->bounds.height = OV9740_MAX_HEIGHT; ov9740_cropcap()
736 a->defrect = a->bounds; ov9740_cropcap()
H A Dmt9m111.c439 a->bounds.left = MT9M111_MIN_DARK_COLS; mt9m111_cropcap()
440 a->bounds.top = MT9M111_MIN_DARK_ROWS; mt9m111_cropcap()
441 a->bounds.width = MT9M111_MAX_WIDTH; mt9m111_cropcap()
442 a->bounds.height = MT9M111_MAX_HEIGHT; mt9m111_cropcap()
443 a->defrect = a->bounds; mt9m111_cropcap()
H A Dmt9v022.c366 a->bounds.left = MT9V022_COLUMN_SKIP; mt9v022_cropcap()
367 a->bounds.top = MT9V022_ROW_SKIP; mt9v022_cropcap()
368 a->bounds.width = MT9V022_MAX_WIDTH; mt9v022_cropcap()
369 a->bounds.height = MT9V022_MAX_HEIGHT; mt9v022_cropcap()
370 a->defrect = a->bounds; mt9v022_cropcap()
H A Dov2640.c951 a->bounds.left = 0; ov2640_cropcap()
952 a->bounds.top = 0; ov2640_cropcap()
953 a->bounds.width = UXGA_WIDTH; ov2640_cropcap()
954 a->bounds.height = UXGA_HEIGHT; ov2640_cropcap()
955 a->defrect = a->bounds; ov2640_cropcap()
H A Dov6650.c491 a->bounds.left = DEF_HSTRT << 1; ov6650_cropcap()
492 a->bounds.top = DEF_VSTRT << 1; ov6650_cropcap()
493 a->bounds.width = W_CIF; ov6650_cropcap()
494 a->bounds.height = H_CIF; ov6650_cropcap()
495 a->defrect = a->bounds; ov6650_cropcap()
H A Dov772x.c867 a->bounds.left = 0; ov772x_cropcap()
868 a->bounds.top = 0; ov772x_cropcap()
869 a->bounds.width = OV772X_MAX_WIDTH; ov772x_cropcap()
870 a->bounds.height = OV772X_MAX_HEIGHT; ov772x_cropcap()
871 a->defrect = a->bounds; ov772x_cropcap()
H A Drj54n1cb0c.c588 a->bounds.left = RJ54N1_COLUMN_SKIP; rj54n1_cropcap()
589 a->bounds.top = RJ54N1_ROW_SKIP; rj54n1_cropcap()
590 a->bounds.width = RJ54N1_MAX_WIDTH; rj54n1_cropcap()
591 a->bounds.height = RJ54N1_MAX_HEIGHT; rj54n1_cropcap()
592 a->defrect = a->bounds; rj54n1_cropcap()
H A Dmt9t112.c872 a->bounds.left = 0; mt9t112_cropcap()
873 a->bounds.top = 0; mt9t112_cropcap()
874 a->bounds.width = MAX_WIDTH; mt9t112_cropcap()
875 a->bounds.height = MAX_HEIGHT; mt9t112_cropcap()
/linux-4.1.27/mm/kasan/
H A Dreport.c68 bug_type = "out of bounds access"; print_error_description()
74 bug_type = "out of bounds on stack"; print_error_description()
/linux-4.1.27/arch/unicore32/kernel/
H A Dmodule.c60 printk(KERN_ERR "%s: out of bounds relocation, " apply_relocate()
H A Dstacktrace.c44 /* check current frame pointer is within bounds */ unwind_frame()
/linux-4.1.27/drivers/char/hw_random/
H A Dxgene-rng.c140 * LFSR detected an out-of-bounds number of 1s after xgene_rng_chk_overflow()
147 * LFSR detected an out-of-bounds value in at least one xgene_rng_chk_overflow()
148 * of the 16 poker_count_X counters or an out of bounds sum xgene_rng_chk_overflow()
161 * LFSR detected an outof-bounds value for at least one xgene_rng_chk_overflow()
/linux-4.1.27/security/selinux/ss/
H A Dpolicydb.h82 u32 bounds; /* boundary of role */ member in struct:role_datum
115 u32 bounds; /* boundary of type */ member in struct:type_datum
123 u32 bounds; /* bounds of user */ member in struct:user_datum
H A Dpolicydb.c372 || role->bounds > p->p_roles.nprim) role_index()
395 || typdatum->bounds > p->p_types.nprim) type_index()
421 || usrdatum->bounds > p->p_users.nprim) user_index()
1424 role->bounds = le32_to_cpu(buf[2]); role_read()
1488 typdatum->bounds = le32_to_cpu(buf[3]); type_read()
1556 usrdatum->bounds = le32_to_cpu(buf[2]); user_read()
1679 while (upper->bounds) { user_bounds_sanity_check()
1690 upper = p->user_val_to_struct[upper->bounds - 1]; user_bounds_sanity_check()
1697 "user=%s role=%s bounds=%s\n", user_bounds_sanity_check()
1716 while (upper->bounds) { role_bounds_sanity_check()
1722 "too deep or looped bounds\n", role_bounds_sanity_check()
1727 upper = p->role_val_to_struct[upper->bounds - 1]; role_bounds_sanity_check()
1734 "role=%s type=%s bounds=%s\n", role_bounds_sanity_check()
1753 while (upper->bounds) { type_bounds_sanity_check()
1762 upper->bounds - 1); type_bounds_sanity_check()
2936 buf[items++] = cpu_to_le32(role->bounds); role_write()
2984 buf[items++] = cpu_to_le32(typdatum->bounds); type_write()
3016 buf[items++] = cpu_to_le32(usrdatum->bounds); user_write()
H A Dservices.c27 * Added support for bounds domain and audit messaged on masked permissions
447 * security_compute_av due to RBAC, MLS/Constraint and Type bounds.
559 if (source->bounds) { type_attribute_bounds_av()
563 lo_scontext.type = source->bounds; type_attribute_bounds_av()
574 if (target->bounds) { type_attribute_bounds_av()
578 lo_tcontext.type = target->bounds; type_attribute_bounds_av()
589 if (source->bounds && target->bounds) { type_attribute_bounds_av()
611 tclass, masked, "bounds"); type_attribute_bounds_av()
857 if (!type->bounds) security_bounded_transition()
862 if (type->bounds == old_context->type) security_bounded_transition()
865 index = type->bounds; security_bounded_transition()
/linux-4.1.27/arch/alpha/mm/
H A Dnuma.c69 /* Find the bounds of current node */ setup_memory_node()
77 /* find the bounds of this node (node_min_pfn/node_max_pfn) */ setup_memory_node()
150 /* Find the bounds of kernel memory. */
/linux-4.1.27/drivers/media/platform/exynos4-is/
H A Dfimc-m2m.c409 cr->bounds.left = 0; fimc_m2m_cropcap()
410 cr->bounds.top = 0; fimc_m2m_cropcap()
411 cr->bounds.width = frame->o_width; fimc_m2m_cropcap()
412 cr->bounds.height = frame->o_height; fimc_m2m_cropcap()
413 cr->defrect = cr->bounds; fimc_m2m_cropcap()
471 /* adjust left/top if cropping rectangle is out of bounds */ fimc_m2m_try_crop()
/linux-4.1.27/drivers/regulator/
H A Dhelpers.c169 * voltage by calling list_voltage() until it gets something in bounds
268 /* Map back into a voltage to verify we're still in bounds */ regulator_map_voltage_linear()
330 /* Map back into a voltage to verify we're still in bounds */ regulator_map_voltage_linear_range()
/linux-4.1.27/arch/alpha/kernel/
H A Dtime.c289 /* Validate a computed cycle counter result against the known bounds for
298 static struct bounds { validate_cc_value()
329 /* If index out of bounds, no way to validate. */ validate_cc_value()
293 static struct bounds { validate_cc_value() struct
/linux-4.1.27/arch/um/include/asm/
H A Dtlb.h92 /* keep the page table cache within bounds */ tlb_finish_mmu()
H A Dpgtable.h40 * any out-of-bounds memory accesses will hopefully be caught.
/linux-4.1.27/arch/score/kernel/
H A Dmodule.c57 printk(KERN_ERR "%s: out of bounds relocation, " apply_relocate()
/linux-4.1.27/arch/sh/include/asm/
H A Dtlb.h55 /* keep the page table cache within bounds */ tlb_finish_mmu()
/linux-4.1.27/fs/fscache/
H A Dmain.c49 /* these values serve as lower bounds, will be adjusted in fscache_init() */
/linux-4.1.27/tools/testing/selftests/timers/
H A Dset-2038.c1 /* Time bounds setting test
/linux-4.1.27/arch/tile/kernel/
H A Dmachine_kexec.c145 /* still in bounds? */ kexec_bn2cl()
149 pr_info("%s: out of bounds\n", __func__); kexec_bn2cl()
/linux-4.1.27/init/
H A Dcalibrate.c188 /* First stage - slowly accelerate to find initial bounds */ calibrate_delay_converge()
210 * the largest likely undershoot. This defines our chop bounds. calibrate_delay_converge()
/linux-4.1.27/drivers/media/platform/davinci/
H A Dvpbe.c112 cropcap->bounds.left = 0; vpbe_g_cropcap()
113 cropcap->bounds.top = 0; vpbe_g_cropcap()
114 cropcap->bounds.width = vpbe_dev->current_timings.xres; vpbe_g_cropcap()
115 cropcap->bounds.height = vpbe_dev->current_timings.yres; vpbe_g_cropcap()
116 cropcap->defrect = cropcap->bounds; vpbe_g_cropcap()
H A Dvpbe_display.c757 cropcap->bounds.left = 0; vpbe_display_cropcap()
758 cropcap->bounds.top = 0; vpbe_display_cropcap()
759 cropcap->bounds.width = vpbe_dev->current_timings.xres; vpbe_display_cropcap()
760 cropcap->bounds.height = vpbe_dev->current_timings.yres; vpbe_display_cropcap()
762 cropcap->defrect = cropcap->bounds; vpbe_display_cropcap()
/linux-4.1.27/drivers/media/platform/s5p-g2d/
H A Dg2d.c417 cr->bounds.left = 0; vidioc_cropcap()
418 cr->bounds.top = 0; vidioc_cropcap()
419 cr->bounds.width = f->width; vidioc_cropcap()
420 cr->bounds.height = f->height; vidioc_cropcap()
421 cr->defrect = cr->bounds; vidioc_cropcap()
/linux-4.1.27/fs/ntfs/
H A Dindex.c197 /* Further bounds checks. */ ntfs_index_lookup()
294 ntfs_error(sb, "Out of bounds check failed. Corrupt inode " ntfs_index_lookup()
354 ntfs_error(sb, "Index entry out of bounds in inode " ntfs_index_lookup()
364 /* Further bounds checks. */ ntfs_index_lookup()
371 ntfs_error(sb, "Index entry out of bounds in inode " ntfs_index_lookup()
H A Dcompress.c98 * zero_partial_compressed_page - zero out of bounds compressed page region
121 * handle_bounds_compressed_page - test for&handle out of bounds compressed page
233 * the out of bounds page range. ntfs_decompress()
467 * of bounds remainder of the page in question and mark it as handled. At the
842 * the out of bounds page range. ntfs_read_compressed_block()
H A Ddir.c337 ntfs_error(sb, "Out of bounds check failed. Corrupt directory " ntfs_lookup_inode_by_name()
398 ntfs_error(sb, "Index entry out of bounds in " ntfs_lookup_inode_by_name()
815 ntfs_error(sb, "Out of bounds check failed. Corrupt directory "
876 ntfs_error(sb, "Index entry out of bounds in "
1314 ntfs_error(sb, "Out of bounds check failed. Corrupt directory " ntfs_readdir()
H A Dfile.c884 * If it is not a hole and not out of bounds, the runlist is ntfs_prepare_pages_for_non_resident_write()
910 * If @vcn is out of bounds, pretend @lcn is ntfs_prepare_pages_for_non_resident_write()
912 * of bounds this will work fine. ntfs_prepare_pages_for_non_resident_write()
938 * The buffer is in a hole or out of bounds. We need to fill ntfs_prepare_pages_for_non_resident_write()
969 * Out of bounds buffer is invalid if it was not really out of ntfs_prepare_pages_for_non_resident_write()
970 * bounds. ntfs_prepare_pages_for_non_resident_write()
1632 * If the page is not uptodate, bring the out of bounds area(s) ntfs_commit_pages_after_write()
H A Daops.c609 /* The first out of bounds block for the data size. */ ntfs_write_block()
972 /* The first out of bounds block for the data size. */ ntfs_write_mst_block()
1502 /* Zero out of bounds area in the page cache page. */ ntfs_writepage()
1618 * If the offset is out of bounds then pretend it is a ntfs_bmap()
H A Drunlist.c1017 /* Catch out of lower bounds vcn. */ ntfs_rl_vcn_to_lcn()
1048 * Return NULL if @rl is NULL or @vcn is in an unmapped part/out of bounds of
1237 * @dst_max: pointer to last byte of destination buffer for bounds checking
1353 * @dst_max is used for bounds checking in ntfs_mapping_pairs_build()
1679 /* This covers @start being out of bounds, too. */ ntfs_rl_punch_nolock()
H A Dattrib.c65 * of bounds of the runlist.
178 * we get into problems when we try to map an out of bounds vcn because ntfs_map_runlist_nolock()
292 * of bounds of the runlist.
332 * LCN_ENOENT There is no such vcn in the runlist, i.e. @vcn is out of bounds.
445 * -ENOENT - No such vcn in the runlist, i.e. @vcn is out of bounds.
900 /* Out of bounds check. */ ntfs_external_attr_find()
1358 /* Do the bounds check. */ ntfs_attr_size_bounds_check()
/linux-4.1.27/drivers/gpu/drm/nouveau/
H A Dnouveau_drm.h23 * bounds access to local memory to be silently ignored / return 0).
/linux-4.1.27/fs/xfs/libxfs/
H A Dxfs_symlink_remote.c76 * CRC, location and bounds checking, the unpacking function checks the path
H A Dxfs_attr_remote.c64 * does CRC, location and bounds checking, the unpacking function checks the
/linux-4.1.27/arch/m68k/include/asm/
H A Dpgtable_mm.h96 * any out-of-bounds memory accesses will hopefully be caught.
/linux-4.1.27/arch/arm/kernel/
H A Dstacktrace.c34 /* check current frame pointer is within bounds */ unwind_frame()
H A Dmodule.c80 pr_err("%s: section %u reloc %u sym '%s': out of bounds relocation, offset %d size %u\n", apply_relocate()
H A Dptrace.c661 * The bounds-checking logic built into user_regset_copyout and friends
/linux-4.1.27/kernel/trace/
H A Dbpf_trace.c192 /* check bounds */ kprobe_prog_is_valid_access()
/linux-4.1.27/include/linux/ceph/
H A Ddecode.h48 * bounds check input.
/linux-4.1.27/drivers/remoteproc/
H A Dremoteproc_virtio.c253 dev_err(&vdev->dev, "rproc_virtio_get: access out of bounds\n"); rproc_virtio_get()
271 dev_err(&vdev->dev, "rproc_virtio_set: access out of bounds\n"); rproc_virtio_set()
/linux-4.1.27/arch/hexagon/kernel/
H A Dtraps.c130 /* Expect kernel stack to be in-bounds */ do_show_stack()
142 printk(KERN_CONT " (FP out of bounds!)"); do_show_stack()
/linux-4.1.27/arch/x86/kernel/
H A Dtraps.c381 if (notify_die(DIE_TRAP, "bounds", regs, error_code, do_bounds()
387 die("bounds", regs, error_code); do_bounds()
431 do_trap(X86_TRAP_BR, SIGSEGV, "bounds", regs, error_code, info); do_bounds()
437 die("bounds", regs, error_code); do_bounds()
451 do_trap(X86_TRAP_BR, SIGSEGV, "bounds", regs, error_code, NULL); do_bounds()
969 set_intr_gate(X86_TRAP_BR, bounds); trap_init()
H A Dentry_32.S841 ENTRY(bounds)
848 END(bounds)
/linux-4.1.27/drivers/media/usb/pvrusb2/
H A Dpvrusb2-hdw.c458 *left = cap->bounds.left; ctrl_cropl_min_get()
469 *left = cap->bounds.left; ctrl_cropl_max_get()
470 if (cap->bounds.width > cptr->hdw->cropw_val) { ctrl_cropl_max_get()
471 *left += cap->bounds.width - cptr->hdw->cropw_val; ctrl_cropl_max_get()
483 *top = cap->bounds.top; ctrl_cropt_min_get()
494 *top = cap->bounds.top; ctrl_cropt_max_get()
495 if (cap->bounds.height > cptr->hdw->croph_val) { ctrl_cropt_max_get()
496 *top += cap->bounds.height - cptr->hdw->croph_val; ctrl_cropt_max_get()
510 bleftend = cap->bounds.left+cap->bounds.width; ctrl_cropw_max_get()
526 btopend = cap->bounds.top+cap->bounds.height; ctrl_croph_max_get()
540 *val = cap->bounds.left; ctrl_get_cropcapbl()
551 *val = cap->bounds.top; ctrl_get_cropcapbt()
562 *val = cap->bounds.width; ctrl_get_cropcapbw()
573 *val = cap->bounds.height; ctrl_get_cropcapbh()
1113 .desc = "Capture capability bounds top",
1118 .desc = "Capture capability bounds left",
1123 .desc = "Capture capability bounds width",
1128 .desc = "Capture capability bounds height",
/linux-4.1.27/drivers/infiniband/hw/cxgb3/
H A Dcxio_wr.h641 #define TPT_ERR_BOUND 0x6 /* base and bounds voilation */
650 #define TPT_ERR_PBL_ADDR_BOUND 0xB /* pbl addr out of bounds: */
668 #define TPT_ERR_RQE_ADDR_BOUND 0x1E /* RQE addr out of bounds: */
/linux-4.1.27/drivers/infiniband/hw/cxgb4/
H A Dt4.h129 #define T4_ERR_BOUND 0x6 /* base and bounds voilation */
138 #define T4_ERR_PBL_ADDR_BOUND 0xB /* pbl addr out of bounds: */
156 #define T4_ERR_RQE_ADDR_BOUND 0x1E /* RQE addr out of bounds: */
/linux-4.1.27/drivers/net/ethernet/intel/igb/
H A De1000_nvm.c337 hw_dbg("nvm parameter(s) out of bounds\n"); igb_read_nvm_spi()
395 hw_dbg("nvm parameter(s) out of bounds\n"); igb_read_nvm_eerd()
440 hw_dbg("nvm parameter(s) out of bounds\n"); igb_write_nvm_spi()
H A De1000_i210.c260 hw_dbg("nvm parameter(s) out of bounds\n"); igb_write_nvm_srwr()
/linux-4.1.27/arch/m68k/coldfire/
H A Dm53xx.c478 /* Check bounds of requested system clock */ clock_pll()
543 /* Check bounds of divider */ clock_limp()
/linux-4.1.27/security/apparmor/
H A Dmatch.c91 * verify_dfa - verify that transitions and states in the tables are in bounds.
144 "bounds error\n"); verify_dfa()
H A Dpolicy_unpack.c111 /* test if read will be in packed data bounds */ inbounds()
118 * aa_u16_chunck - test and do bounds checking for a u16 size based chunk
/linux-4.1.27/drivers/md/
H A Dlinear.c308 "md/linear:%s: make_request: Sector %llu out of bounds on " linear_make_request()
/linux-4.1.27/drivers/media/platform/
H A Dsh_vou.c1036 a->bounds.left = 0; sh_vou_cropcap()
1037 a->bounds.top = 0; sh_vou_cropcap()
1038 a->bounds.width = VOU_MAX_IMAGE_WIDTH; sh_vou_cropcap()
1039 a->bounds.height = VOU_MAX_IMAGE_HEIGHT; sh_vou_cropcap()
/linux-4.1.27/drivers/media/usb/cpia2/
H A Dcpia2_v4l.c493 c->bounds.left = 0; cpia2_cropcap()
494 c->bounds.top = 0; cpia2_cropcap()
495 c->bounds.width = cam->width; cpia2_cropcap()
496 c->bounds.height = cam->height; cpia2_cropcap()
/linux-4.1.27/drivers/staging/fbtft/
H A Dfb_ssd1306.c115 /* according to the datasheet, this value is out of bounds */ init_display()
/linux-4.1.27/drivers/staging/ozwpan/
H A Dozeltbuf.c189 * start dropping elements until we are back in bounds. oz_queue_elt_info()
/linux-4.1.27/drivers/gpu/drm/imx/
H A Dipuv3-plane.c111 /* clip to crtc bounds */ ipu_plane_mode_set()
/linux-4.1.27/arch/x86/boot/compressed/
H A Daslr.c260 /* Did we raise the address above the bounds of this e820 region? */ process_e820_entry()
/linux-4.1.27/drivers/video/fbdev/
H A Defifb.c174 * entries, ressource allocation and bounds efifb_probe()
H A Dvesafb.c261 * entries, resource allocation and bounds vesafb_probe()
/linux-4.1.27/drivers/w1/slaves/
H A Dw1_ds2431.c45 * Check the file size bounds and adjusts count as needed.
H A Dw1_ds2433.c53 * Check the file size bounds and adjusts count as needed.
H A Dw1_ds28e04.c64 * Check the file size bounds and adjusts count as needed.
/linux-4.1.27/arch/blackfin/mach-common/
H A Dsmp.c100 /* Invalidate the memory holding the bounds of the flushed region. */ ipi_flush_icache()
/linux-4.1.27/arch/ia64/include/asm/
H A Dtlb.h196 /* keep the page table cache within bounds */ tlb_finish_mmu()
/linux-4.1.27/arch/m32r/include/asm/
H A Dpgtable.h62 * any out-of-bounds memory accesses will hopefully be caught.
/linux-4.1.27/arch/arm/include/asm/
H A Dtlb.h173 /* keep the page table cache within bounds */ tlb_finish_mmu()
H A Dpgtable.h40 * any out-of-bounds memory accesses will hopefully be caught.
/linux-4.1.27/arch/alpha/lib/
H A Dev6-copy_user.S150 * sparsity of registers further bounds this to be a minimum of 8 bytes.
/linux-4.1.27/net/core/
H A Dgen_estimator.c52 from timers, which puts apparent top bounds on the number of rated
/linux-4.1.27/net/dccp/ccids/lib/
H A Dtfrc_equation.c679 DCCP_WARN("fvalue %u exceeds bounds!\n", fvalue); tfrc_calc_x_reverse_lookup()
/linux-4.1.27/security/selinux/
H A Dnetnode.c173 * this bucket to make sure it is within the specified bounds */ sel_netnode_insert()
H A Dnetport.c120 * this bucket to make sure it is within the specified bounds */ sel_netport_insert()
/linux-4.1.27/tools/power/cpupower/utils/
H A Dcpufreq-set.c109 /* check bounds */ string_to_frequency()
/linux-4.1.27/drivers/watchdog/
H A Dwatchdog_core.c66 * (only if it is a valid value and the timeout_parm is out of bounds).
/linux-4.1.27/drivers/media/usb/au0828/
H A Dau0828-video.c1525 cc->bounds.left = 0; vidioc_cropcap()
1526 cc->bounds.top = 0; vidioc_cropcap()
1527 cc->bounds.width = dev->width; vidioc_cropcap()
1528 cc->bounds.height = dev->height; vidioc_cropcap()
1530 cc->defrect = cc->bounds; vidioc_cropcap()
/linux-4.1.27/drivers/net/ethernet/intel/e1000e/
H A Dnvm.c320 e_dbg("nvm parameter(s) out of bounds\n"); e1000e_read_nvm_eerd()
364 e_dbg("nvm parameter(s) out of bounds\n"); e1000e_write_nvm_spi()
/linux-4.1.27/drivers/net/ethernet/amd/xgbe/
H A Dxgbe-ethtool.c435 /* Check the bounds of values for Rx */ xgbe_set_coalesce()
449 /* Check the bounds of values for Tx */ xgbe_set_coalesce()
/linux-4.1.27/fs/hpfs/
H A Dhpfs.h211 __le32 bounds; /* matches corresponding word member in struct:code_page_directory::__anon10973
229 __le32 bounds[3]; /* looks a bit like member in struct:code_page_data
/linux-4.1.27/arch/ia64/mm/
H A Dinit.c498 * We have to initialize "out of bounds" struct page elements that fit completely virtual_memmap_init()
499 * on the same pages that were allocated for the "in bounds" elements because they virtual_memmap_init()
/linux-4.1.27/net/dccp/
H A Ddccp.h59 * Set safe upper bounds for header and option length. Since Data Offset is 8
90 * RTT sampling: sanity bounds and fallback RTT value from RFC 4340, section 3.4
/linux-4.1.27/drivers/net/wimax/i2400m/
H A Drx.c685 /* NSN bounds assumed correct (checked when it was queued) */ __i2400m_roq_queue()
701 /* NSN bounds assumed correct (checked when it was queued) */ __i2400m_roq_queue()
718 /* NSN bounds assumed correct (checked when it was queued) */ __i2400m_roq_queue()
759 /* NSN bounds assumed correct (checked when it was queued) */ __i2400m_roq_update_ws()
/linux-4.1.27/drivers/media/usb/uvc/
H A Duvc_queue.c97 uvc_trace(UVC_TRACE_CAPTURE, "[E] Bytes used out of bounds.\n"); uvc_buffer_prepare()
/linux-4.1.27/drivers/pwm/
H A Dpwm-bcm-kona.c127 /* If pc and dc are in bounds, the calculation is done */ kona_pwmc_config()
/linux-4.1.27/drivers/gpu/drm/gma500/
H A Dmdfld_device.c59 /* Perform value bounds checking */ mdfld_set_brightness()
/linux-4.1.27/arch/xtensa/variants/fsf/include/variant/
H A Dcore.h103 /* If software targets a *range* of hardware versions, these are the bounds: */
/linux-4.1.27/arch/unicore32/include/asm/
H A Dpgtable.h25 * any out-of-bounds memory accesses will hopefully be caught.
/linux-4.1.27/drivers/gpu/drm/omapdrm/
H A Dtcm.h244 /* coordinate bounds */ tcm_area_is_valid()
/linux-4.1.27/drivers/bus/
H A Domap_l3_noc.c74 /* We DONOT expect err_src to go out of bounds */ l3_handle_target()
/linux-4.1.27/arch/microblaze/include/asm/
H A Duaccess.h79 /* Check against bounds of physical memory */ ___range_ok()
/linux-4.1.27/drivers/usb/gadget/function/
H A Duvc_queue.c68 uvc_trace(UVC_TRACE_CAPTURE, "[E] Bytes used out of bounds.\n"); uvc_buffer_prepare()
/linux-4.1.27/drivers/media/dvb-frontends/
H A Ds921.c59 * fixme: The bounds on the bands do not match the doc in real life.
/linux-4.1.27/arch/powerpc/platforms/cell/
H A Daxon_msi.c61 * the bounds of the FIFO. Also they should always be 16-byte aligned.
/linux-4.1.27/arch/powerpc/include/asm/
H A Dpgtable-ppc32.h82 * any out-of-bounds memory accesses will hopefully be caught.
/linux-4.1.27/arch/powerpc/mm/
H A Dtlb_nohash_low.S81 * will never be passed out of bounds values on 440 (hopefully)
/linux-4.1.27/arch/avr32/include/asm/
H A Dpgtable.h50 * area starts. That means that any out-of-bounds memory accesses will
/linux-4.1.27/arch/blackfin/kernel/
H A Dprocess.c302 /* not within async bounds */ in_async()
H A Dptrace.c115 * check that an address falls within the bounds of the target process's memory mappings
/linux-4.1.27/arch/m68k/fpsp040/
H A Dscale.S55 movew ETEMP(%a6),%d0 |check src bounds
/linux-4.1.27/arch/m68k/ifpsp060/
H A Diskeleton.S86 | and the operand was out of bounds, then _isp_unimp() creates
/linux-4.1.27/net/ipv4/
H A Dinet_timewait_sock.c268 * old duplicates, we can reduce the interval to bounds required __inet_twsk_schedule()
/linux-4.1.27/drivers/media/usb/cx231xx/
H A Dcx231xx-video.c1448 cc->bounds.left = 0; vidioc_cropcap()
1449 cc->bounds.top = 0; vidioc_cropcap()
1450 cc->bounds.width = dev->width; vidioc_cropcap()
1451 cc->bounds.height = dev->height; vidioc_cropcap()
1452 cc->defrect = cc->bounds; vidioc_cropcap()
/linux-4.1.27/drivers/media/v4l2-core/
H A Dv4l2-ioctl.c582 pr_cont("type=%s, bounds wxh=%dx%d, x,y=%d,%d, " v4l_print_cropcap()
586 p->bounds.width, p->bounds.height, v4l_print_cropcap()
587 p->bounds.left, p->bounds.top, v4l_print_cropcap()
1900 /* obtaining bounds */ v4l_cropcap()
1909 p->bounds = s.r; v4l_cropcap()
H A Dv4l2-common.c331 * sizes within the allowed bounds. wmin and hmin must be at least 1
/linux-4.1.27/drivers/media/pci/saa7164/
H A Dsaa7164-fw.c570 /* TODO: fix this bounds overrun here with old f/ws */ saa7164_downloadfirmware()
/linux-4.1.27/drivers/scsi/fnic/
H A Dvnic_dev.c113 "out-of-bounds, offset 0x%x + " vnic_dev_discover_res()
/linux-4.1.27/drivers/gpio/
H A Dgpio-dln2.c415 dev_err(dln2->gpio.dev, "out of bounds pin %d\n", pin); dln2_gpio_event()
/linux-4.1.27/drivers/cpufreq/
H A Dcpufreq_ondemand.c100 /* Find freq bounds for freq_avg in freq_table */ generic_powersave_bias_target()
/linux-4.1.27/arch/xtensa/variants/dc232b/include/variant/
H A Dcore.h108 /* If software targets a *range* of hardware versions, these are the bounds: */
/linux-4.1.27/arch/xtensa/variants/dc233c/include/variant/
H A Dcore.h147 /* If software targets a *range* of hardware versions, these are the bounds: */
/linux-4.1.27/drivers/gpu/drm/msm/adreno/
H A Da4xx_gpu.c186 /* Disable L2 bypass to avoid UCHE out of bounds errors */ a4xx_hw_init()
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/instmem/
H A Dgk20a.c337 /* Round size and align to page bounds */ gk20a_instobj_ctor()
/linux-4.1.27/drivers/acpi/acpica/
H A Dnsutils.c497 * Check to see if we're still in bounds. If not, there's a problem acpi_ns_externalize_name()
/linux-4.1.27/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_shader.c519 * shader type are within valid bounds.
H A Dvmwgfx_context.c671 * bounds and then starts tracking the binding in the context binding
/linux-4.1.27/drivers/uwb/
H A Dlc-rc.c204 /* bounds check length field from user. */ ASIE_store()
/linux-4.1.27/arch/frv/kernel/
H A Dtraps.c396 * - access to out of bounds memory region
/linux-4.1.27/arch/arm/mach-s3c24xx/
H A Diotiming-s3c2410.c401 * the new values are within permitted bounds.
/linux-4.1.27/fs/ext3/
H A Ddir.c80 error_msg = "inode out of bounds"; ext3_check_dir_entry()
/linux-4.1.27/samples/bpf/
H A Dtest_verifier.c224 "stack out of bounds",
/linux-4.1.27/sound/oss/
H A Dsb_mixer.c341 /* bounds check */ smw_mixer_set()
/linux-4.1.27/drivers/net/wireless/ath/ath9k/
H A Dar9003_calib.c247 /* Force bounds on iCoff */ ar9003_hw_iqcalibrate()
257 /* Force bounds on qCoff */ ar9003_hw_iqcalibrate()
/linux-4.1.27/arch/m68k/ifpsp060/src/
H A Disp.S1878 # operation is byte, word, or long. The bounds are sign extended #
1883 # If the instruction is chk2 and the Rn value is out-of-bounds, set #
1907 # the bounds are longword size. call routine to read the lower
1928 # the bounds are word size. fetch them in one subroutine call by
1933 bsr.l _dmem_read_long # fetch 2 word bounds
1952 # the bounds are byte size. fetch them in one subroutine call by
1957 bsr.l _dmem_read_word # fetch 2 byte bounds
2004 # have trapped out if the value was out of bounds. we check this by seeing
/linux-4.1.27/net/wireless/
H A Dwext-core.c509 /* Check if number of token fits within bounds */ wireless_send_event()
763 /* Check if number of token fits within bounds */ ioctl_standard_iw_point()
/linux-4.1.27/drivers/net/wireless/ath/ath6kl/
H A Dcfg80211.c571 ath6kl_err("key index %d out of bounds\n", ath6kl_cfg80211_connect()
1139 "%s: key index %d out of bounds\n", __func__, ath6kl_cfg80211_add_key()
1254 "%s: key index %d out of bounds\n", __func__, ath6kl_cfg80211_del_key()
1287 "%s: key index %d out of bounds\n", __func__, ath6kl_cfg80211_get_key()
1323 "%s: key index %d out of bounds\n", ath6kl_cfg80211_set_default_key()
/linux-4.1.27/drivers/net/ethernet/intel/ixgbevf/
H A Dvf.c712 /* default to queue 0 on out-of-bounds queue number */ ixgbevf_get_queues()
/linux-4.1.27/drivers/media/pci/zoran/
H A Dzoran_driver.c2535 cropcap->bounds.top = cropcap->bounds.left = 0; zoran_cropcap()
2536 cropcap->bounds.width = BUZ_MAX_WIDTH; zoran_cropcap()
2537 cropcap->bounds.height = BUZ_MAX_HEIGHT; zoran_cropcap()
/linux-4.1.27/drivers/spmi/
H A Dspmi-pmic-arb.c910 /* Initialize max_apid/min_apid to the opposite bounds, during spmi_pmic_arb_probe()
/linux-4.1.27/drivers/staging/comedi/drivers/
H A Dni_at_a2150.c273 /* initialize greatest lower and least upper bounds */ a2150_get_timing()
/linux-4.1.27/drivers/sbus/char/
H A Dopenprom.c69 * accesses are within bounds. A pointer to the allocated openpromio
/linux-4.1.27/drivers/scsi/
H A D3w-9xxx.h196 {0x01C1, "Flash out of bounds"},
/linux-4.1.27/drivers/net/wireless/iwlegacy/
H A D3945-rs.c465 D_RATE("leave: Rate out of bounds: %d\n", first_idx); il3945_rs_tx_status()
/linux-4.1.27/drivers/infiniband/ulp/iser/
H A Discsi_iser.h112 /* Maximal bounds on received asynchronous PDUs */
/linux-4.1.27/drivers/devfreq/
H A Dtegra-devfreq.c99 /* Define the watermark bounds when applied to the current avg */
/linux-4.1.27/drivers/dma-buf/
H A Ddma-buf.c655 * dma_buf operation. It also adjusts the starting pgoff and does bounds
/linux-4.1.27/arch/sh/mm/
H A Dpmb.c604 * Invalidate anything out of bounds. pmb_synchronize()
/linux-4.1.27/crypto/
H A Dvmac.c605 /* vmac() ends up accessing outside the array bounds that vmac_final()
/linux-4.1.27/drivers/tty/serial/
H A Dsccnxp.c898 dev_err(&pdev->dev, "Frequency out of bounds\n"); sccnxp_probe()
/linux-4.1.27/fs/ufs/
H A Ddir.c172 error = "inode out of bounds"; ufs_check_page()
/linux-4.1.27/drivers/video/fbdev/core/
H A Dsvgalib.c403 /* VCO bounds check */ svga_compute_pll()
/linux-4.1.27/fs/jffs2/
H A Dfs.c499 * to sensible bounds. calculate_inocache_hashsize()
/linux-4.1.27/fs/nfs/
H A Dproc.c644 /* Helper functions for NFS lock bounds checking */
/linux-4.1.27/include/linux/sunrpc/
H A Dsvc.h326 * Check buffer bounds after decoding arguments
/linux-4.1.27/arch/parisc/mm/
H A Dinit.c569 * between mapping areas. That means that any out-of-bounds memory
/linux-4.1.27/arch/ia64/kernel/
H A Dtraps.c126 case 3: /* range check/bounds check */ ia64_bad_break()
/linux-4.1.27/arch/arm/mach-omap2/
H A Dvc.c739 * This checks whether the microvolt value is out of bounds, and
/linux-4.1.27/arch/arm/common/
H A DbL_switcher.c352 pr_err("%s: cpu %d out of bounds\n", __func__, cpu); bL_switch_request_cb()
/linux-4.1.27/fs/ext2/
H A Ddir.c179 error = "inode out of bounds"; ext2_check_page()
/linux-4.1.27/fs/ext4/
H A Ddir.c81 error_msg = "inode out of bounds"; __ext4_check_dir_entry()
/linux-4.1.27/net/atm/
H A Dcommon.c354 /* last scan may have left values out of bounds for current device */ find_ci()
/linux-4.1.27/tools/testing/selftests/x86/
H A Dsigreturn.c89 * descriptor or out of bounds).
/linux-4.1.27/drivers/lguest/
H A Dpage_tables.c420 * refer to a "physical" address outside the bounds. demand_page()
438 * refer to a "physical" address outside the bounds. demand_page()

Completed in 4631 milliseconds

12