/linux-4.1.27/lib/ |
H A D | test_kasan.c | 25 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 D | dynamic_queue_limits.c | 99 /* Enforce bounds on limit */ dql_completed()
|
/linux-4.1.27/arch/x86/mm/ |
H A D | mpx.c | 23 * 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 D | physaddr.c | 37 /* only check upper bounds since lower bounds will trigger carry */ __phys_addr_symbol()
|
/linux-4.1.27/arch/x86/include/asm/ |
H A D | mpx.h | 9 * 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 D | pgtable_32_types.h | 23 * any out-of-bounds memory accesses will hopefully be caught.
|
H A D | traps.h | 20 asmlinkage void bounds(void); 45 #define trace_bounds bounds
|
H A D | mmu_context.h | 243 * MPX itself (reading bounds tables) is expected to arch_unmap()
|
/linux-4.1.27/kernel/ |
H A D | bounds.c | 17 /* The enum constants to put into include/generated/bounds.h */ foo()
|
/linux-4.1.27/drivers/media/platform/soc_camera/ |
H A D | soc_camera_platform.c | 95 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 D | soc_scale_crop.c | 113 * 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 D | isert_proto.h | 20 /* Maximal bounds on received asynchronous PDUs */
|
/linux-4.1.27/drivers/hid/ |
H A D | hid-xinmo.c | 5 * -1). It is needed because hid-input discards out of bounds values. 26 * Fix negative events that are out of bounds.
|
H A D | hid-picolcd_debugfs.c | 178 /* 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 D | hid-multitouch.c | 319 /* 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 D | prctl.h | 134 __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 D | v4l2-common.h | 44 /* Cropping bounds */ 52 /* Composing bounds */
|
H A D | dm-ioctl.h | 41 * since it will be out-of-bounds.
|
/linux-4.1.27/drivers/media/i2c/ |
H A D | ak881x.c | 136 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 D | tvp5150.c | 923 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 D | smiapp-pll.c | 56 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 D | dm-bitset.h | 21 * 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 D | dm-array.h | 22 * 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 D | dm-btree.c | 642 /* change the bounds on the lowest key */ btree_insert_raw()
|
/linux-4.1.27/drivers/net/wireless/ti/wl12xx/ |
H A D | cmd.c | 76 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 D | vsyscall.c | 37 * These symbols are defined by vsyscall.o to mark the bounds
|
/linux-4.1.27/arch/powerpc/boot/ |
H A D | mpc8xx.c | 40 printf("Warning: PLPRCR[MFI] value of %d out-of-bounds\r\n", mpc885_get_clock()
|
/linux-4.1.27/include/linux/ |
H A D | lockref.h | 18 #include <generated/bounds.h>
|
H A D | page-flags-layout.h | 5 #include <generated/bounds.h>
|
H A D | blk_types.h | 116 #define BIO_EOF 2 /* out-out-bounds error */
|
H A D | page-flags.h | 13 #include <generated/bounds.h>
|
H A D | mm_types.h | 457 /* address of the bounds directory */
|
/linux-4.1.27/drivers/media/pci/bt8xx/ |
H A D | bttv-vbi.c | 189 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 D | bttv-driver.c | 265 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 D | bttvp.h | 104 is determined by cropcap.bounds. */
|
/linux-4.1.27/drivers/media/i2c/soc_camera/ |
H A D | imx074.c | 226 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 D | ov9640.c | 566 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 D | tw9910.c | 677 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 D | mt9m001.c | 241 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 D | mt9t031.c | 328 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 D | ov5642.c | 896 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 D | ov9740.c | 732 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 D | mt9m111.c | 439 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 D | mt9v022.c | 366 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 D | ov2640.c | 951 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 D | ov6650.c | 491 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 D | ov772x.c | 867 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 D | rj54n1cb0c.c | 588 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 D | mt9t112.c | 872 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 D | report.c | 68 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 D | module.c | 60 printk(KERN_ERR "%s: out of bounds relocation, " apply_relocate()
|
H A D | stacktrace.c | 44 /* check current frame pointer is within bounds */ unwind_frame()
|
/linux-4.1.27/drivers/char/hw_random/ |
H A D | xgene-rng.c | 140 * 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 D | policydb.h | 82 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 D | policydb.c | 372 || 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 D | services.c | 27 * 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 D | numa.c | 69 /* 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 D | fimc-m2m.c | 409 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 D | helpers.c | 169 * 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 D | time.c | 289 /* 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 D | tlb.h | 92 /* keep the page table cache within bounds */ tlb_finish_mmu()
|
H A D | pgtable.h | 40 * any out-of-bounds memory accesses will hopefully be caught.
|
/linux-4.1.27/arch/score/kernel/ |
H A D | module.c | 57 printk(KERN_ERR "%s: out of bounds relocation, " apply_relocate()
|
/linux-4.1.27/arch/sh/include/asm/ |
H A D | tlb.h | 55 /* keep the page table cache within bounds */ tlb_finish_mmu()
|
/linux-4.1.27/fs/fscache/ |
H A D | main.c | 49 /* these values serve as lower bounds, will be adjusted in fscache_init() */
|
/linux-4.1.27/tools/testing/selftests/timers/ |
H A D | set-2038.c | 1 /* Time bounds setting test
|
/linux-4.1.27/arch/tile/kernel/ |
H A D | machine_kexec.c | 145 /* still in bounds? */ kexec_bn2cl() 149 pr_info("%s: out of bounds\n", __func__); kexec_bn2cl()
|
/linux-4.1.27/init/ |
H A D | calibrate.c | 188 /* 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 D | vpbe.c | 112 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 D | vpbe_display.c | 757 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 D | g2d.c | 417 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 D | index.c | 197 /* 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 D | compress.c | 98 * 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 D | dir.c | 337 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 D | file.c | 884 * 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 D | aops.c | 609 /* 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 D | runlist.c | 1017 /* 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 D | attrib.c | 65 * 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 D | nouveau_drm.h | 23 * bounds access to local memory to be silently ignored / return 0).
|
/linux-4.1.27/fs/xfs/libxfs/ |
H A D | xfs_symlink_remote.c | 76 * CRC, location and bounds checking, the unpacking function checks the path
|
H A D | xfs_attr_remote.c | 64 * does CRC, location and bounds checking, the unpacking function checks the
|
/linux-4.1.27/arch/m68k/include/asm/ |
H A D | pgtable_mm.h | 96 * any out-of-bounds memory accesses will hopefully be caught.
|
/linux-4.1.27/arch/arm/kernel/ |
H A D | stacktrace.c | 34 /* check current frame pointer is within bounds */ unwind_frame()
|
H A D | module.c | 80 pr_err("%s: section %u reloc %u sym '%s': out of bounds relocation, offset %d size %u\n", apply_relocate()
|
H A D | ptrace.c | 661 * The bounds-checking logic built into user_regset_copyout and friends
|
/linux-4.1.27/kernel/trace/ |
H A D | bpf_trace.c | 192 /* check bounds */ kprobe_prog_is_valid_access()
|
/linux-4.1.27/include/linux/ceph/ |
H A D | decode.h | 48 * bounds check input.
|
/linux-4.1.27/drivers/remoteproc/ |
H A D | remoteproc_virtio.c | 253 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 D | traps.c | 130 /* 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 D | traps.c | 381 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 D | entry_32.S | 841 ENTRY(bounds) 848 END(bounds)
|
/linux-4.1.27/drivers/media/usb/pvrusb2/ |
H A D | pvrusb2-hdw.c | 458 *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 D | cxio_wr.h | 641 #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 D | t4.h | 129 #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 D | e1000_nvm.c | 337 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 D | e1000_i210.c | 260 hw_dbg("nvm parameter(s) out of bounds\n"); igb_write_nvm_srwr()
|
/linux-4.1.27/arch/m68k/coldfire/ |
H A D | m53xx.c | 478 /* Check bounds of requested system clock */ clock_pll() 543 /* Check bounds of divider */ clock_limp()
|
/linux-4.1.27/security/apparmor/ |
H A D | match.c | 91 * verify_dfa - verify that transitions and states in the tables are in bounds. 144 "bounds error\n"); verify_dfa()
|
H A D | policy_unpack.c | 111 /* 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 D | linear.c | 308 "md/linear:%s: make_request: Sector %llu out of bounds on " linear_make_request()
|
/linux-4.1.27/drivers/media/platform/ |
H A D | sh_vou.c | 1036 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 D | cpia2_v4l.c | 493 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 D | fb_ssd1306.c | 115 /* according to the datasheet, this value is out of bounds */ init_display()
|
/linux-4.1.27/drivers/staging/ozwpan/ |
H A D | ozeltbuf.c | 189 * start dropping elements until we are back in bounds. oz_queue_elt_info()
|
/linux-4.1.27/drivers/gpu/drm/imx/ |
H A D | ipuv3-plane.c | 111 /* clip to crtc bounds */ ipu_plane_mode_set()
|
/linux-4.1.27/arch/x86/boot/compressed/ |
H A D | aslr.c | 260 /* Did we raise the address above the bounds of this e820 region? */ process_e820_entry()
|
/linux-4.1.27/drivers/video/fbdev/ |
H A D | efifb.c | 174 * entries, ressource allocation and bounds efifb_probe()
|
H A D | vesafb.c | 261 * entries, resource allocation and bounds vesafb_probe()
|
/linux-4.1.27/drivers/w1/slaves/ |
H A D | w1_ds2431.c | 45 * Check the file size bounds and adjusts count as needed.
|
H A D | w1_ds2433.c | 53 * Check the file size bounds and adjusts count as needed.
|
H A D | w1_ds28e04.c | 64 * Check the file size bounds and adjusts count as needed.
|
/linux-4.1.27/arch/blackfin/mach-common/ |
H A D | smp.c | 100 /* Invalidate the memory holding the bounds of the flushed region. */ ipi_flush_icache()
|
/linux-4.1.27/arch/ia64/include/asm/ |
H A D | tlb.h | 196 /* keep the page table cache within bounds */ tlb_finish_mmu()
|
/linux-4.1.27/arch/m32r/include/asm/ |
H A D | pgtable.h | 62 * any out-of-bounds memory accesses will hopefully be caught.
|
/linux-4.1.27/arch/arm/include/asm/ |
H A D | tlb.h | 173 /* keep the page table cache within bounds */ tlb_finish_mmu()
|
H A D | pgtable.h | 40 * any out-of-bounds memory accesses will hopefully be caught.
|
/linux-4.1.27/arch/alpha/lib/ |
H A D | ev6-copy_user.S | 150 * sparsity of registers further bounds this to be a minimum of 8 bytes.
|
/linux-4.1.27/net/core/ |
H A D | gen_estimator.c | 52 from timers, which puts apparent top bounds on the number of rated
|
/linux-4.1.27/net/dccp/ccids/lib/ |
H A D | tfrc_equation.c | 679 DCCP_WARN("fvalue %u exceeds bounds!\n", fvalue); tfrc_calc_x_reverse_lookup()
|
/linux-4.1.27/security/selinux/ |
H A D | netnode.c | 173 * this bucket to make sure it is within the specified bounds */ sel_netnode_insert()
|
H A D | netport.c | 120 * this bucket to make sure it is within the specified bounds */ sel_netport_insert()
|
/linux-4.1.27/tools/power/cpupower/utils/ |
H A D | cpufreq-set.c | 109 /* check bounds */ string_to_frequency()
|
/linux-4.1.27/drivers/watchdog/ |
H A D | watchdog_core.c | 66 * (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 D | au0828-video.c | 1525 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 D | nvm.c | 320 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 D | xgbe-ethtool.c | 435 /* 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 D | hpfs.h | 211 __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 D | init.c | 498 * 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 D | dccp.h | 59 * 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 D | rx.c | 685 /* 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 D | uvc_queue.c | 97 uvc_trace(UVC_TRACE_CAPTURE, "[E] Bytes used out of bounds.\n"); uvc_buffer_prepare()
|
/linux-4.1.27/drivers/pwm/ |
H A D | pwm-bcm-kona.c | 127 /* If pc and dc are in bounds, the calculation is done */ kona_pwmc_config()
|
/linux-4.1.27/drivers/gpu/drm/gma500/ |
H A D | mdfld_device.c | 59 /* Perform value bounds checking */ mdfld_set_brightness()
|
/linux-4.1.27/arch/xtensa/variants/fsf/include/variant/ |
H A D | core.h | 103 /* If software targets a *range* of hardware versions, these are the bounds: */
|
/linux-4.1.27/arch/unicore32/include/asm/ |
H A D | pgtable.h | 25 * any out-of-bounds memory accesses will hopefully be caught.
|
/linux-4.1.27/drivers/gpu/drm/omapdrm/ |
H A D | tcm.h | 244 /* coordinate bounds */ tcm_area_is_valid()
|
/linux-4.1.27/drivers/bus/ |
H A D | omap_l3_noc.c | 74 /* We DONOT expect err_src to go out of bounds */ l3_handle_target()
|
/linux-4.1.27/arch/microblaze/include/asm/ |
H A D | uaccess.h | 79 /* Check against bounds of physical memory */ ___range_ok()
|
/linux-4.1.27/drivers/usb/gadget/function/ |
H A D | uvc_queue.c | 68 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 D | s921.c | 59 * fixme: The bounds on the bands do not match the doc in real life.
|
/linux-4.1.27/arch/powerpc/platforms/cell/ |
H A D | axon_msi.c | 61 * the bounds of the FIFO. Also they should always be 16-byte aligned.
|
/linux-4.1.27/arch/powerpc/include/asm/ |
H A D | pgtable-ppc32.h | 82 * any out-of-bounds memory accesses will hopefully be caught.
|
/linux-4.1.27/arch/powerpc/mm/ |
H A D | tlb_nohash_low.S | 81 * will never be passed out of bounds values on 440 (hopefully)
|
/linux-4.1.27/arch/avr32/include/asm/ |
H A D | pgtable.h | 50 * area starts. That means that any out-of-bounds memory accesses will
|
/linux-4.1.27/arch/blackfin/kernel/ |
H A D | process.c | 302 /* not within async bounds */ in_async()
|
H A D | ptrace.c | 115 * check that an address falls within the bounds of the target process's memory mappings
|
/linux-4.1.27/arch/m68k/fpsp040/ |
H A D | scale.S | 55 movew ETEMP(%a6),%d0 |check src bounds
|
/linux-4.1.27/arch/m68k/ifpsp060/ |
H A D | iskeleton.S | 86 | and the operand was out of bounds, then _isp_unimp() creates
|
/linux-4.1.27/net/ipv4/ |
H A D | inet_timewait_sock.c | 268 * old duplicates, we can reduce the interval to bounds required __inet_twsk_schedule()
|
/linux-4.1.27/drivers/media/usb/cx231xx/ |
H A D | cx231xx-video.c | 1448 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 D | v4l2-ioctl.c | 582 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 D | v4l2-common.c | 331 * sizes within the allowed bounds. wmin and hmin must be at least 1
|
/linux-4.1.27/drivers/media/pci/saa7164/ |
H A D | saa7164-fw.c | 570 /* TODO: fix this bounds overrun here with old f/ws */ saa7164_downloadfirmware()
|
/linux-4.1.27/drivers/scsi/fnic/ |
H A D | vnic_dev.c | 113 "out-of-bounds, offset 0x%x + " vnic_dev_discover_res()
|
/linux-4.1.27/drivers/gpio/ |
H A D | gpio-dln2.c | 415 dev_err(dln2->gpio.dev, "out of bounds pin %d\n", pin); dln2_gpio_event()
|
/linux-4.1.27/drivers/cpufreq/ |
H A D | cpufreq_ondemand.c | 100 /* 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 D | core.h | 108 /* If software targets a *range* of hardware versions, these are the bounds: */
|
/linux-4.1.27/arch/xtensa/variants/dc233c/include/variant/ |
H A D | core.h | 147 /* If software targets a *range* of hardware versions, these are the bounds: */
|
/linux-4.1.27/drivers/gpu/drm/msm/adreno/ |
H A D | a4xx_gpu.c | 186 /* 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 D | gk20a.c | 337 /* Round size and align to page bounds */ gk20a_instobj_ctor()
|
/linux-4.1.27/drivers/acpi/acpica/ |
H A D | nsutils.c | 497 * 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 D | vmwgfx_shader.c | 519 * shader type are within valid bounds.
|
H A D | vmwgfx_context.c | 671 * bounds and then starts tracking the binding in the context binding
|
/linux-4.1.27/drivers/uwb/ |
H A D | lc-rc.c | 204 /* bounds check length field from user. */ ASIE_store()
|
/linux-4.1.27/arch/frv/kernel/ |
H A D | traps.c | 396 * - access to out of bounds memory region
|
/linux-4.1.27/arch/arm/mach-s3c24xx/ |
H A D | iotiming-s3c2410.c | 401 * the new values are within permitted bounds.
|
/linux-4.1.27/fs/ext3/ |
H A D | dir.c | 80 error_msg = "inode out of bounds"; ext3_check_dir_entry()
|
/linux-4.1.27/samples/bpf/ |
H A D | test_verifier.c | 224 "stack out of bounds",
|
/linux-4.1.27/sound/oss/ |
H A D | sb_mixer.c | 341 /* bounds check */ smw_mixer_set()
|
/linux-4.1.27/drivers/net/wireless/ath/ath9k/ |
H A D | ar9003_calib.c | 247 /* 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 D | isp.S | 1878 # 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 D | wext-core.c | 509 /* 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 D | cfg80211.c | 571 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 D | vf.c | 712 /* default to queue 0 on out-of-bounds queue number */ ixgbevf_get_queues()
|
/linux-4.1.27/drivers/media/pci/zoran/ |
H A D | zoran_driver.c | 2535 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 D | spmi-pmic-arb.c | 910 /* Initialize max_apid/min_apid to the opposite bounds, during spmi_pmic_arb_probe()
|
/linux-4.1.27/drivers/staging/comedi/drivers/ |
H A D | ni_at_a2150.c | 273 /* initialize greatest lower and least upper bounds */ a2150_get_timing()
|
/linux-4.1.27/drivers/sbus/char/ |
H A D | openprom.c | 69 * accesses are within bounds. A pointer to the allocated openpromio
|
/linux-4.1.27/drivers/scsi/ |
H A D | 3w-9xxx.h | 196 {0x01C1, "Flash out of bounds"},
|
/linux-4.1.27/drivers/net/wireless/iwlegacy/ |
H A D | 3945-rs.c | 465 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 D | iscsi_iser.h | 112 /* Maximal bounds on received asynchronous PDUs */
|
/linux-4.1.27/drivers/devfreq/ |
H A D | tegra-devfreq.c | 99 /* Define the watermark bounds when applied to the current avg */
|
/linux-4.1.27/drivers/dma-buf/ |
H A D | dma-buf.c | 655 * dma_buf operation. It also adjusts the starting pgoff and does bounds
|
/linux-4.1.27/arch/sh/mm/ |
H A D | pmb.c | 604 * Invalidate anything out of bounds. pmb_synchronize()
|
/linux-4.1.27/crypto/ |
H A D | vmac.c | 605 /* vmac() ends up accessing outside the array bounds that vmac_final()
|
/linux-4.1.27/drivers/tty/serial/ |
H A D | sccnxp.c | 898 dev_err(&pdev->dev, "Frequency out of bounds\n"); sccnxp_probe()
|
/linux-4.1.27/fs/ufs/ |
H A D | dir.c | 172 error = "inode out of bounds"; ufs_check_page()
|
/linux-4.1.27/drivers/video/fbdev/core/ |
H A D | svgalib.c | 403 /* VCO bounds check */ svga_compute_pll()
|
/linux-4.1.27/fs/jffs2/ |
H A D | fs.c | 499 * to sensible bounds. calculate_inocache_hashsize()
|
/linux-4.1.27/fs/nfs/ |
H A D | proc.c | 644 /* Helper functions for NFS lock bounds checking */
|
/linux-4.1.27/include/linux/sunrpc/ |
H A D | svc.h | 326 * Check buffer bounds after decoding arguments
|
/linux-4.1.27/arch/parisc/mm/ |
H A D | init.c | 569 * between mapping areas. That means that any out-of-bounds memory
|
/linux-4.1.27/arch/ia64/kernel/ |
H A D | traps.c | 126 case 3: /* range check/bounds check */ ia64_bad_break()
|
/linux-4.1.27/arch/arm/mach-omap2/ |
H A D | vc.c | 739 * This checks whether the microvolt value is out of bounds, and
|
/linux-4.1.27/arch/arm/common/ |
H A D | bL_switcher.c | 352 pr_err("%s: cpu %d out of bounds\n", __func__, cpu); bL_switch_request_cb()
|
/linux-4.1.27/fs/ext2/ |
H A D | dir.c | 179 error = "inode out of bounds"; ext2_check_page()
|
/linux-4.1.27/fs/ext4/ |
H A D | dir.c | 81 error_msg = "inode out of bounds"; __ext4_check_dir_entry()
|
/linux-4.1.27/net/atm/ |
H A D | common.c | 354 /* last scan may have left values out of bounds for current device */ find_ci()
|
/linux-4.1.27/tools/testing/selftests/x86/ |
H A D | sigreturn.c | 89 * descriptor or out of bounds).
|
/linux-4.1.27/drivers/lguest/ |
H A D | page_tables.c | 420 * refer to a "physical" address outside the bounds. demand_page() 438 * refer to a "physical" address outside the bounds. demand_page()
|