Home
last modified time | relevance | path

Searched refs:cmp (Results 1 – 8 of 8) sorted by relevance

/kernel/trace/
Dtrace_events_filter.c748 int cmp, match; in filter_pred_string() local
750 cmp = pred->regex.match(addr, &pred->regex, pred->regex.field_len); in filter_pred_string()
752 match = cmp ^ pred->not; in filter_pred_string()
759 int cmp, match; in filter_pchar() local
763 cmp = pred->regex.match(str, &pred->regex, len); in filter_pchar()
765 match = cmp ^ pred->not; in filter_pchar()
811 int cmp, match; in filter_pred_strloc() local
813 cmp = pred->regex.match(addr, &pred->regex, str_len); in filter_pred_strloc()
815 match = cmp ^ pred->not; in filter_pred_strloc()
834 int cmp, match; in filter_pred_strrelloc() local
[all …]
Dtrace_stat.c75 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()
Dtrace.c5328 static int set_tracer_option(struct trace_array *tr, char *cmp, int neg) in set_tracer_option() argument
5338 if (strcmp(cmp, opts->name) == 0) in set_tracer_option()
5424 char *cmp; in trace_set_options() local
5430 cmp = strstrip(option); in trace_set_options()
5432 len = str_has_prefix(cmp, "no"); in trace_set_options()
5436 cmp += len; in trace_set_options()
5441 ret = match_string(trace_options, -1, cmp); in trace_set_options()
5444 ret = set_tracer_option(tr, cmp, neg); in trace_set_options()
/kernel/kcsan/
Dreport.c425 int cmp; in print_report() local
431 cmp = sym_strcmp((void *)other_frame, (void *)this_frame); in print_report()
434 (void *)(cmp < 0 ? other_frame : this_frame), in print_report()
435 (void *)(cmp < 0 ? this_frame : other_frame)); in print_report()
Dkcsan_test.c184 int cmp; in __report_matches() local
189 cmp = strcmp(tmp[0], tmp[1]); in __report_matches()
191 cmp < 0 ? r->access[0].fn : r->access[1].fn, in __report_matches()
192 cmp < 0 ? r->access[1].fn : r->access[0].fn); in __report_matches()
/kernel/sched/
Ddebug.c100 static int sched_feat_set(char *cmp) in sched_feat_set() argument
105 if (strncmp(cmp, "NO_", 3) == 0) { in sched_feat_set()
107 cmp += 3; in sched_feat_set()
110 i = match_string(sched_feat_names, __SCHED_FEAT_NR, cmp); in sched_feat_set()
130 char *cmp; in sched_feat_write() local
141 cmp = strstrip(buf); in sched_feat_write()
147 ret = sched_feat_set(cmp); in sched_feat_write()
/kernel/power/
Dswap.c647 unsigned char cmp[LZO_CMP_SIZE]; /* compressed buffer */ member
671 d->cmp + LZO_HEADER, &d->cmp_len, in lzo_compress_threadfn()
839 *(size_t *)data[thr].cmp = data[thr].cmp_len; in save_image_lzo()
852 memcpy(page, data[thr].cmp + off, PAGE_SIZE); in save_image_lzo()
1132 unsigned char cmp[LZO_CMP_SIZE]; /* compressed buffer */ member
1155 d->ret = lzo1x_decompress_safe(d->cmp + LZO_HEADER, d->cmp_len, in lzo_decompress_threadfn()
1374 memcpy(data[thr].cmp + off, in load_image_lzo()
/kernel/futex/
Dwaitwake.c196 unsigned int cmp = (encoded_op & 0x0f000000) >> 24; in futex_atomic_op_inuser() local
221 switch (cmp) { in futex_atomic_op_inuser()