Searched refs:cmp (Results 1 – 6 of 6) sorted by relevance
/kernel/trace/ |
D | trace_events_filter.c | 661 int cmp, match; in filter_pred_string() local 663 cmp = pred->regex.match(addr, &pred->regex, pred->regex.field_len); in filter_pred_string() 665 match = cmp ^ pred->not; in filter_pred_string() 674 int cmp, match; in filter_pred_pchar() local 677 cmp = pred->regex.match(*addr, &pred->regex, len); in filter_pred_pchar() 679 match = cmp ^ pred->not; in filter_pred_pchar() 700 int cmp, match; in filter_pred_strloc() local 702 cmp = pred->regex.match(addr, &pred->regex, str_len); in filter_pred_strloc() 704 match = cmp ^ pred->not; in filter_pred_strloc() 712 int cpu, cmp; in filter_pred_cpu() local [all …]
|
D | trace_stat.c | 77 static int insert_stat(struct rb_root *root, void *stat, cmp_stat_t cmp) in insert_stat() argument 96 result = cmp(data->stat, this->stat); in insert_stat()
|
D | trace.c | 4571 static int set_tracer_option(struct trace_array *tr, char *cmp, int neg) in set_tracer_option() argument 4581 if (strcmp(cmp, opts->name) == 0) in set_tracer_option() 4656 char *cmp; in trace_set_options() local 4662 cmp = strstrip(option); in trace_set_options() 4664 len = str_has_prefix(cmp, "no"); in trace_set_options() 4668 cmp += len; in trace_set_options() 4673 ret = match_string(trace_options, -1, cmp); in trace_set_options() 4676 ret = set_tracer_option(tr, cmp, neg); in trace_set_options()
|
/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 | 628 unsigned char cmp[LZO_CMP_SIZE]; /* compressed buffer */ member 652 d->cmp + LZO_HEADER, &d->cmp_len, in lzo_compress_threadfn() 823 *(size_t *)data[thr].cmp = data[thr].cmp_len; in save_image_lzo() 836 memcpy(page, data[thr].cmp + off, PAGE_SIZE); in save_image_lzo() 1113 unsigned char cmp[LZO_CMP_SIZE]; /* compressed buffer */ member 1136 d->ret = lzo1x_decompress_safe(d->cmp + LZO_HEADER, d->cmp_len, in lzo_decompress_threadfn() 1358 memcpy(data[thr].cmp + off, in load_image_lzo()
|
/kernel/ |
D | futex.c | 1706 unsigned int cmp = (encoded_op & 0x0f000000) >> 24; in futex_atomic_op_inuser() local 1732 switch (cmp) { in futex_atomic_op_inuser()
|