Searched refs:cmp (Results 1 – 8 of 8) sorted by relevance
/kernel/trace/ |
D | trace_events_filter.c | 708 int cmp, match; in filter_pred_string() local 710 cmp = pred->regex.match(addr, &pred->regex, pred->regex.field_len); in filter_pred_string() 712 match = cmp ^ pred->not; in filter_pred_string() 719 int cmp, match; in filter_pchar() local 723 cmp = pred->regex.match(str, &pred->regex, len); in filter_pchar() 725 match = cmp ^ pred->not; in filter_pchar() 771 int cmp, match; in filter_pred_strloc() local 773 cmp = pred->regex.match(addr, &pred->regex, str_len); in filter_pred_strloc() 775 match = cmp ^ pred->not; in filter_pred_strloc() 783 int cpu, cmp; in filter_pred_cpu() local [all …]
|
D | trace_stat.c | 75 static int insert_stat(struct rb_root *root, void *stat, cmp_func_t cmp) in insert_stat() argument 94 result = cmp(data->stat, this->stat); in insert_stat()
|
D | trace.c | 5315 static int set_tracer_option(struct trace_array *tr, char *cmp, int neg) in set_tracer_option() argument 5325 if (strcmp(cmp, opts->name) == 0) in set_tracer_option() 5411 char *cmp; in trace_set_options() local 5417 cmp = strstrip(option); in trace_set_options() 5419 len = str_has_prefix(cmp, "no"); in trace_set_options() 5423 cmp += len; in trace_set_options() 5428 ret = match_string(trace_options, -1, cmp); in trace_set_options() 5431 ret = set_tracer_option(tr, cmp, neg); in trace_set_options()
|
/kernel/kcsan/ |
D | report.c | 362 int cmp; in print_report() local 368 cmp = sym_strcmp((void *)other_frame, (void *)this_frame); in print_report() 371 (void *)(cmp < 0 ? other_frame : this_frame), in print_report() 372 (void *)(cmp < 0 ? this_frame : other_frame)); in print_report()
|
D | kcsan_test.c | 176 int cmp; in report_matches() local 181 cmp = strcmp(tmp[0], tmp[1]); in report_matches() 183 cmp < 0 ? r->access[0].fn : r->access[1].fn, in report_matches() 184 cmp < 0 ? r->access[1].fn : r->access[0].fn); in report_matches()
|
/kernel/sched/ |
D | debug.c | 101 static int sched_feat_set(char *cmp) in sched_feat_set() argument 106 if (strncmp(cmp, "NO_", 3) == 0) { in sched_feat_set() 108 cmp += 3; in sched_feat_set() 111 i = match_string(sched_feat_names, __SCHED_FEAT_NR, cmp); in sched_feat_set() 131 char *cmp; in sched_feat_write() local 142 cmp = strstrip(buf); in sched_feat_write() 148 ret = sched_feat_set(cmp); in sched_feat_write()
|
/kernel/power/ |
D | swap.c | 645 unsigned char cmp[LZO_CMP_SIZE]; /* compressed buffer */ member 669 d->cmp + LZO_HEADER, &d->cmp_len, in lzo_compress_threadfn() 840 *(size_t *)data[thr].cmp = data[thr].cmp_len; in save_image_lzo() 853 memcpy(page, data[thr].cmp + off, PAGE_SIZE); in save_image_lzo() 1133 unsigned char cmp[LZO_CMP_SIZE]; /* compressed buffer */ member 1156 d->ret = lzo1x_decompress_safe(d->cmp + LZO_HEADER, d->cmp_len, in lzo_decompress_threadfn() 1378 memcpy(data[thr].cmp + off, in load_image_lzo()
|
/kernel/futex/ |
D | core.c | 1714 unsigned int cmp = (encoded_op & 0x0f000000) >> 24; in futex_atomic_op_inuser() local 1739 switch (cmp) { in futex_atomic_op_inuser()
|