/kernel/linux/common_modules/container_escape_detection/core/ |
H A D | ced_detection.c | 76 struct point_info *point = container_of(node, struct point_info, node); in point_search() local 77 pid_t result = point->tgid; in point_search() 83 return point; in point_search() 93 struct point_info *point = NULL; in point_insert() local 97 point = container_of((*new), struct point_info, node); in point_insert() 98 result = point->tgid; in point_insert() 108 point = kmalloc(sizeof(struct point_info), GFP_KERNEL); in point_insert() 109 if (point == NULL) in point_insert() 112 point->tgid = tgid; in point_insert() 113 point in point_insert() 124 struct point_info *point = point_search(pid); point_erase() local 197 check_tree_and_attribute(pid_t tgid, struct process_info *current_info, struct point_info **point) check_tree_and_attribute() argument 314 struct point_info *point = NULL; detection_hook() local [all...] |
/kernel/linux/linux-5.10/drivers/input/touchscreen/ |
H A D | auo-pixcir-ts.c | 125 struct auo_point_t *point) in auo_pixcir_collect_data() 150 point[i].coord_x = in auo_pixcir_collect_data() 152 point[i].coord_y = in auo_pixcir_collect_data() 155 if (point[i].coord_x > pdata->x_max || in auo_pixcir_collect_data() 156 point[i].coord_y > pdata->y_max) { in auo_pixcir_collect_data() 158 point[i].coord_x, point[i].coord_y); in auo_pixcir_collect_data() 159 point[i].coord_x = point[i].coord_y = 0; in auo_pixcir_collect_data() 163 point[ in auo_pixcir_collect_data() 124 auo_pixcir_collect_data(struct auo_pixcir_ts *ts, struct auo_point_t *point) auo_pixcir_collect_data() argument 175 struct auo_point_t point[AUO_PIXCIR_REPORT_POINTS]; auo_pixcir_interrupt() local [all...] |
H A D | zforce_ts.c | 341 struct zforce_point point; in zforce_touch_event() local 353 point.coord_x = in zforce_touch_event() 355 point.coord_y = in zforce_touch_event() 358 if (point.coord_x > pdata->x_max || in zforce_touch_event() 359 point.coord_y > pdata->y_max) { in zforce_touch_event() 361 point.coord_x, point.coord_y); in zforce_touch_event() 362 point.coord_x = point.coord_y = 0; in zforce_touch_event() 365 point in zforce_touch_event() [all...] |
H A D | raspberrypi-ts.c | 56 } point[RPI_TS_MAX_SUPPORTED_POINTS]; member 85 x = (((int)regs.point[i].xh & 0xf) << 8) + regs.point[i].xl; in rpi_ts_poll() 86 y = (((int)regs.point[i].yh & 0xf) << 8) + regs.point[i].yl; in rpi_ts_poll() 87 touchid = (regs.point[i].yh >> 4) & 0xf; in rpi_ts_poll() 88 event_type = (regs.point[i].xh >> 6) & 0x03; in rpi_ts_poll()
|
/kernel/linux/linux-6.6/drivers/input/touchscreen/ |
H A D | auo-pixcir-ts.c | 139 struct auo_point_t *point) in auo_pixcir_collect_data() 163 point[i].coord_x = in auo_pixcir_collect_data() 165 point[i].coord_y = in auo_pixcir_collect_data() 168 if (point[i].coord_x > ts->x_max || in auo_pixcir_collect_data() 169 point[i].coord_y > ts->y_max) { in auo_pixcir_collect_data() 171 point[i].coord_x, point[i].coord_y); in auo_pixcir_collect_data() 172 point[i].coord_x = point[i].coord_y = 0; in auo_pixcir_collect_data() 176 point[ in auo_pixcir_collect_data() 138 auo_pixcir_collect_data(struct auo_pixcir_ts *ts, struct auo_point_t *point) auo_pixcir_collect_data() argument 187 struct auo_point_t point[AUO_PIXCIR_REPORT_POINTS]; auo_pixcir_interrupt() local [all...] |
H A D | zforce_ts.c | 341 struct zforce_point point; in zforce_touch_event() local 353 point.coord_x = in zforce_touch_event() 355 point.coord_y = in zforce_touch_event() 358 if (point.coord_x > pdata->x_max || in zforce_touch_event() 359 point.coord_y > pdata->y_max) { in zforce_touch_event() 361 point.coord_x, point.coord_y); in zforce_touch_event() 362 point.coord_x = point.coord_y = 0; in zforce_touch_event() 365 point in zforce_touch_event() [all...] |
H A D | raspberrypi-ts.c | 56 } point[RPI_TS_MAX_SUPPORTED_POINTS]; member 85 x = (((int)regs.point[i].xh & 0xf) << 8) + regs.point[i].xl; in rpi_ts_poll() 86 y = (((int)regs.point[i].yh & 0xf) << 8) + regs.point[i].yl; in rpi_ts_poll() 87 touchid = (regs.point[i].yh >> 4) & 0xf; in rpi_ts_poll() 88 event_type = (regs.point[i].xh >> 6) & 0x03; in rpi_ts_poll()
|
/kernel/liteos_m/components/debugtools/ |
H A D | los_schedtrace.c | 48 UINT32 point = count % TRACE_NUM;
in DefaultShowFormat() local 53 for (i = point; i < TRACE_NUM; i++) {
in DefaultShowFormat() 60 for (i = 0; i < point; i++) {
in DefaultShowFormat() 71 UINT32 point = g_schedCount % TRACE_NUM;
in DefaultRecordHandle() local 73 g_traceRingBuf[point].newTaskID = newTask->taskID;
in DefaultRecordHandle() 74 (VOID)memcpy_s(g_traceRingBuf[point].newTaskName, LOS_TASK_NAMELEN, newTask->taskName, LOS_TASK_NAMELEN);
in DefaultRecordHandle() 75 g_traceRingBuf[point].runTaskID = runTask->taskID;
in DefaultRecordHandle() 76 (VOID)memcpy_s(g_traceRingBuf[point].runTaskName, LOS_TASK_NAMELEN, runTask->taskName, LOS_TASK_NAMELEN);
in DefaultRecordHandle()
|
/kernel/linux/linux-5.10/tools/perf/arch/powerpc/util/ |
H A D | sym-handling.c | 85 * When probing at a function entry point, we normally always want the in arch__fix_tev_from_maps() 94 if (pev->point.offset || !map || !sym) in arch__fix_tev_from_maps() 98 if (!pev->uprobes && pev->point.retprobe) { in arch__fix_tev_from_maps() 108 tev->point.offset += PPC64LE_LEP_OFFSET; in arch__fix_tev_from_maps() 111 tev->point.address += lep_offset; in arch__fix_tev_from_maps() 113 tev->point.offset += lep_offset; in arch__fix_tev_from_maps() 134 if (map->unmap_ip(map, sym->start) == tev->point.address) { in arch__post_process_probe_trace_events()
|
/kernel/linux/linux-6.6/tools/perf/arch/powerpc/util/ |
H A D | sym-handling.c | 85 * When probing at a function entry point, we normally always want the in arch__fix_tev_from_maps() 94 if (pev->point.offset || !map || !sym) in arch__fix_tev_from_maps() 98 if (!pev->uprobes && pev->point.retprobe) { in arch__fix_tev_from_maps() 108 tev->point.offset += PPC64LE_LEP_OFFSET; in arch__fix_tev_from_maps() 111 tev->point.address += lep_offset; in arch__fix_tev_from_maps() 113 tev->point.offset += lep_offset; in arch__fix_tev_from_maps() 134 if (map__unmap_ip(map, sym->start) == tev->point.address) { in arch__post_process_probe_trace_events()
|
/kernel/linux/linux-5.10/lib/mpi/ |
H A D | ec.c | 33 /* Create a new point option. NBITS gives the size in bits of one 50 /* Release the point object P. P may be NULL. */ 60 /* Initialize the fields of a point object. gcry_mpi_point_free_parts 71 /* Release the parts of a point object. */ 681 int mpi_ec_get_affine(MPI x, MPI y, MPI_POINT point, struct mpi_ec_ctx *ctx) in mpi_ec_get_affine() argument 683 if (!mpi_cmp_ui(point->z, 0)) in mpi_ec_get_affine() 693 ec_invm(z1, point->z, ctx); /* z1 = z^(-1) mod p */ in mpi_ec_get_affine() 697 ec_mulm(x, point->x, z2, ctx); in mpi_ec_get_affine() 702 ec_mulm(y, point->y, z3, ctx); in mpi_ec_get_affine() 714 mpi_set(x, point in mpi_ec_get_affine() 756 dup_point_weierstrass(MPI_POINT result, MPI_POINT point, struct mpi_ec_ctx *ctx) dup_point_weierstrass() argument 834 dup_point_montgomery(MPI_POINT result, MPI_POINT point, struct mpi_ec_ctx *ctx) dup_point_montgomery() argument 845 dup_point_edwards(MPI_POINT result, MPI_POINT point, struct mpi_ec_ctx *ctx) dup_point_edwards() argument 918 mpi_ec_dup_point(MPI_POINT result, MPI_POINT point, struct mpi_ec_ctx *ctx) mpi_ec_dup_point() argument 1213 mpi_ec_mul_point(MPI_POINT result, MPI scalar, MPI_POINT point, struct mpi_ec_ctx *ctx) mpi_ec_mul_point() argument 1404 mpi_ec_curve_point(MPI_POINT point, struct mpi_ec_ctx *ctx) mpi_ec_curve_point() argument [all...] |
/kernel/linux/linux-6.6/lib/crypto/mpi/ |
H A D | ec.c | 33 /* Create a new point option. NBITS gives the size in bits of one 50 /* Release the point object P. P may be NULL. */ 60 /* Initialize the fields of a point object. gcry_mpi_point_free_parts 71 /* Release the parts of a point object. */ 681 int mpi_ec_get_affine(MPI x, MPI y, MPI_POINT point, struct mpi_ec_ctx *ctx) in mpi_ec_get_affine() argument 683 if (!mpi_cmp_ui(point->z, 0)) in mpi_ec_get_affine() 693 ec_invm(z1, point->z, ctx); /* z1 = z^(-1) mod p */ in mpi_ec_get_affine() 697 ec_mulm(x, point->x, z2, ctx); in mpi_ec_get_affine() 702 ec_mulm(y, point->y, z3, ctx); in mpi_ec_get_affine() 714 mpi_set(x, point in mpi_ec_get_affine() 756 dup_point_weierstrass(MPI_POINT result, MPI_POINT point, struct mpi_ec_ctx *ctx) dup_point_weierstrass() argument 834 dup_point_montgomery(MPI_POINT result, MPI_POINT point, struct mpi_ec_ctx *ctx) dup_point_montgomery() argument 845 dup_point_edwards(MPI_POINT result, MPI_POINT point, struct mpi_ec_ctx *ctx) dup_point_edwards() argument 918 mpi_ec_dup_point(MPI_POINT result, MPI_POINT point, struct mpi_ec_ctx *ctx) mpi_ec_dup_point() argument 1213 mpi_ec_mul_point(MPI_POINT result, MPI scalar, MPI_POINT point, struct mpi_ec_ctx *ctx) mpi_ec_mul_point() argument 1401 mpi_ec_curve_point(MPI_POINT point, struct mpi_ec_ctx *ctx) mpi_ec_curve_point() argument [all...] |
/kernel/linux/linux-5.10/arch/m68k/ifpsp060/ |
H A D | fskeleton.S | 58 | This is the main exit point for the 68060 Floating-Point 70 | This is the exit point for the 060FPSP when an enabled overflow exception 71 | is present. The routine below should point to the operating system handler 89 | This is the exit point for the 060FPSP when an enabled underflow exception 90 | is present. The routine below should point to the operating system handler 107 | This is the exit point for the 060FPSP when an enabled operand error exception 108 | is present. The routine below should point to the operating system handler 126 | This is the exit point for the 060FPSP when an enabled signalling NaN exception 127 | is present. The routine below should point to the operating system handler 145 | This is the exit point fo [all...] |
/kernel/linux/linux-6.6/arch/m68k/ifpsp060/ |
H A D | fskeleton.S | 58 | This is the main exit point for the 68060 Floating-Point 70 | This is the exit point for the 060FPSP when an enabled overflow exception 71 | is present. The routine below should point to the operating system handler 89 | This is the exit point for the 060FPSP when an enabled underflow exception 90 | is present. The routine below should point to the operating system handler 107 | This is the exit point for the 060FPSP when an enabled operand error exception 108 | is present. The routine below should point to the operating system handler 126 | This is the exit point for the 060FPSP when an enabled signalling NaN exception 127 | is present. The routine below should point to the operating system handler 145 | This is the exit point fo [all...] |
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | probe-event.c | 374 * symbol from map, we can translate the address back to the probe point. 437 memcpy(tmp, &pev->point, sizeof(*tmp)); in get_alternative_probe_event() 438 memset(&pev->point, 0, sizeof(pev->point)); in get_alternative_probe_event() 439 ret = find_alternative_probe_point(dinfo, tmp, &pev->point, pev->target, in get_alternative_probe_event() 442 memcpy(&pev->point, tmp, sizeof(*tmp)); in get_alternative_probe_event() 641 * Convert trace point to probe point with debuginfo 745 ret = post_process_probe_trace_point(&tevs[i].point, in post_process_offline_probe_trace_events() 770 /* point in add_exec_to_probe_trace_events() [all...] |
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | probe-event.c | 364 * symbol from map, we can translate the address back to the probe point. 427 memcpy(tmp, &pev->point, sizeof(*tmp)); in get_alternative_probe_event() 428 memset(&pev->point, 0, sizeof(pev->point)); in get_alternative_probe_event() 429 ret = find_alternative_probe_point(dinfo, tmp, &pev->point, pev->target, in get_alternative_probe_event() 432 memcpy(&pev->point, tmp, sizeof(*tmp)); in get_alternative_probe_event() 631 * Convert trace point to probe point with debuginfo 731 ret = post_process_probe_trace_point(&tevs[i].point, in post_process_offline_probe_trace_events() 756 /* point in add_exec_to_probe_trace_events() [all...] |
/kernel/linux/linux-6.6/kernel/trace/ |
H A D | trace_preemptirq.c | 27 #define trace(point) trace_##point 29 #define trace(point) if (!in_nmi()) trace_##point##_rcuidle
|
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/dispnv50/ |
H A D | cursc37a.c | 44 NVVAL(NVC37A, SET_CURSOR_HOT_SPOT_POINT_OUT, X, asyw->point.x) | in cursc37a_point() 45 NVVAL(NVC37A, SET_CURSOR_HOT_SPOT_POINT_OUT, Y, asyw->point.y)); in cursc37a_point() 52 .point = cursc37a_point,
|
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/dispnv50/ |
H A D | cursc37a.c | 44 NVVAL(NVC37A, SET_CURSOR_HOT_SPOT_POINT_OUT, X, asyw->point.x) | in cursc37a_point() 45 NVVAL(NVC37A, SET_CURSOR_HOT_SPOT_POINT_OUT, Y, asyw->point.y)); in cursc37a_point() 52 .point = cursc37a_point,
|
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath5k/ |
H A D | eeprom.c | 720 u8 pier, point, idx; in ath5k_eeprom_convert_pcal_info_5111() local 772 for (point = 0; point < pd->pd_points; point++) { in ath5k_eeprom_convert_pcal_info_5111() 775 pd->pd_pwr[point] = 2 * pcinfo->pwr[point]; in ath5k_eeprom_convert_pcal_info_5111() 778 pd->pd_step[point] = pcinfo->pcdac[point]; in ath5k_eeprom_convert_pcal_info_5111() 911 unsigned int pier, pdg, point; in ath5k_eeprom_convert_pcal_info_5112() local 936 /* One more point fo in ath5k_eeprom_convert_pcal_info_5112() 1203 unsigned int pier, pdg, point; ath5k_eeprom_convert_pcal_info_2413() local [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath5k/ |
H A D | eeprom.c | 720 u8 pier, point, idx; in ath5k_eeprom_convert_pcal_info_5111() local 772 for (point = 0; point < pd->pd_points; point++) { in ath5k_eeprom_convert_pcal_info_5111() 775 pd->pd_pwr[point] = 2 * pcinfo->pwr[point]; in ath5k_eeprom_convert_pcal_info_5111() 778 pd->pd_step[point] = pcinfo->pcdac[point]; in ath5k_eeprom_convert_pcal_info_5111() 911 unsigned int pier, pdg, point; in ath5k_eeprom_convert_pcal_info_5112() local 936 /* One more point fo in ath5k_eeprom_convert_pcal_info_5112() 1203 unsigned int pier, pdg, point; ath5k_eeprom_convert_pcal_info_2413() local [all...] |
/kernel/linux/linux-5.10/arch/m68k/fpsp040/ |
H A D | slog2.S | 4 | The entry point slog10 computes the base-10 13 | OUTPUT: log_10(X) or log_2(X) returned in floating-point 34 | Notes: Default means round-to-nearest mode, no floating-point 49 | Notes: Default means round-to-nearest mode, no floating-point 63 | Notes: Default means round-to-nearest mode, no floating-point 78 | Notes: Default means round-to-nearest mode, no floating-point 117 |--entry point for Log10(X), X is denormalized 129 |--entry point for Log10(X), X is normalized 143 |--entry point for Log2(X), X is denormalized 156 |--entry point fo [all...] |
/kernel/linux/linux-6.6/arch/m68k/fpsp040/ |
H A D | slog2.S | 4 | The entry point slog10 computes the base-10 13 | OUTPUT: log_10(X) or log_2(X) returned in floating-point 34 | Notes: Default means round-to-nearest mode, no floating-point 49 | Notes: Default means round-to-nearest mode, no floating-point 63 | Notes: Default means round-to-nearest mode, no floating-point 78 | Notes: Default means round-to-nearest mode, no floating-point 117 |--entry point for Log10(X), X is denormalized 129 |--entry point for Log10(X), X is normalized 143 |--entry point for Log2(X), X is denormalized 156 |--entry point fo [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/ |
H A D | drm_syncobj.c | 50 * - Signal a given point on the timeline 51 * - Wait for a given point to appear and/or be signaled 52 * - Import and export from/to a given point of a timeline 66 * enqueued in a DRM driver to signal the a given point of the syncobj, a new 79 * - The struct &dma_fence associated with a given point if the syncobj is 94 * terms of a u64 value referring to point in the timeline. See 95 * dma_fence_chain_find_seqno() to see how a given point is found in the 102 * timeline set of ioctl() by using a point value of 0, this will reproduce 178 * &dma_fence_chain of a syncobj at a given u64 point to another u64 point 208 u64 point; global() member 285 drm_syncobj_add_point(struct drm_syncobj *syncobj, struct dma_fence_chain *chain, struct dma_fence *fence, uint64_t point) drm_syncobj_add_point() argument 378 drm_syncobj_find_fence(struct drm_file *file_private, u32 handle, u64 point, u64 flags, struct dma_fence **fence) drm_syncobj_find_fence() argument 1444 uint64_t point; drm_syncobj_query_ioctl() local [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/modules/color/ |
H A D | color_gamma.c | 41 * the same number of points (NUM_PTS_IN_REGION) and in each region every point 591 struct gamma_point *point; in build_custom_gamma_mapping_coefficients_worker() local 621 point = &coeff[i].r; in build_custom_gamma_mapping_coefficients_worker() 626 point = &coeff[i].g; in build_custom_gamma_mapping_coefficients_worker() 631 point = &coeff[i].b; in build_custom_gamma_mapping_coefficients_worker() 638 point->coeff = dc_fixpt_div( in build_custom_gamma_mapping_coefficients_worker() 646 point->coeff = dc_fixpt_zero; in build_custom_gamma_mapping_coefficients_worker() 648 point->coeff = dc_fixpt_from_int(2); in build_custom_gamma_mapping_coefficients_worker() 654 point->left_index = index_left; in build_custom_gamma_mapping_coefficients_worker() 655 point in build_custom_gamma_mapping_coefficients_worker() 670 const struct gamma_point *point; calculate_mapped_value() local [all...] |