Searched refs:term (Results 1 - 200 of 221) sorted by relevance

12

/linux-4.4.14/tools/perf/util/
H A Dparse-events.y67 %type <term> event_term
91 struct parse_events_term *term;
239 struct parse_events_term *term;
243 ABORT_ON(parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_USER,
245 list_add_tail(&term->list, head);
257 struct parse_events_term *term;
263 ABORT_ON(parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_USER,
265 list_add_tail(&term->list, head);
489 struct parse_events_term *term = $3;
492 list_add_tail(&term->list, head);
499 struct parse_events_term *term = $1;
503 list_add_tail(&term->list, head);
510 struct parse_events_term *term;
512 ABORT_ON(parse_events_term__str(&term, PARSE_EVENTS__TERM_TYPE_USER,
514 $$ = term;
519 struct parse_events_term *term;
521 ABORT_ON(parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_USER,
523 $$ = term;
528 struct parse_events_term *term;
531 ABORT_ON(parse_events_term__sym_hw(&term, $1, config));
532 $$ = term;
537 struct parse_events_term *term;
539 ABORT_ON(parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_USER,
541 $$ = term;
546 struct parse_events_term *term;
549 ABORT_ON(parse_events_term__sym_hw(&term, NULL, config));
550 $$ = term;
555 struct parse_events_term *term;
557 ABORT_ON(parse_events_term__str(&term, (int)$1, NULL, $3, &@1, &@3));
558 $$ = term;
563 struct parse_events_term *term;
565 ABORT_ON(parse_events_term__num(&term, (int)$1, NULL, $3, &@1, &@3));
566 $$ = term;
571 struct parse_events_term *term;
573 ABORT_ON(parse_events_term__num(&term, (int)$1, NULL, 1, &@1, NULL));
574 $$ = term;
H A Dpmu.c350 struct parse_events_term *term, *cloned; pmu_alias_terms() local
354 list_for_each_entry(term, &alias->terms, list) { pmu_alias_terms()
355 ret = parse_events_term__clone(&cloned, term); pmu_alias_terms()
602 * Term is a string term, and might be a param-term. Try to look up it's value
604 * - We have a term like "base-or-format-term=param-term",
605 * - We need to find the value supplied for "param-term" (with param-term named
606 * in a config string) later on in the term list.
608 static int pmu_resolve_param_term(struct parse_events_term *term, pmu_resolve_param_term() argument
616 if (!strcmp(t->config, term->config)) { list_for_each_entry()
625 printf("Required parameter '%s' not specified\n", term->config);
654 * user input data - term parameter.
658 struct parse_events_term *term, pmu_config_term()
670 if (term->used) pmu_config_term()
677 if (parse_events__is_hardcoded_term(term)) pmu_config_term()
680 format = pmu_find_format(formats, term->config); pmu_config_term()
683 printf("Invalid event/parameter '%s'\n", term->config); pmu_config_term()
687 err->idx = term->err_term; pmu_config_term()
688 err->str = strdup("unknown term"); pmu_config_term()
710 * Either directly use a numeric term, or try to translate string terms pmu_config_term()
713 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM) pmu_config_term()
714 val = term->val.num; pmu_config_term()
715 else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) { pmu_config_term()
716 if (strcmp(term->val.str, "?")) { pmu_config_term()
719 term->config, term->val.str); pmu_config_term()
722 err->idx = term->err_val; pmu_config_term()
728 if (pmu_resolve_param_term(term, head_terms, &val)) pmu_config_term()
736 err->idx = term->err_val; pmu_config_term()
758 struct parse_events_term *term; perf_pmu__config_terms() local
760 list_for_each_entry(term, head_terms, list) { list_for_each_entry()
761 if (pmu_config_term(formats, attr, term, head_terms, list_for_each_entry()
786 struct parse_events_term *term) pmu_find_alias()
791 if (parse_events__is_hardcoded_term(term)) pmu_find_alias()
794 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM) { pmu_find_alias()
795 if (term->val.num != 1) pmu_find_alias()
797 if (pmu_find_format(&pmu->format, term->config)) pmu_find_alias()
799 name = term->config; pmu_find_alias()
800 } else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) { pmu_find_alias()
801 if (strcasecmp(term->config, "event")) pmu_find_alias()
803 name = term->val.str; pmu_find_alias()
820 * Only one term in event definition can check_info_data()
848 struct parse_events_term *term, *h; perf_pmu__check_alias() local
862 list_for_each_entry_safe(term, h, head_terms, list) { list_for_each_entry_safe()
863 alias = pmu_find_alias(pmu, term); list_for_each_entry_safe()
866 ret = pmu_alias_terms(alias, &term->list); list_for_each_entry_safe()
877 list_del(&term->list); list_for_each_entry_safe()
878 free(term); list_for_each_entry_safe()
934 struct parse_events_term *term; format_alias() local
937 list_for_each_entry(term, &alias->terms, list) { format_alias()
938 if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) format_alias()
940 ",%s=%s", term->config, format_alias()
941 term->val.str); format_alias()
656 pmu_config_term(struct list_head *formats, struct perf_event_attr *attr, struct parse_events_term *term, struct list_head *head_terms, bool zero, struct parse_events_error *err) pmu_config_term() argument
785 pmu_find_alias(struct perf_pmu *pmu, struct parse_events_term *term) pmu_find_alias() argument
H A Dparse-events.c732 static int check_type_val(struct parse_events_term *term, check_type_val() argument
736 if (type == term->type_val) check_type_val()
740 err->idx = term->err_val; check_type_val()
750 struct parse_events_term *term,
754 struct parse_events_term *term, config_term_common()
759 if (check_type_val(term, err, PARSE_EVENTS__TERM_TYPE_ ## type)) \ config_term_common()
763 switch (term->type_term) { config_term_common()
766 attr->config = term->val.num; config_term_common()
770 attr->config1 = term->val.num; config_term_common()
774 attr->config2 = term->val.num; config_term_common()
785 * attr->branch_sample_type = term->val.num; config_term_common()
790 if (term->val.num > 1) { config_term_common()
792 err->idx = term->err_val; config_term_common()
812 err->str = strdup("unknown term"); config_term_common()
813 err->idx = term->err_term; config_term_common()
823 struct parse_events_term *term, config_term_pmu()
826 if (term->type_term == PARSE_EVENTS__TERM_TYPE_USER) config_term_pmu()
833 return config_term_common(attr, term, err); config_term_pmu()
837 struct parse_events_term *term, config_term_tracepoint()
840 switch (term->type_term) { config_term_tracepoint()
845 return config_term_common(attr, term, err); config_term_tracepoint()
848 err->idx = term->err_term; config_term_tracepoint()
849 err->str = strdup("unknown term"); config_term_tracepoint()
863 struct parse_events_term *term; config_attr() local
865 list_for_each_entry(term, head, list) config_attr()
866 if (config_term(attr, term, err)) config_attr()
889 struct parse_events_term *term; get_config_terms() local
891 list_for_each_entry(term, head_config, list) { list_for_each_entry()
892 switch (term->type_term) { list_for_each_entry()
894 ADD_CONFIG_TERM(PERIOD, period, term->val.num); list_for_each_entry()
897 ADD_CONFIG_TERM(FREQ, freq, term->val.num); list_for_each_entry()
900 ADD_CONFIG_TERM(TIME, time, term->val.num); list_for_each_entry()
903 ADD_CONFIG_TERM(CALLGRAPH, callgraph, term->val.str); list_for_each_entry()
906 ADD_CONFIG_TERM(STACK_USER, stack_user, term->val.num); list_for_each_entry()
909 ADD_CONFIG_TERM(INHERIT, inherit, term->val.num ? 1 : 0); list_for_each_entry()
912 ADD_CONFIG_TERM(INHERIT, inherit, term->val.num ? 0 : 1); list_for_each_entry()
967 static int parse_events__is_name_term(struct parse_events_term *term) parse_events__is_name_term() argument
969 return term->type_term == PARSE_EVENTS__TERM_TYPE_NAME; parse_events__is_name_term()
974 struct parse_events_term *term; pmu_event_name() local
976 list_for_each_entry(term, head_terms, list) pmu_event_name()
977 if (parse_events__is_name_term(term)) pmu_event_name()
978 return term->val.str; pmu_event_name()
1980 int parse_events__is_hardcoded_term(struct parse_events_term *term) parse_events__is_hardcoded_term() argument
1982 return term->type_term != PARSE_EVENTS__TERM_TYPE_USER; parse_events__is_hardcoded_term()
1989 struct parse_events_term *term; new_term() local
1991 term = zalloc(sizeof(*term)); new_term()
1992 if (!term) new_term()
1995 INIT_LIST_HEAD(&term->list); new_term()
1996 term->type_val = type_val; new_term()
1997 term->type_term = type_term; new_term()
1998 term->config = config; new_term()
1999 term->err_term = err_term; new_term()
2000 term->err_val = err_val; new_term()
2004 term->val.num = num; new_term()
2007 term->val.str = str; new_term()
2010 free(term); new_term()
2014 *_term = term; new_term()
2018 int parse_events_term__num(struct parse_events_term **term, parse_events_term__num() argument
2025 return new_term(term, PARSE_EVENTS__TERM_TYPE_NUM, type_term, parse_events_term__num()
2031 int parse_events_term__str(struct parse_events_term **term, parse_events_term__str() argument
2038 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR, type_term, parse_events_term__str()
2044 int parse_events_term__sym_hw(struct parse_events_term **term, parse_events_term__sym_hw() argument
2053 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR, parse_events_term__sym_hw()
2057 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR, parse_events_term__sym_hw()
2064 struct parse_events_term *term) parse_events_term__clone()
2066 return new_term(new, term->type_val, term->type_term, term->config, parse_events_term__clone()
2067 term->val.str, term->val.num, parse_events_term__clone()
2068 term->err_term, term->err_val); parse_events_term__clone()
2073 struct parse_events_term *term, *h; parse_events__free_terms() local
2075 list_for_each_entry_safe(term, h, terms, list) parse_events__free_terms()
2076 free(term); parse_events__free_terms()
753 config_term_common(struct perf_event_attr *attr, struct parse_events_term *term, struct parse_events_error *err) config_term_common() argument
822 config_term_pmu(struct perf_event_attr *attr, struct parse_events_term *term, struct parse_events_error *err) config_term_pmu() argument
836 config_term_tracepoint(struct perf_event_attr *attr, struct parse_events_term *term, struct parse_events_error *err) config_term_tracepoint() argument
2063 parse_events_term__clone(struct parse_events_term **new, struct parse_events_term *term) parse_events_term__clone() argument
H A Dparse-events.h107 int parse_events__is_hardcoded_term(struct parse_events_term *term);
108 int parse_events_term__num(struct parse_events_term **term,
111 int parse_events_term__str(struct parse_events_term **term,
114 int parse_events_term__sym_hw(struct parse_events_term **term,
117 struct parse_events_term *term);
H A Dcolor.c28 char *term = getenv("TERM"); perf_config_colorbool() local
29 if (term && strcmp(term, "dumb")) perf_config_colorbool()
H A Devsel.c624 struct perf_evsel_config_term *term; apply_config_terms() local
634 list_for_each_entry(term, config_terms, list) { list_for_each_entry()
635 switch (term->type) { list_for_each_entry()
637 attr->sample_period = term->val.period; list_for_each_entry()
641 attr->sample_freq = term->val.freq; list_for_each_entry()
645 if (term->val.time) list_for_each_entry()
651 callgraph_buf = term->val.callgraph; list_for_each_entry()
654 dump_size = term->val.stack_user; list_for_each_entry()
663 attr->inherit = term->val.inherit ? 1 : 0; list_for_each_entry()
899 * Apply event specific term settings, perf_evsel__config()
1028 struct perf_evsel_config_term *term, *h; perf_evsel__free_config_terms() local
1030 list_for_each_entry_safe(term, h, &evsel->config_terms, list) { perf_evsel__free_config_terms()
1031 list_del(&term->list); perf_evsel__free_config_terms()
1032 free(term); perf_evsel__free_config_terms()
2267 const char *term = "sample_freq"; perf_evsel__fprintf() local
2270 term = "sample_period"; perf_evsel__fprintf()
2273 term, (u64)evsel->attr.sample_freq); perf_evsel__fprintf()
/linux-4.4.14/net/netfilter/
H A Dxt_repldata.h4 * 'entries' and 'term' are never anywhere referenced by word in code. In fact,
12 * struct type##_error term;
24 struct type##_error *term; \
26 __alignof__(*term) - 1) & ~(__alignof__(*term) - 1); \
27 tbl = kzalloc(term_offset + sizeof(*term), GFP_KERNEL); \
30 term = (struct type##_error *)&(((char *)tbl)[term_offset]); \
32 *term = (struct type##_error)typ2##_ERROR_INIT; \
H A Dnf_conntrack_ftp.c71 char term; member in struct:ftp_search
80 .term = '\r',
88 .term = '\r',
104 .term = ')',
112 get_ipv6_addr(const char *src, size_t dlen, struct in6_addr *dst, u_int8_t term) get_ipv6_addr() argument
115 int ret = in6_pton(src, min_t(size_t, dlen, 0xffff), (u8 *)dst, term, &end); get_ipv6_addr()
122 int array_size, char sep, char term) try_number()
139 if ((*data == term || !term) && i == array_size - 1) try_number()
154 struct nf_conntrack_man *cmd, char term, try_rfc959()
160 length = try_number(data, dlen, array, 6, ',', term); try_rfc959()
181 struct nf_conntrack_man *cmd, char term, try_rfc1123()
225 char term, unsigned int *offset) try_eprt()
273 struct nf_conntrack_man *cmd, char term, try_epsv_response()
291 char skip, char term, find_pattern()
340 *numlen = getnum(data + i, dlen - i, cmd, term, numoff); find_pattern()
463 search[dir][i].term, help()
121 try_number(const char *data, size_t dlen, u_int32_t array[], int array_size, char sep, char term) try_number() argument
153 try_rfc959(const char *data, size_t dlen, struct nf_conntrack_man *cmd, char term, unsigned int *offset) try_rfc959() argument
180 try_rfc1123(const char *data, size_t dlen, struct nf_conntrack_man *cmd, char term, unsigned int *offset) try_rfc1123() argument
224 try_eprt(const char *data, size_t dlen, struct nf_conntrack_man *cmd, char term, unsigned int *offset) try_eprt() argument
272 try_epsv_response(const char *data, size_t dlen, struct nf_conntrack_man *cmd, char term, unsigned int *offset) try_epsv_response() argument
289 find_pattern(const char *data, size_t dlen, const char *pattern, size_t plen, char skip, char term, unsigned int *numoff, unsigned int *numlen, struct nf_conntrack_man *cmd, int (*getnum)(const char *, size_t, struct nf_conntrack_man *, char, unsigned int *)) find_pattern() argument
H A Dnf_conntrack_sip.c716 * optionally stopping at the first occurrence of the term header, parse
722 enum sdp_header_types term, ct_sip_get_sdp_header()
731 thdr = &hdrs[term]; ct_sip_get_sdp_header()
744 if (term != SDP_HDR_UNSPEC && ct_sip_get_sdp_header()
776 enum sdp_header_types term, ct_sip_parse_sdp_addr()
782 ret = ct_sip_get_sdp_header(ct, dptr, dataoff, datalen, type, term, ct_sip_parse_sdp_addr()
1492 bool term; sip_help_tcp() local
1526 term = false; sip_help_tcp()
1530 term = true; sip_help_tcp()
1534 if (!term) sip_help_tcp()
719 ct_sip_get_sdp_header(const struct nf_conn *ct, const char *dptr, unsigned int dataoff, unsigned int datalen, enum sdp_header_types type, enum sdp_header_types term, unsigned int *matchoff, unsigned int *matchlen) ct_sip_get_sdp_header() argument
773 ct_sip_parse_sdp_addr(const struct nf_conn *ct, const char *dptr, unsigned int dataoff, unsigned int datalen, enum sdp_header_types type, enum sdp_header_types term, unsigned int *matchoff, unsigned int *matchlen, union nf_inet_addr *addr) ct_sip_parse_sdp_addr() argument
H A Dnf_nat_sip.c447 enum sdp_header_types term, mangle_sdp_packet()
454 if (ct_sip_get_sdp_header(ct, *dptr, sdpoff, *datalen, type, term, mangle_sdp_packet()
466 enum sdp_header_types term, nf_nat_sdp_addr()
476 sdpoff, type, term, buffer, buflen)) nf_nat_sdp_addr()
442 mangle_sdp_packet(struct sk_buff *skb, unsigned int protoff, unsigned int dataoff, const char **dptr, unsigned int *datalen, unsigned int sdpoff, enum sdp_header_types type, enum sdp_header_types term, char *buffer, int buflen) mangle_sdp_packet() argument
461 nf_nat_sdp_addr(struct sk_buff *skb, unsigned int protoff, unsigned int dataoff, const char **dptr, unsigned int *datalen, unsigned int sdpoff, enum sdp_header_types type, enum sdp_header_types term, const union nf_inet_addr *addr) nf_nat_sdp_addr() argument
/linux-4.4.14/drivers/macintosh/
H A Dwindfarm_pid.c7 * Released under the term of the GNU GPL v2.
40 /* Calculate error term */ wf_pid_run()
57 /* Calculate integral term */ wf_pid_run()
62 /* Calculate derivative term */ wf_pid_run()
95 /* Calculate error term */ wf_cpu_pid_run()
115 /* Calculate integral term */ wf_cpu_pid_run()
125 /* Calculate derivative term */ wf_cpu_pid_run()
131 /* Calculate proportional term */ wf_cpu_pid_run()
H A Dwindfarm_mpu.h6 * Released under the term of the GNU GPL v2.
H A Dwindfarm_pid.h7 * Released under the term of the GNU GPL v2.
H A Dwindfarm.h7 * Released under the term of the GNU GPL v2.
H A Dwindfarm_lm75_sensor.c7 * Released under the term of the GNU GPL v2.
H A Dwindfarm_lm87_sensor.c6 * Released under the term of the GNU GPL v2.
H A Dwindfarm_ad7417_sensor.c6 * Released under the term of the GNU GPL v2.
H A Dwindfarm_smu_controls.c7 * Released under the term of the GNU GPL v2.
H A Dwindfarm_core.c7 * Released under the term of the GNU GPL v2.
H A Dwindfarm_smu_sensors.c7 * Released under the term of the GNU GPL v2.
H A Drack-meter.c7 * Released under the term of the GNU GPL v2.
H A Dwindfarm_fcu_controls.c6 * Released under the term of the GNU GPL v2.
H A Dwindfarm_pm121.c9 * Released under the term of the GNU GPL v2.
H A Dwindfarm_pm81.c7 * Released under the term of the GNU GPL v2.
H A Dwindfarm_pm91.c7 * Released under the term of the GNU GPL v2.
H A Dsmu.c7 * Released under the term of the GNU GPL v2.
/linux-4.4.14/include/drm/
H A Ddrm_fixed.h191 s64 sum = DRM_FIXED_ONE, term, y = x;
197 term = y;
199 while (term >= tolerance) {
200 sum = sum + term;
202 term = drm_fixp_mul(term, div64_s64(y, count));
/linux-4.4.14/drivers/media/usb/uvc/
H A Duvc_driver.c222 * Stop if the current term is bigger than or equal to the given uvc_simplify_fraction()
960 struct uvc_entity *unit, *term; uvc_parse_standard_control() local
1036 term = uvc_alloc_entity(type | UVC_TERM_INPUT, buffer[3], uvc_parse_standard_control()
1038 if (term == NULL) uvc_parse_standard_control()
1041 if (UVC_ENTITY_TYPE(term) == UVC_ITT_CAMERA) { uvc_parse_standard_control()
1042 term->camera.bControlSize = n; uvc_parse_standard_control()
1043 term->camera.bmControls = (__u8 *)term + sizeof *term; uvc_parse_standard_control()
1044 term->camera.wObjectiveFocalLengthMin = uvc_parse_standard_control()
1046 term->camera.wObjectiveFocalLengthMax = uvc_parse_standard_control()
1048 term->camera.wOcularFocalLength = uvc_parse_standard_control()
1050 memcpy(term->camera.bmControls, &buffer[15], n); uvc_parse_standard_control()
1051 } else if (UVC_ENTITY_TYPE(term) == uvc_parse_standard_control()
1053 term->media.bControlSize = n; uvc_parse_standard_control()
1054 term->media.bmControls = (__u8 *)term + sizeof *term; uvc_parse_standard_control()
1055 term->media.bTransportModeSize = p; uvc_parse_standard_control()
1056 term->media.bmTransportModes = (__u8 *)term uvc_parse_standard_control()
1057 + sizeof *term + n; uvc_parse_standard_control()
1058 memcpy(term->media.bmControls, &buffer[9], n); uvc_parse_standard_control()
1059 memcpy(term->media.bmTransportModes, &buffer[10+n], p); uvc_parse_standard_control()
1063 usb_string(udev, buffer[7], term->name, uvc_parse_standard_control()
1064 sizeof term->name); uvc_parse_standard_control()
1065 else if (UVC_ENTITY_TYPE(term) == UVC_ITT_CAMERA) uvc_parse_standard_control()
1066 sprintf(term->name, "Camera %u", buffer[3]); uvc_parse_standard_control()
1067 else if (UVC_ENTITY_TYPE(term) == UVC_ITT_MEDIA_TRANSPORT_INPUT) uvc_parse_standard_control()
1068 sprintf(term->name, "Media %u", buffer[3]); uvc_parse_standard_control()
1070 sprintf(term->name, "Input %u", buffer[3]); uvc_parse_standard_control()
1072 list_add_tail(&term->list, &dev->entities); uvc_parse_standard_control()
1095 term = uvc_alloc_entity(type | UVC_TERM_OUTPUT, buffer[3], uvc_parse_standard_control()
1097 if (term == NULL) uvc_parse_standard_control()
1100 memcpy(term->baSourceID, &buffer[7], 1); uvc_parse_standard_control()
1103 usb_string(udev, buffer[8], term->name, uvc_parse_standard_control()
1104 sizeof term->name); uvc_parse_standard_control()
1106 sprintf(term->name, "Output %u", buffer[3]); uvc_parse_standard_control()
1108 list_add_tail(&term->list, &dev->entities); uvc_parse_standard_control()
1437 struct uvc_entity *term; uvc_scan_chain_backward() local
1459 term = uvc_entity_by_id(chain->dev, id); uvc_scan_chain_backward()
1460 if (term == NULL || !UVC_ENTITY_IS_ITERM(term)) { uvc_scan_chain_backward()
1468 printk(" %d", term->id); uvc_scan_chain_backward()
1470 list_add_tail(&term->chain, &chain->entities); uvc_scan_chain_backward()
1471 uvc_scan_chain_forward(chain, term, entity); uvc_scan_chain_backward()
1508 struct uvc_entity *term) uvc_scan_chain()
1514 entity = term; uvc_scan_chain()
1545 struct uvc_entity *term; uvc_print_terms() local
1549 list_for_each_entry(term, terms, chain) { list_for_each_entry()
1550 if (!UVC_ENTITY_IS_TERM(term) || list_for_each_entry()
1551 UVC_TERM_DIRECTION(term) != dir) list_for_each_entry()
1560 p += sprintf(p, "%u", term->id); list_for_each_entry()
1586 struct uvc_entity *term; uvc_scan_device() local
1588 list_for_each_entry(term, &dev->entities, list) { uvc_scan_device()
1589 if (!UVC_ENTITY_IS_OTERM(term)) uvc_scan_device()
1597 if (term->chain.next || term->chain.prev) uvc_scan_device()
1609 term->flags |= UVC_ENTITY_FLAG_DEFAULT; uvc_scan_device()
1611 if (uvc_scan_chain(chain, term) < 0) { uvc_scan_device()
1798 struct uvc_entity *term; uvc_register_terms() local
1801 list_for_each_entry(term, &chain->entities, chain) { uvc_register_terms()
1802 if (UVC_ENTITY_TYPE(term) != UVC_TT_STREAMING) uvc_register_terms()
1805 stream = uvc_stream_by_id(dev, term->id); uvc_register_terms()
1808 "for terminal %u.", term->id); uvc_register_terms()
1817 term->vdev = &stream->vdev; uvc_register_terms()
1507 uvc_scan_chain(struct uvc_video_chain *chain, struct uvc_entity *term) uvc_scan_chain() argument
H A Duvcvideo.h26 #define UVC_TERM_DIRECTION(term) ((term)->type & 0x8000)
228 /* The term 'entity' refers to both UVC units and UVC terminals.
H A Duvc_video.c590 * on unsigned integers will produce the correct result. However, the p term in
/linux-4.4.14/drivers/tty/hvc/
H A Dhvc_rtas.c84 rtascons_put_char_token = rtas_token("put-term-char"); hvc_rtas_init()
89 rtascons_get_char_token = rtas_token("get-term-char"); hvc_rtas_init()
110 rtascons_put_char_token = rtas_token("put-term-char"); hvc_rtas_console_init()
114 rtascons_get_char_token = rtas_token("get-term-char"); hvc_rtas_console_init()
H A Dhvc_vio.c72 u32 termno; /* HV term number */
H A Dhvcs.c887 /* copy the null-term char too */ hvcs_set_pi()
/linux-4.4.14/arch/x86/math-emu/
H A Dpolynom_Xsig.S103 * Now put the sum of next term and the accumulator
107 addl (%edi),%eax /* term ls long */
110 adcl (%edi),%eax /* term ls long */
113 adcl 4(%edi),%eax /* term ms long */
H A Dpoly_2xm1.c22 0x0000000000000000LL, /* This term done separately as 12 bytes */
98 mul_Xsig_Xsig(&argSignif, &hiterm); /* The leading term */ poly_2xm1()
H A Dwm_sqrt.S316 notl %eax /* Negate the correction term */
/linux-4.4.14/Documentation/watchdog/src/
H A Dwatchdog-test.c34 static void term(int sig) term() function
89 signal(SIGINT, term); main()
/linux-4.4.14/lib/reed_solomon/
H A Dencode_rs.c37 /* feedback term is non-zero */
/linux-4.4.14/include/scsi/
H A Dscsi_ioctl.h40 unsigned char host_wwn[8]; // include NULL term.
/linux-4.4.14/arch/powerpc/include/asm/
H A Dhvcserver.h38 * null-term.
48 char location_code[HVCS_CLC_LENGTH + 1]; /* CLC + 1 null-term char */
/linux-4.4.14/drivers/pwm/
H A Dpwm-ep93xx.c78 unsigned long term; ep93xx_pwm_config() local
102 term = readw(base + EP93XX_PWMx_TERM_COUNT); ep93xx_pwm_config()
105 if (period_cycles > term) { ep93xx_pwm_config()
/linux-4.4.14/drivers/scsi/arm/
H A Dpowertec.c52 * Use term=0,1,0,0,0 to turn terminators on/off.
55 static int term[MAX_ECARDS] = { 1, 1, 1, 1, 1, 1, 1, 1 }; variable
213 if (length >= 5 && strncmp(buffer, "term=", 5) == 0) { powertecscsi_set_proc_info()
330 powertecscsi_terminator_ctl(host, term[ec->slot_no]); powertecscsi_probe()
449 module_param_array(term, int, NULL, 0);
450 MODULE_PARM_DESC(term, "SCSI bus termination");
H A Dcumana_2.c70 * Use term=0,1,0,0,0 to turn terminators on/off
72 static int term[MAX_ECARDS] = { 1, 1, 1, 1, 1, 1, 1, 1 }; variable
325 if (length >= 5 && strncmp(buffer, "term=", 5) == 0) { cumanascsi_2_set_proc_info()
405 cumanascsi_2_terminator_ctl(host, term[ec->slot_no]); cumanascsi2_probe()
518 module_param_array(term, int, NULL, 0);
519 MODULE_PARM_DESC(term, "SCSI bus termination");
H A Deesox.c65 * Use term=0,1,0,0,0 to turn terminators on/off
67 static int term[MAX_ECARDS] = { 1, 1, 1, 1, 1, 1, 1, 1 }; variable
410 if (length >= 5 && strncmp(buffer, "term=", 5) == 0) { eesoxscsi_set_proc_info()
523 info->control = term[ec->slot_no] ? EESOX_TERM_ENABLE : 0; eesoxscsi_probe()
642 module_param_array(term, int, NULL, 0);
643 MODULE_PARM_DESC(term, "SCSI bus termination");
/linux-4.4.14/fs/hfsplus/
H A Dbtree.c56 * series. For Catalog (16GB to 512GB), each term is 8**(1/5) times
57 * the previous term. For Attributes (16GB to 512GB), each term is
58 * 4**(1/5) times the previous term. For 1TB to 16TB, each term is
59 * 2**(1/5) times the previous term.
H A Dpart_tbl.c11 * In function preconditions the term "valid" applied to a pointer to
/linux-4.4.14/tools/thermal/tmon/
H A Dpid.c48 * output dependency in P and D term.
95 * TODO: add low pass filter for D term
H A Dtui.c184 syslog(LOG_INFO, "no dialogue win, term too small\n"); setup_windows()
193 /* start over when term gets resized, but first we clean up */ resize_handler()
202 syslog(LOG_DEBUG, "SIG %d, term resized to %d x %d\n", resize_handler()
483 /* when term size is too small, no dialogue panels are set. handle_tui_events()
/linux-4.4.14/sound/usb/
H A Dmixer.c703 struct usb_audio_term *term) check_input_term()
708 memset(term, 0, sizeof(*term)); check_input_term()
711 term->id = id; check_input_term()
716 term->type = le16_to_cpu(d->wTerminalType); check_input_term()
717 term->channels = d->bNrChannels; check_input_term()
718 term->chconfig = le16_to_cpu(d->wChannelConfig); check_input_term()
719 term->name = d->iTerminal; check_input_term()
725 err = check_input_term(state, d->bCSourceID, term); check_input_term()
729 /* save input term properties after recursion, check_input_term()
732 term->id = id; check_input_term()
733 term->type = le16_to_cpu(d->wTerminalType); check_input_term()
734 term->channels = d->bNrChannels; check_input_term()
735 term->chconfig = le32_to_cpu(d->bmChannelConfig); check_input_term()
736 term->name = d->iTerminal; check_input_term()
747 term->type = d->bDescriptorSubtype << 16; /* virtual type */ check_input_term()
748 term->channels = uac_mixer_unit_bNrChannels(d); check_input_term()
749 term->chconfig = uac_mixer_unit_wChannelConfig(d, state->mixer->protocol); check_input_term()
750 term->name = uac_mixer_unit_iMixer(d); check_input_term()
757 err = check_input_term(state, d->baSourceID[0], term); check_input_term()
760 term->type = d->bDescriptorSubtype << 16; /* virtual type */ check_input_term()
761 term->id = id; check_input_term()
762 term->name = uac_selector_unit_iSelector(d); check_input_term()
784 term->type = d->bDescriptorSubtype << 16; /* virtual type */ check_input_term()
785 term->channels = uac_processing_unit_bNrChannels(d); check_input_term()
786 term->chconfig = uac_processing_unit_wChannelConfig(d, state->mixer->protocol); check_input_term()
787 term->name = uac_processing_unit_iProcessing(d, state->mixer->protocol); check_input_term()
792 term->type = d->bDescriptorSubtype << 16; /* virtual type */ check_input_term()
793 term->id = id; check_input_term()
794 term->name = d->iClockSource; check_input_term()
702 check_input_term(struct mixer_build *state, int id, struct usb_audio_term *term) check_input_term() argument
H A Dstream.c454 struct uac2_input_terminal_descriptor *term = NULL; snd_usb_find_input_terminal_descriptor() local
456 while ((term = snd_usb_find_csint_desc(ctrl_iface->extra, snd_usb_find_input_terminal_descriptor()
458 term, UAC_INPUT_TERMINAL))) { snd_usb_find_input_terminal_descriptor()
459 if (term->bTerminalID == terminal_id) snd_usb_find_input_terminal_descriptor()
460 return term; snd_usb_find_input_terminal_descriptor()
470 struct uac2_output_terminal_descriptor *term = NULL; snd_usb_find_output_terminal_descriptor() local
472 while ((term = snd_usb_find_csint_desc(ctrl_iface->extra, snd_usb_find_output_terminal_descriptor()
474 term, UAC_OUTPUT_TERMINAL))) { snd_usb_find_output_terminal_descriptor()
475 if (term->bTerminalID == terminal_id) snd_usb_find_output_terminal_descriptor()
476 return term; snd_usb_find_output_terminal_descriptor()
/linux-4.4.14/drivers/acpi/acpica/
H A Dutnonansi.c172 u8 term = 0; acpi_ut_strtoul64() local
243 term = 1; acpi_ut_strtoul64()
252 term = 1; acpi_ut_strtoul64()
256 if (term) { acpi_ut_strtoul64()
/linux-4.4.14/fs/proc/
H A Dself.c29 /* 11 for max length of signed int in decimal + NULL term */ proc_self_follow_link()
/linux-4.4.14/include/drm/bridge/
H A Ddw_hdmi.h46 u16 term; /*transmission termination value*/ member in struct:dw_hdmi_phy_config
/linux-4.4.14/drivers/net/wireless/cw1200/
H A Dbh.c426 int rx, tx, term, suspend; cw1200_bh() local
462 term = atomic_xchg(&priv->bh_term, 0); cw1200_bh()
465 (rx || tx || term || suspend || priv->bh_error); cw1200_bh()
468 pr_debug("[BH] - rx: %d, tx: %d, term: %d, bh_err: %d, suspend: %d, status: %ld\n", cw1200_bh()
469 rx, tx, term, suspend, priv->bh_error, status); cw1200_bh()
473 term || priv->bh_error) { cw1200_bh()
613 if (!term) { cw1200_bh()
/linux-4.4.14/tools/perf/tests/
H A Dparse-events.c564 struct parse_events_term *term; test__checkterms_simple() local
567 term = list_entry(terms->next, struct parse_events_term, list); test__checkterms_simple()
568 TEST_ASSERT_VAL("wrong type term", test__checkterms_simple()
569 term->type_term == PARSE_EVENTS__TERM_TYPE_CONFIG); test__checkterms_simple()
571 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM); test__checkterms_simple()
572 TEST_ASSERT_VAL("wrong val", term->val.num == 10); test__checkterms_simple()
573 TEST_ASSERT_VAL("wrong config", !term->config); test__checkterms_simple()
576 term = list_entry(term->list.next, struct parse_events_term, list); test__checkterms_simple()
577 TEST_ASSERT_VAL("wrong type term", test__checkterms_simple()
578 term->type_term == PARSE_EVENTS__TERM_TYPE_CONFIG1); test__checkterms_simple()
580 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM); test__checkterms_simple()
581 TEST_ASSERT_VAL("wrong val", term->val.num == 1); test__checkterms_simple()
582 TEST_ASSERT_VAL("wrong config", !term->config); test__checkterms_simple()
585 term = list_entry(term->list.next, struct parse_events_term, list); test__checkterms_simple()
586 TEST_ASSERT_VAL("wrong type term", test__checkterms_simple()
587 term->type_term == PARSE_EVENTS__TERM_TYPE_CONFIG2); test__checkterms_simple()
589 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM); test__checkterms_simple()
590 TEST_ASSERT_VAL("wrong val", term->val.num == 3); test__checkterms_simple()
591 TEST_ASSERT_VAL("wrong config", !term->config); test__checkterms_simple()
594 term = list_entry(term->list.next, struct parse_events_term, list); test__checkterms_simple()
595 TEST_ASSERT_VAL("wrong type term", test__checkterms_simple()
596 term->type_term == PARSE_EVENTS__TERM_TYPE_USER); test__checkterms_simple()
598 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM); test__checkterms_simple()
599 TEST_ASSERT_VAL("wrong val", term->val.num == 1); test__checkterms_simple()
600 TEST_ASSERT_VAL("wrong config", !strcmp(term->config, "umask")); test__checkterms_simple()
/linux-4.4.14/include/linux/netfilter/
H A Dnf_conntrack_sip.h136 enum sdp_header_types term,
195 enum sdp_header_types term,
/linux-4.4.14/drivers/net/wireless/zd1211rw/
H A Dzd_mac.h45 * The term zd-rate is used for the combination of the modulation type flag
56 * codeing for the 1 and 2 MBit/s rate. We stay with the term here to remain
57 * consistent with uses the term at other places.
276 * rate to stay consistent with Zydas and our use of the term.
/linux-4.4.14/arch/sh/lib64/
H A Dmemset.S73 !!! alloco r25, 32 // QQQ comment out for short-term fix to SHUK #3895.
/linux-4.4.14/drivers/thermal/
H A Dpower_allocator.c65 * Used to calculate the derivative term.
183 * proportional term when we are overshooting, k_pu is the
184 * proportional term when we are undershooting. integral_cutoff is a
215 /* Calculate the proportional term */ pid_controller()
219 * Calculate the integral term pid_controller()
236 * Calculate the derivative term pid_controller()
/linux-4.4.14/drivers/tty/serial/
H A Dbfin_sport_uart.h12 * This driver and the hardware supported are in term of EE-191 of ADI.
H A Dbfin_sport_uart.c12 * This driver and the hardware supported are in term of EE-191 of ADI.
H A Dpmac_zilog.c14 * the long term, unless we change the driver model again...
/linux-4.4.14/drivers/dma/ppc4xx/
H A Dxor.h8 * This file is licensed under the term of the GNU General Public License
H A Ddma.h8 * This file is licensed under the term of the GNU General Public License
/linux-4.4.14/net/ipv4/
H A Dtcp_recovery.c98 * the aRTT term is bounded by the fast recovery or timeout, tcp_rack_advance()
/linux-4.4.14/net/netfilter/ipvs/
H A Dip_vs_ftp.c84 * the "term" character.
89 char skip, char term, ip_vs_ftp_get_addrport()
127 if (*data == term) ip_vs_ftp_get_addrport()
135 if (c == term) ip_vs_ftp_get_addrport()
87 ip_vs_ftp_get_addrport(char *data, char *data_limit, const char *pattern, size_t plen, char skip, char term, __be32 *addr, __be16 *port, char **start, char **end) ip_vs_ftp_get_addrport() argument
/linux-4.4.14/drivers/gpu/drm/imx/
H A Ddw_hdmi-imx.c85 * Resistance term 133Ohm Cfg
90 /*pixelclk symbol term vlev */
/linux-4.4.14/arch/powerpc/kernel/
H A Drtas.c708 * Firmware with the ibm,extended-os-term property is guaranteed rtas_os_term()
709 * to always return from an ibm,os-term call. Earlier versions without rtas_os_term()
713 if (RTAS_UNKNOWN_SERVICE == rtas_token("ibm,os-term") || rtas_os_term()
714 RTAS_UNKNOWN_SERVICE == rtas_token("ibm,extended-os-term")) rtas_os_term()
720 status = rtas_call(rtas_token("ibm,os-term"), 1, 1, NULL, rtas_os_term()
725 printk(KERN_EMERG "ibm,os-term call failed %d\n", status); rtas_os_term()
1191 basep = of_get_flat_dt_prop(node, "put-term-char", NULL); early_init_dt_scan_rtas()
1195 basep = of_get_flat_dt_prop(node, "get-term-char", NULL); early_init_dt_scan_rtas()
H A Dswsusp_32.S234 * though a better solution will have to be found long-term
H A Dfadump.c420 /* Call ibm,os-term rtas call to trigger firmware assisted dump */ crash_fadump()
H A Dtime.c738 /* XXX this is a litle fragile but will work okay in the short term */ __read_persistent_clock()
/linux-4.4.14/arch/m68k/mm/
H A Dmotorola.c135 printk ("[very early term]"); map_node()
156 printk ("[early term]"); map_node()
/linux-4.4.14/drivers/pinctrl/intel/
H A Dpinctrl-intel.c429 u32 value, term; intel_config_get() local
436 term = (value & PADCFG1_TERM_MASK) >> PADCFG1_TERM_SHIFT; intel_config_get()
440 if (term) intel_config_get()
445 if (!term || !(value & PADCFG1_TERM_UP)) intel_config_get()
448 switch (term) { intel_config_get()
466 if (!term || value & PADCFG1_TERM_UP) intel_config_get()
469 switch (term) { intel_config_get()
H A Dpinctrl-cherryview.c966 u32 term; chv_config_get() local
973 term = (ctrl0 & CHV_PADCTRL0_TERM_MASK) >> CHV_PADCTRL0_TERM_SHIFT; chv_config_get()
977 if (term) chv_config_get()
985 switch (term) { chv_config_get()
1000 if (!term || (ctrl0 & CHV_PADCTRL0_TERM_UP)) chv_config_get()
1003 switch (term) { chv_config_get()
/linux-4.4.14/drivers/video/fbdev/nvidia/
H A Dnv_dma.h30 |* item," as that term is defined at 48 C.F.R. 2.101 (OCT 1995), *|
H A Dnv_local.h29 |* item," as that term is defined at 48 C.F.R. 2.101 (OCT 1995), *|
H A Dnv_accel.c29 |* item," as that term is defined at 48 C.F.R. 2.101 (OCT 1995), *|
H A Dnv_setup.c29 |* item," as that term is defined at 48 C.F.R. 2.101 (OCT 1995), *|
H A Dnv_hw.c29 |* item," as that term is defined at 48 C.F.R. 2.101 (OCT 1995), *|
/linux-4.4.14/arch/alpha/lib/
H A Dev6-copy_page.S18 To get around this we sometimes use (to borrow a term from a VSSAD
/linux-4.4.14/include/uapi/mtd/
H A Dubi-user.h396 * to the LEB: long term (value 1), short term (value 2), unknown (value 3).
397 * UBI tried to pick a PEB with lower erase counter for short term data and a
398 * PEB with higher erase counter for long term data. But this was not really
/linux-4.4.14/arch/arm/mach-omap2/
H A Dopp3xxx_data.c104 * gain for the power point of view. In term of energy it will even
H A Domap_device.c20 * In the medium- to long-term, this code should be implemented as a
H A Domap_hwmod_3xxx_data.c4005 * long-term fix to this is to ensure hwmods are set up in omap3xxx_hwmod_init()
/linux-4.4.14/arch/arm/vfp/
H A Dvfpsingle.c377 u64 term; vfp_single_fsqrt() local
380 term = (u64)vsd.significand * vsd.significand; vfp_single_fsqrt()
381 rem = ((u64)vsm.significand << 32) - term; vfp_single_fsqrt()
383 pr_debug("VFP: term=%016llx rem=%016llx\n", term, rem); vfp_single_fsqrt()
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmsmac/
H A Dpub.h69 /* Tx on antenna 0, "legacy term Main" */
71 /* Tx on antenna 1, "legacy term Aux" */
/linux-4.4.14/fs/jffs2/
H A Dbuild.c332 long-term progress at the expense of short-term space exhaustion? */ jffs2_calc_trigger_levels()
/linux-4.4.14/drivers/media/common/b2c2/
H A Dflexcop.c168 /* these methods are necessary to achieve the long-term-goal of hiding the
/linux-4.4.14/drivers/infiniband/hw/cxgb3/
H A Diwch_qp.c778 struct terminate_message *term; iwch_post_terminate() local
795 term = (struct terminate_message *)wqe->send.sgl; iwch_post_terminate()
796 build_term_codes(rsp_msg, &term->layer_etype, &term->ecode); iwch_post_terminate()
H A Diwch_cm.c1704 PDBG("%s saving %d bytes of term msg\n", __func__, skb->len); terminate()
/linux-4.4.14/drivers/gpu/drm/rockchip/
H A Ddw_hdmi-rockchip.c137 /*pixelclk symbol term vlev*/
/linux-4.4.14/drivers/net/irda/
H A Dirda-usb.h57 * in term of latency and will interact with the link management in IrLAP...
/linux-4.4.14/drivers/powercap/
H A Dintel_rapl.c108 PL1_ENABLE, /* power limit 1, aka long term */
110 PL2_ENABLE, /* power limit 2, aka short term, instantaneous */
113 TIME_WINDOW1, /* long term */
114 TIME_WINDOW2, /* short term */
/linux-4.4.14/net/sunrpc/
H A Ddebugfs.c241 char name[9]; /* 8 hex digits + NULL term */ rpc_xprt_debugfs_register()
H A Dxprt.c453 /* The (cwnd >> 1) term makes sure xprt_adjust_cwnd()
/linux-4.4.14/kernel/
H A Dlatencytop.c225 * short term hack; if we're > 32 we stop; future we recycle: __account_scheduler_latency()
/linux-4.4.14/include/net/sctp/
H A Dtsnmap.h69 * ignore the advice in 12.2 in favour of the term
H A Dstructs.h382 * The term "stream" is used in SCTP to refer to a sequence of user
1465 * ignore the advice in 12.2 in favour of the term
/linux-4.4.14/include/uapi/linux/
H A Drds.h121 uint8_t transport[TRANSNAMSIZ]; /* null term ascii */
/linux-4.4.14/arch/powerpc/kernel/vdso32/
H A Dgettimeofday.S264 * so there is no long-term error accumulation.
/linux-4.4.14/arch/powerpc/platforms/pseries/
H A Dhvcserver.c191 /* copy the Null-term char too */ hvcs_get_partner_info()
/linux-4.4.14/sound/soc/kirkwood/
H A Dkirkwood-dma.c210 /* compute buffer size in term of "words" as requested in specs */ kirkwood_dma_prepare()
/linux-4.4.14/sound/soc/sti/
H A Duniperif_reader.c18 * integrate unireader capability in term of rate and supported channels
H A Duniperif_player.c44 * integrate DAI_CPU capability in term of rate and supported channels
/linux-4.4.14/tools/power/cpupower/utils/helpers/
H A Dbitmask.c94 * The mask term just scanned was ok if and only if either the numbers
/linux-4.4.14/drivers/infiniband/hw/cxgb4/
H A Dqp.c1086 struct terminate_message *term; post_terminate() local
1104 wqe->u.terminate.immdlen = cpu_to_be32(sizeof *term); post_terminate()
1105 term = (struct terminate_message *)wqe->u.terminate.termmsg; post_terminate()
1107 term->layer_etype = qhp->attr.layer_etype; post_terminate()
1108 term->ecode = qhp->attr.ecode; post_terminate()
1110 build_term_codes(err_cqe, &term->layer_etype, &term->ecode); post_terminate()
/linux-4.4.14/scripts/
H A Dkernel-doc1055 print " <varlistentry>\n <term><parameter>$parameter</parameter></term>\n";
1147 print " <term>$parameter</term>\n";
1218 print " <term>$parameter</term>\n";
/linux-4.4.14/drivers/input/touchscreen/
H A Ds3c2410_ts.c5 * it under the term of the GNU General Public License as published by
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/
H A Dsdio.h94 /* Frame Control (frame term/abort) */
/linux-4.4.14/drivers/clk/ti/
H A Dclkt_dflt.c89 * belong in the clock code and will be moved in the medium term to
/linux-4.4.14/drivers/dma/
H A Dste_dma40_ll.c229 * term int on the last part. d40_phy_buf_to_lli()
H A Dmxs-dma.c37 * NOTE: The term "PIO" throughout the mxs-dma implementation means
H A Dfsl_raid.c224 * error conditions except restart everything. In long term we fsl_re_isr()
/linux-4.4.14/drivers/block/drbd/
H A Ddrbd_proc.c194 /* --------------------- long term average ---------------------- */ drbd_syncer_progress()
/linux-4.4.14/drivers/scsi/aic7xxx/
H A Daic7xxx.h820 #define CF284XSTERM 0x0020 /* SCSI low byte term (284x cards) */
827 #define CFSELOWTERM 0x0800 /* Ultra2 secondary low term */
828 #define CFSEHIGHTERM 0x1000 /* Ultra2 secondary high term */
H A Daic79xx.h869 #define CFSELOWTERM 0x0010 /* Ultra2 secondary low term */
870 #define CFSEHIGHTERM 0x0020 /* Ultra2 secondary high term */
H A Daic7xxx_pci.c875 /* See if we have a SEEPROM and perform auto-term */ ahc_pci_config()
1383 * Some low-cost chips have SEEPROM and auto-term control built check_extport()
H A Daic79xx_pci.c371 /* See if we have a SEEPROM and perform auto-term */ ahd_pci_config()
H A Daic7xxx_core.c5085 int term; ahc_chip_init() local
5102 term = (ahc->flags & AHC_TERM_ENB_B) != 0 ? STPWEN : 0; ahc_chip_init()
5106 |term|ahc->seltime_b|ENSTIMER|ACTNEGEN); ahc_chip_init()
5115 term = (ahc->flags & AHC_TERM_ENB_A) != 0 ? STPWEN : 0; ahc_chip_init()
5122 |term|ahc->seltime ahc_chip_init()
/linux-4.4.14/drivers/usb/host/
H A Duhci-debug.c386 "int8", "int4", "int2", "async", "term" uhci_sprint_schedule()
H A Dehci-dbg.c514 * usually empty except for long-term bulk reads, or head. fill_async_buffer()
/linux-4.4.14/drivers/video/fbdev/riva/
H A Driva_hw.h29 |* item," as that term is defined at 48 C.F.R. 2.101 (OCT 1995), *|
H A Driva_tbl.h29 |* item," as that term is defined at 48 C.F.R. 2.101 (OCT 1995), *|
H A Driva_hw.c29 |* item," as that term is defined at 48 C.F.R. 2.101 (OCT 1995), *|
/linux-4.4.14/drivers/md/bcache/
H A Dclosure.h9 * Closure is perhaps the most overused and abused term in computer science, but
/linux-4.4.14/drivers/misc/sgi-xp/
H A Dxp.h53 * term 'region' in this context refers to the minimum number of nodes that
H A Dxpc_partition.c438 * The term 'region' in this context refers to the minimum number of xpc_discovery()
/linux-4.4.14/drivers/input/keyboard/
H A Dhil_kbd.c81 char rnm[HIL_PACKET_MAX_LENGTH + 1]; /* RNM record + NULL term. */
/linux-4.4.14/drivers/misc/cxl/
H A Dirq.c215 " %016llx\n(Possible AFU HW issue - was a term/remove acked" cxl_irq_multiplexed()
/linux-4.4.14/drivers/cpuidle/
H A Dcpuidle.c67 /* Find lowest-power state that supports long-term idle */ cpuidle_play_dead()
/linux-4.4.14/include/uapi/linux/wimax/
H A Di2400m.h65 * The term L3L4 refers to Layer 3 (the device), Layer 4 (the
/linux-4.4.14/fs/xfs/
H A Dxfs_inode.h218 #define XFS_IDONTCACHE (1 << 9) /* don't cache the inode long term */
/linux-4.4.14/tools/testing/selftests/seccomp/
H A Dtest_harness.h70 * Defines a test by name and the expected term signal.
/linux-4.4.14/arch/tile/include/hv/
H A Dnetio_intf.h874 * In the medium term, the ordinal is unique and monotonically increasing,
878 * in the long term, therefore, ordinals are not unique.) The ordinals
900 * the medium term, the ordinal is unique and monotonically
904 * it will eventually wrap around to zero; in the long term,
1481 * In the medium term, the ordinal is unique and monotonically increasing,
1485 * in the long term, therefore, ordinals are not unique.) The ordinals
1509 * the medium term, the ordinal is unique and monotonically
1513 * it will eventually wrap around to zero; in the long term,
/linux-4.4.14/fs/debugfs/
H A Dfile.c603 char term = array_size ? ' ' : '\n'; u32_format_array() local
605 len = snprintf(buf, bufsize, "%u%c", *array++, term); u32_format_array()
/linux-4.4.14/fs/reiserfs/
H A Dbitmap.c307 * to make a better decision. This favors long-term performance gain block_group_used()
308 * with a better on-disk layout vs. a short term gain of skipping the block_group_used()
/linux-4.4.14/include/net/
H A Diw_handler.h190 * 3) In the long term, it allows to move away from using ioctl as the
300 * This struct is also my long term insurance. I can add new fields here
/linux-4.4.14/arch/mips/include/asm/octeon/
H A Dcvmx-mio-defs.h655 uint64_t term:2; member in struct:cvmx_mio_boot_pin_defs::cvmx_mio_boot_pin_defs_s
661 uint64_t term:2;
679 uint64_t term:2; member in struct:cvmx_mio_boot_pin_defs::cvmx_mio_boot_pin_defs_cn52xx
685 uint64_t term:2;
702 uint64_t term:2; member in struct:cvmx_mio_boot_pin_defs::cvmx_mio_boot_pin_defs_cn56xx
706 uint64_t term:2;
724 uint64_t term:2; member in struct:cvmx_mio_boot_pin_defs::cvmx_mio_boot_pin_defs_cn61xx
730 uint64_t term:2;
/linux-4.4.14/drivers/scsi/sym53c8xx_2/
H A Dsym_hipd.c192 u32 term; sym_reset_scsi_bus() local
216 term = INB(np, nc_sstat0); sym_reset_scsi_bus()
217 term = ((term & 2) << 7) + ((term & 1) << 17); /* rst sdp0 */ sym_reset_scsi_bus()
218 term |= ((INB(np, nc_sstat2) & 0x01) << 26) | /* sdp1 */ sym_reset_scsi_bus()
224 term &= 0x3ffff; sym_reset_scsi_bus()
226 if (term != (2<<7)) { sym_reset_scsi_bus()
233 (u_long)term, (u_long)(2<<7)); sym_reset_scsi_bus()
3647 * Compute the resulted data pointer in term of a script sym_evaluate_dp()
/linux-4.4.14/drivers/scsi/
H A Dscsi_scan.c1016 unsigned term = 0, idx; scsi_inq_str() local
1021 term = idx+1; scsi_inq_str()
1026 buf[term] = 0; scsi_inq_str()
H A Dncr53c8xx.c4482 u32 term; ncr_reset_scsi_bus() local
4513 term = INB(nc_sstat0); ncr_reset_scsi_bus()
4514 term = ((term & 2) << 7) + ((term & 1) << 17); /* rst sdp0 */ ncr_reset_scsi_bus()
4515 term |= ((INB(nc_sstat2) & 0x01) << 26) | /* sdp1 */ ncr_reset_scsi_bus()
4521 term &= 0x3ffff; ncr_reset_scsi_bus()
4523 if (term != (2<<7)) { ncr_reset_scsi_bus()
4530 (u_long)term, (u_long)(2<<7)); ncr_reset_scsi_bus()
H A Dqla1280.c2235 uint16_t cfg1, term; qla1280_nvram_config() local
2248 term = nv->termination.scsi_bus_1_control; qla1280_nvram_config()
2249 term |= nv->termination.scsi_bus_0_control << 2; qla1280_nvram_config()
2250 term |= nv->termination.auto_term_support << 7; qla1280_nvram_config()
2252 WRT_REG_WORD(&reg->gpio_data, term); qla1280_nvram_config()
H A Dqla1280.h387 * 0 = Disable, 1 = high only, 3 = Auto term
H A Dnsp32.c1125 nsp32_msg(KERN_INFO, "term power on"); nsp32hw_init()
H A Dscsi_error.c1153 * XXX: Long term this code should go away, but that needs an audit of
/linux-4.4.14/drivers/usb/phy/
H A Dphy-tegra-usb.c903 err = read_utmi_param(pdev, "nvidia,term-range-adj", utmi_phy_probe()
/linux-4.4.14/drivers/gpu/drm/sti/
H A Dsti_hdmi.c223 /* Enable sink term detection */ hdmi_config()
/linux-4.4.14/drivers/misc/echo/
H A Decho.c427 /* Calculate short term average levels using simple single pole IIRs */ oslec_update()
/linux-4.4.14/drivers/net/xen-netback/
H A Dinterface.c497 * better enable it. The long term solution would be to use just a xenvif_init_queue()
/linux-4.4.14/drivers/cpuidle/governors/
H A Dmenu.c114 * The load average factor gives a longer term (few seconds) input to the
/linux-4.4.14/fs/logfs/
H A Dlogfs_abi.h30 * Any usage of the term offset for a logical location or position for
/linux-4.4.14/mm/
H A Dpage-writeback.c706 * Returns @wb's dirty limit in pages. The term "dirty" in the context of
1143 * Normal wb tasks will be curbed at or below it in long term.
1164 * The dirty rate will match the writeout rate in long term, except wb_update_dirty_ratelimit()
2498 * counters (NR_WRITTEN, BDI_WRITTEN) in long term. The mismatches will lead to
/linux-4.4.14/init/
H A Dmain.c237 /* Change NUL term back to "=", to make "param" the whole string. */ repair_env_string()
/linux-4.4.14/include/linux/
H A Dswap.h123 * term `swapfile' refers to either a blockdevice or an IS_REG file. Apart
H A Dremoteproc.h285 * Note: unlike virtualization systems, the term 'host' here means
H A Dtty.h214 /* FIXME: long term getting the tty argument *out* of this would be
H A Dedac.h413 * Bank: This term is avoided because it is unclear when
/linux-4.4.14/arch/parisc/include/asm/
H A Dpgtable.h233 in the short term - dhd@linuxcare.com, 2000-08-08 */
/linux-4.4.14/net/irda/irnet/
H A Dirnet.h106 * This also give maximum benefits in term of flexibility and customability,
/linux-4.4.14/drivers/net/wan/
H A Dz85230.c69 * In the longer term this should become an architecture specific
95 * In the longer term this should become an architecture specific
/linux-4.4.14/drivers/net/ethernet/rocker/
H A Drocker.c3241 bool term; member in struct:rocker_ctrl
3262 .term = true,
3270 .term = true,
3364 netdev_err(rocker_port->dev, "Error (%d) ctrl term\n", err); rocker_port_ctrl_vlan_term()
3380 if (ctrl->term) rocker_port_ctrl_vlan()
/linux-4.4.14/sound/pci/rme9652/
H A Dhdspm.c989 int term; /* 0 = off, 1 = on */ member in struct:hdspm_tco
4189 if (1 == hdspm->tco->term) { hdspm_tco_write()
4460 ucontrol->value.integer.value[0] = hdspm->tco->term; snd_hdspm_get_tco_word_term()
4471 if (hdspm->tco->term != ucontrol->value.integer.value[0]) { snd_hdspm_put_tco_word_term()
4472 hdspm->tco->term = ucontrol->value.integer.value[0]; snd_hdspm_put_tco_word_term()
/linux-4.4.14/arch/arm/nwfpe/
H A Dsoftfloat.c1455 bits64 rem, term; float32_sqrt() local
1484 term = ( (bits64) zSig ) * zSig; float32_sqrt()
1485 rem = ( ( (bits64) aSig )<<32 ) - term; float32_sqrt()
/linux-4.4.14/drivers/usb/class/
H A Dusbtmc.c405 /* Use term character? */ send_request_dev_dep_msg_in()
/linux-4.4.14/drivers/scsi/esas2r/
H A Datioctl.h1059 char file_name[16]; /* 8.3 fname, NULL term, wc=* */
H A Datvda.h1094 char file_name[16]; /* 8.3 fname, NULL term, wc=* */
/linux-4.4.14/drivers/misc/sgi-gru/
H A Dgrukservices.c81 * - Additional resources can be reserved long term & used directly
/linux-4.4.14/drivers/mtd/
H A Dmtdchar.c143 * longer-term goal, as intimated by dwmw2 above. However, for the
/linux-4.4.14/drivers/hwmon/
H A Dvia686a.c257 * an extra term for a good fit to these inverse data!) and then
H A Dpc87360.c757 * the +11 term below reflects the fact that VLM units 11,12,13 are
/linux-4.4.14/drivers/memory/tegra/
H A Dtegra124-emc.c924 EMC_READ_PROP(emc_ctt_term_ctrl, "nvidia,emc-ctt-term-ctrl") load_one_timing_from_dt()
/linux-4.4.14/drivers/cpufreq/
H A Dpowernow-k8.c1227 /* driver entry point for term */ powernowk8_exit()
/linux-4.4.14/drivers/acpi/
H A Dprocessor_idle.c701 * acpi_idle_play_dead - enters an ACPI state for long-term idle (i.e. off-lining)
/linux-4.4.14/drivers/gpu/drm/i915/
H A Di915_guc_submission.c33 * We use the term client to avoid confusion with contexts. A i915_guc_client is
/linux-4.4.14/drivers/block/rsxx/
H A Dcore.c468 * dStroy is a term coined by marketing to represent the low level card_state_change()
/linux-4.4.14/arch/powerpc/platforms/cell/spufs/
H A Dsched.c504 * It's still quite hacky, and long-term we should proxy all other __spu_add_to_rq()
/linux-4.4.14/arch/ia64/kernel/
H A Dfsys.S179 // p6,p7 short term use
H A Diosapic.c78 * Note: The term "IRQ" is loosely used everywhere in Linux kernel to
/linux-4.4.14/tools/perf/ui/browsers/
H A Dannotate.c1075 * FIXME: short term bandaid to cope with assembly symbol__tui_annotate()
/linux-4.4.14/drivers/scsi/qla2xxx/
H A Dqla_target.c3208 int term = 0; qlt_term_ctio_exchange() local
3212 term = !(c->flags & qlt_term_ctio_exchange()
3215 term = 1; qlt_term_ctio_exchange()
3217 if (term) qlt_term_ctio_exchange()
3220 return term; qlt_term_ctio_exchange()
/linux-4.4.14/drivers/usb/musb/
H A Dcppi_dma.c518 * REVISIT long term, we want a normal dynamic model.
/linux-4.4.14/drivers/lguest/
H A Dpage_tables.c914 * don't know, but the term "puissant code-fu" comes to mind.
/linux-4.4.14/drivers/ide/
H A Dide-probe.c110 /* CF devices are *not* removable in Linux definition of the term */ ide_classify_ata_dev()
/linux-4.4.14/drivers/net/ethernet/intel/i40e/
H A Di40e_nvm.c35 * Please notice that the NVM term is used here (& in all methods covered
/linux-4.4.14/drivers/net/hippi/
H A Drrunner.c85 * On the long term, relying on being able to allocate 64KB linear
/linux-4.4.14/drivers/net/ethernet/qlogic/qlcnic/
H A Dqlcnic_sriov_common.c1473 "Failed bc channel %s %d\n", cmd_op ? "term" : "init", qlcnic_sriov_channel_cfg_cmd()
/linux-4.4.14/drivers/net/ethernet/amd/
H A Dnmclan_cs.c1298 }; /* CRC polynomial. poly[n] = coefficient of the x**n term of the updateCRC()
/linux-4.4.14/drivers/gpu/drm/bridge/
H A Ddw_hdmi.c818 hdmi_phy_i2c_write(hdmi, phy_config->term, 0x19); /* TXTERM */ hdmi_phy_configure()
/linux-4.4.14/fs/ubifs/
H A Djournal.c33 * use term "bud". Analogy is obvious, bud eraseblocks contain nodes which will
/linux-4.4.14/tools/lguest/
H A Dlguest.c2662 struct termios term = orig_term; setup_console() local
2667 term.c_lflag &= ~(ISIG|ICANON|ECHO); setup_console()
2668 tcsetattr(STDIN_FILENO, TCSANOW, &term); setup_console()
/linux-4.4.14/net/bluetooth/
H A Dmgmt.c7821 * to store long term keys. Their addresses will change the mgmt_new_ltk()
7825 * make sure the long term key is stored. If the remote mgmt_new_ltk()
7826 * identity is known, the long term keys are internally mgmt_new_ltk()
/linux-4.4.14/drivers/scsi/snic/
H A Dsnic_scsi.c1578 /* term stats */ snic_send_abort_and_wait()
/linux-4.4.14/drivers/media/platform/omap3isp/
H A Dispresizer.c762 * The additional +255 term compensates for the round down operation performed
/linux-4.4.14/drivers/net/fddi/skfp/
H A Dsmt.c1423 /* long term bit error rate */ smt_fill_lem()
/linux-4.4.14/drivers/net/
H A Dvirtio_net.c46 * term, transient changes in packet size.
/linux-4.4.14/arch/x86/kernel/apic/
H A Dapic.c1342 * like LRU than MRU (the short-term load is more even across CPUs). setup_local_APIC()
/linux-4.4.14/fs/btrfs/
H A Dsuper.c103 * today we only save the error info into ram. Long term we'll save_error_info()
/linux-4.4.14/sound/soc/codecs/
H A Dtlv320aic3x.c1108 * The term had to be converted to get aic3x_hw_params()
/linux-4.4.14/drivers/isdn/hardware/mISDN/
H A Dhfcmulti.c1224 printk(KERN_DEBUG "%s: slave/term: PLX_GPIO=%x\n", init_chip()
1253 "%s: term off: PLX_GPIO=%x\n", init_chip()
/linux-4.4.14/drivers/staging/lustre/lustre/osc/
H A Dosc_request.c924 * impact block allocation and long-term performance. */ osc_shrink_grant_to_target()

Completed in 9377 milliseconds

12