Searched refs:cmp (Results 1 – 5 of 5) sorted by relevance
/kernel/power/ |
D | swap.c | 536 unsigned char cmp[LZO_CMP_SIZE]; /* compressed buffer */ member 560 d->cmp + LZO_HEADER, &d->cmp_len, in lzo_compress_threadfn() 735 *(size_t *)data[thr].cmp = data[thr].cmp_len; in save_image_lzo() 748 memcpy(page, data[thr].cmp + off, PAGE_SIZE); in save_image_lzo() 1025 unsigned char cmp[LZO_CMP_SIZE]; /* compressed buffer */ member 1048 d->ret = lzo1x_decompress_safe(d->cmp + LZO_HEADER, d->cmp_len, in lzo_decompress_threadfn() 1267 memcpy(data[thr].cmp + off, in load_image_lzo()
|
/kernel/trace/ |
D | trace_stat.c | 76 static int insert_stat(struct rb_root *root, void *stat, cmp_stat_t cmp) in insert_stat() argument 95 result = cmp(data->stat, this->stat); in insert_stat()
|
D | trace_events_filter.c | 202 int cmp, match; in filter_pred_string() local 204 cmp = pred->regex.match(addr, &pred->regex, pred->regex.field_len); in filter_pred_string() 206 match = cmp ^ pred->not; in filter_pred_string() 215 int cmp, match; in filter_pred_pchar() local 218 cmp = pred->regex.match(*addr, &pred->regex, len); in filter_pred_pchar() 220 match = cmp ^ pred->not; in filter_pred_pchar() 241 int cmp, match; in filter_pred_strloc() local 243 cmp = pred->regex.match(addr, &pred->regex, str_len); in filter_pred_strloc() 245 match = cmp ^ pred->not; in filter_pred_strloc()
|
D | trace.c | 3544 static int set_tracer_option(struct trace_array *tr, char *cmp, int neg) in set_tracer_option() argument 3554 if (strcmp(cmp, opts->name) == 0) in set_tracer_option() 3604 char *cmp; in trace_set_options() local 3609 cmp = strstrip(option); in trace_set_options() 3611 if (strncmp(cmp, "no", 2) == 0) { in trace_set_options() 3613 cmp += 2; in trace_set_options() 3619 if (strcmp(cmp, trace_options[i]) == 0) { in trace_set_options() 3627 ret = set_tracer_option(tr, cmp, neg); in trace_set_options()
|
/kernel/sched/ |
D | core.c | 200 static int sched_feat_set(char *cmp) in sched_feat_set() argument 205 if (strncmp(cmp, "NO_", 3) == 0) { in sched_feat_set() 207 cmp += 3; in sched_feat_set() 211 if (strcmp(cmp, sched_feat_names[i]) == 0) { in sched_feat_set() 231 char *cmp; in sched_feat_write() local 242 cmp = strstrip(buf); in sched_feat_write() 247 i = sched_feat_set(cmp); in sched_feat_write()
|