/linux-4.1.27/tools/perf/util/ |
D | parse-events.y | 65 %type <term> event_term 87 struct parse_events_term *term; member 230 struct parse_events_term *term; variable 234 ABORT_ON(parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_USER, 236 list_add_tail(&term->list, head); 248 struct parse_events_term *term; variable 254 ABORT_ON(parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_USER, 256 list_add_tail(&term->list, head); 429 struct parse_events_term *term = $3; variable 432 list_add_tail(&term->list, head); [all …]
|
D | pmu.c | 330 struct parse_events_term *term, *cloned; in pmu_alias_terms() local 334 list_for_each_entry(term, &alias->terms, list) { in pmu_alias_terms() 335 ret = parse_events_term__clone(&cloned, term); in pmu_alias_terms() 561 static int pmu_resolve_param_term(struct parse_events_term *term, in pmu_resolve_param_term() argument 569 if (!strcmp(t->config, term->config)) { in pmu_resolve_param_term() 578 printf("Required parameter '%s' not specified\n", term->config); in pmu_resolve_param_term() 589 struct parse_events_term *term, in pmu_config_term() argument 601 if (term->used) in pmu_config_term() 608 if (parse_events__is_hardcoded_term(term)) in pmu_config_term() 611 format = pmu_find_format(formats, term->config); in pmu_config_term() [all …]
|
D | parse-events.c | 542 struct parse_events_term *term) in config_term() argument 546 if (PARSE_EVENTS__TERM_TYPE_ ## type != term->type_val) \ in config_term() 550 switch (term->type_term) { in config_term() 553 attr->config = term->val.num; in config_term() 557 attr->config1 = term->val.num; in config_term() 561 attr->config2 = term->val.num; in config_term() 565 attr->sample_period = term->val.num; in config_term() 587 struct parse_events_term *term; in config_attr() local 589 list_for_each_entry(term, head, list) in config_attr() 590 if (config_term(attr, term) && fail) in config_attr() [all …]
|
D | parse-events.l | 80 static int term(yyscan_t scanner, int type) in term() function 148 config { return term(yyscanner, PARSE_EVENTS__TERM_TYPE_CONFIG); } 149 config1 { return term(yyscanner, PARSE_EVENTS__TERM_TYPE_CONFIG1); } 150 config2 { return term(yyscanner, PARSE_EVENTS__TERM_TYPE_CONFIG2); } 151 name { return term(yyscanner, PARSE_EVENTS__TERM_TYPE_NAME); } 152 period { return term(yyscanner, PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD); } 153 branch_type { return term(yyscanner, PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE); }
|
D | parse-events.h | 87 int parse_events__is_hardcoded_term(struct parse_events_term *term); 92 int parse_events_term__sym_hw(struct parse_events_term **term, 95 struct parse_events_term *term);
|
D | color.c | 28 char *term = getenv("TERM"); in perf_config_colorbool() local 29 if (term && strcmp(term, "dumb")) in perf_config_colorbool()
|
/linux-4.1.27/net/netfilter/ |
D | xt_repldata.h | 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; \
|
D | nf_conntrack_ftp.c | 71 char term; member 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) in get_ipv6_addr() argument 115 int ret = in6_pton(src, min_t(size_t, dlen, 0xffff), (u8 *)dst, term, &end); in get_ipv6_addr() 122 int array_size, char sep, char term) in try_number() argument 139 if ((*data == term || !term) && i == array_size - 1) in try_number() 154 struct nf_conntrack_man *cmd, char term, in try_rfc959() argument 160 length = try_number(data, dlen, array, 6, ',', term); in try_rfc959() [all …]
|
D | nf_conntrack_sip.c | 722 enum sdp_header_types term, in ct_sip_get_sdp_header() argument 731 thdr = &hdrs[term]; in ct_sip_get_sdp_header() 744 if (term != SDP_HDR_UNSPEC && in ct_sip_get_sdp_header() 776 enum sdp_header_types term, in ct_sip_parse_sdp_addr() argument 782 ret = ct_sip_get_sdp_header(ct, dptr, dataoff, datalen, type, term, in ct_sip_parse_sdp_addr() 1492 bool term; in sip_help_tcp() local 1526 term = false; in sip_help_tcp() 1530 term = true; in sip_help_tcp() 1534 if (!term) in sip_help_tcp()
|
D | nf_nat_sip.c | 447 enum sdp_header_types term, in mangle_sdp_packet() argument 454 if (ct_sip_get_sdp_header(ct, *dptr, sdpoff, *datalen, type, term, in mangle_sdp_packet() 466 enum sdp_header_types term, in nf_nat_sdp_addr() argument 476 sdpoff, type, term, buffer, buflen)) in nf_nat_sdp_addr()
|
/linux-4.1.27/drivers/media/usb/uvc/ |
D | uvc_driver.c | 959 struct uvc_entity *unit, *term; in uvc_parse_standard_control() local 1035 term = uvc_alloc_entity(type | UVC_TERM_INPUT, buffer[3], in uvc_parse_standard_control() 1037 if (term == NULL) in uvc_parse_standard_control() 1040 if (UVC_ENTITY_TYPE(term) == UVC_ITT_CAMERA) { in uvc_parse_standard_control() 1041 term->camera.bControlSize = n; in uvc_parse_standard_control() 1042 term->camera.bmControls = (__u8 *)term + sizeof *term; in uvc_parse_standard_control() 1043 term->camera.wObjectiveFocalLengthMin = in uvc_parse_standard_control() 1045 term->camera.wObjectiveFocalLengthMax = in uvc_parse_standard_control() 1047 term->camera.wOcularFocalLength = in uvc_parse_standard_control() 1049 memcpy(term->camera.bmControls, &buffer[15], n); in uvc_parse_standard_control() [all …]
|
D | uvcvideo.h | 26 #define UVC_TERM_DIRECTION(term) ((term)->type & 0x8000) argument
|
/linux-4.1.27/include/drm/ |
D | drm_fixed.h | 191 s64 sum = DRM_FIXED_ONE, term, y = x; in drm_fixp_exp() local 197 term = y; in drm_fixp_exp() 199 while (term >= tolerance) { in drm_fixp_exp() 200 sum = sum + term; in drm_fixp_exp() 202 term = drm_fixp_mul(term, div64_s64(y, count)); in drm_fixp_exp()
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-bus-event_source-devices-events | 42 <term>[=<value>][,<term>[=<value>]]... 44 Where <term> is one of the terms listed under 47 If a <term> is specified alone (without an assigned value), it 48 is implied that 0x1 is assigned to that <term>. 59 corresponding to the <term>) in the perf_event structure passed
|
/linux-4.1.27/sound/usb/ |
D | stream.c | 443 struct uac2_input_terminal_descriptor *term = NULL; in snd_usb_find_input_terminal_descriptor() local 445 while ((term = snd_usb_find_csint_desc(ctrl_iface->extra, in snd_usb_find_input_terminal_descriptor() 447 term, UAC_INPUT_TERMINAL))) { in snd_usb_find_input_terminal_descriptor() 448 if (term->bTerminalID == terminal_id) in snd_usb_find_input_terminal_descriptor() 449 return term; in snd_usb_find_input_terminal_descriptor() 459 struct uac2_output_terminal_descriptor *term = NULL; in snd_usb_find_output_terminal_descriptor() local 461 while ((term = snd_usb_find_csint_desc(ctrl_iface->extra, in snd_usb_find_output_terminal_descriptor() 463 term, UAC_OUTPUT_TERMINAL))) { in snd_usb_find_output_terminal_descriptor() 464 if (term->bTerminalID == terminal_id) in snd_usb_find_output_terminal_descriptor() 465 return term; in snd_usb_find_output_terminal_descriptor()
|
D | mixer.c | 703 struct usb_audio_term *term) in check_input_term() argument 708 memset(term, 0, sizeof(*term)); in check_input_term() 711 term->id = id; in check_input_term() 716 term->type = le16_to_cpu(d->wTerminalType); in check_input_term() 717 term->channels = d->bNrChannels; in check_input_term() 718 term->chconfig = le16_to_cpu(d->wChannelConfig); in check_input_term() 719 term->name = d->iTerminal; in check_input_term() 722 term->type = le16_to_cpu(d->wTerminalType); in check_input_term() 723 term->channels = d->bNrChannels; in check_input_term() 724 term->chconfig = le32_to_cpu(d->bmChannelConfig); in check_input_term() [all …]
|
/linux-4.1.27/Documentation/watchdog/src/ |
D | watchdog-test.c | 34 static void term(int sig) in term() function 77 signal(SIGINT, term); in main()
|
/linux-4.1.27/drivers/acpi/acpica/ |
D | utstring.c | 182 u8 term = 0; in acpi_ut_strtoul64() local 253 term = 1; in acpi_ut_strtoul64() 262 term = 1; in acpi_ut_strtoul64() 266 if (term) { in acpi_ut_strtoul64()
|
/linux-4.1.27/tools/perf/tests/ |
D | parse-events.c | 523 struct parse_events_term *term; in test__checkterms_simple() local 526 term = list_entry(terms->next, struct parse_events_term, list); in test__checkterms_simple() 528 term->type_term == PARSE_EVENTS__TERM_TYPE_CONFIG); in test__checkterms_simple() 530 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM); in test__checkterms_simple() 531 TEST_ASSERT_VAL("wrong val", term->val.num == 10); in test__checkterms_simple() 532 TEST_ASSERT_VAL("wrong config", !term->config); in test__checkterms_simple() 535 term = list_entry(term->list.next, struct parse_events_term, list); in test__checkterms_simple() 537 term->type_term == PARSE_EVENTS__TERM_TYPE_CONFIG1); in test__checkterms_simple() 539 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM); in test__checkterms_simple() 540 TEST_ASSERT_VAL("wrong val", term->val.num == 1); in test__checkterms_simple() [all …]
|
/linux-4.1.27/drivers/pwm/ |
D | pwm-ep93xx.c | 78 unsigned long term; in ep93xx_pwm_config() local 102 term = readw(base + EP93XX_PWMx_TERM_COUNT); in ep93xx_pwm_config() 105 if (period_cycles > term) { in ep93xx_pwm_config()
|
/linux-4.1.27/drivers/net/wireless/cw1200/ |
D | bh.c | 426 int rx, tx, term, suspend; in cw1200_bh() local 462 term = atomic_xchg(&priv->bh_term, 0); in cw1200_bh() 465 (rx || tx || term || suspend || priv->bh_error); in cw1200_bh() 469 rx, tx, term, suspend, priv->bh_error, status); in cw1200_bh() 473 term || priv->bh_error) { in cw1200_bh() 613 if (!term) { in cw1200_bh()
|
/linux-4.1.27/drivers/scsi/arm/ |
D | powertec.c | 55 static int term[MAX_ECARDS] = { 1, 1, 1, 1, 1, 1, 1, 1 }; variable 330 powertecscsi_terminator_ctl(host, term[ec->slot_no]); in powertecscsi_probe() 449 module_param_array(term, int, NULL, 0); 450 MODULE_PARM_DESC(term, "SCSI bus termination");
|
D | cumana_2.c | 72 static int term[MAX_ECARDS] = { 1, 1, 1, 1, 1, 1, 1, 1 }; variable 406 cumanascsi_2_terminator_ctl(host, term[ec->slot_no]); in cumanascsi2_probe() 519 module_param_array(term, int, NULL, 0); 520 MODULE_PARM_DESC(term, "SCSI bus termination");
|
D | eesox.c | 67 static int term[MAX_ECARDS] = { 1, 1, 1, 1, 1, 1, 1, 1 }; variable 524 info->control = term[ec->slot_no] ? EESOX_TERM_ENABLE : 0; in eesoxscsi_probe() 643 module_param_array(term, int, NULL, 0); 644 MODULE_PARM_DESC(term, "SCSI bus termination");
|
/linux-4.1.27/include/linux/netfilter/ |
D | nf_conntrack_sip.h | 136 enum sdp_header_types term, 195 enum sdp_header_types term,
|
/linux-4.1.27/arch/x86/boot/ |
D | code16gcc.h | 8 # gcc 4.9+ has a real -m16 option so we can drop this hack long term.
|
/linux-4.1.27/drivers/net/slip/ |
D | Kconfig | 27 want to run term (term is a program which gives you almost full 30 <http://www.bart.nl/~patrickr/term-howto/Term-HOWTO.html>). SLIP
|
/linux-4.1.27/net/netfilter/ipvs/ |
D | ip_vs_ftp.c | 89 char skip, char term, in ip_vs_ftp_get_addrport() argument 127 if (*data == term) in ip_vs_ftp_get_addrport() 135 if (c == term) in ip_vs_ftp_get_addrport()
|
/linux-4.1.27/Documentation/isdn/ |
D | README.mISDN | 1 mISDN is a new modular ISDN driver, in the long term it should replace
|
D | README | 55 term to that one, which applies to your local ISDN-environment.
|
/linux-4.1.27/include/drm/bridge/ |
D | dw_hdmi.h | 44 u16 term; /*transmission termination value*/ member
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | tegra124-jetson-tk1-emc.dtsi | 95 nvidia,emc-ctt-term-ctrl = <0x00000802>; 263 nvidia,emc-ctt-term-ctrl = <0x00000802>; 431 nvidia,emc-ctt-term-ctrl = <0x00000802>; 599 nvidia,emc-ctt-term-ctrl = <0x00000802>; 767 nvidia,emc-ctt-term-ctrl = <0x00000802>; 935 nvidia,emc-ctt-term-ctrl = <0x00000802>; 1103 nvidia,emc-ctt-term-ctrl = <0x00000802>; 1271 nvidia,emc-ctt-term-ctrl = <0x00000802>; 1439 nvidia,emc-ctt-term-ctrl = <0x00000802>; 1607 nvidia,emc-ctt-term-ctrl = <0x00000802>; [all …]
|
D | tegra124-nyan-blaze-emc.dtsi | 84 nvidia,emc-ctt-term-ctrl = <0x00000802>; 252 nvidia,emc-ctt-term-ctrl = <0x00000802>; 420 nvidia,emc-ctt-term-ctrl = <0x00000802>; 588 nvidia,emc-ctt-term-ctrl = <0x00000802>; 756 nvidia,emc-ctt-term-ctrl = <0x00000802>; 924 nvidia,emc-ctt-term-ctrl = <0x00000802>; 1092 nvidia,emc-ctt-term-ctrl = <0x00000802>; 1260 nvidia,emc-ctt-term-ctrl = <0x00000802>; 1428 nvidia,emc-ctt-term-ctrl = <0x00000802>; 1596 nvidia,emc-ctt-term-ctrl = <0x00000802>;
|
D | tegra124-nyan-big-emc.dtsi | 84 nvidia,emc-ctt-term-ctrl = <0x00000802>; 252 nvidia,emc-ctt-term-ctrl = <0x00000802>; 420 nvidia,emc-ctt-term-ctrl = <0x00000802>; 588 nvidia,emc-ctt-term-ctrl = <0x00000802>; 756 nvidia,emc-ctt-term-ctrl = <0x00000802>; 924 nvidia,emc-ctt-term-ctrl = <0x00000802>; 1092 nvidia,emc-ctt-term-ctrl = <0x00000802>; 1260 nvidia,emc-ctt-term-ctrl = <0x00000802>; 1428 nvidia,emc-ctt-term-ctrl = <0x00000802>; 1596 nvidia,emc-ctt-term-ctrl = <0x00000802>;
|
D | tegra30.dtsi | 806 nvidia,term-range-adj = <6>; 843 nvidia,term-range-adj = <6>; 879 nvidia,term-range-adj = <6>;
|
D | tegra124.dtsi | 834 nvidia,term-range-adj = <6>; 871 nvidia,term-range-adj = <6>; 907 nvidia,term-range-adj = <6>;
|
D | tegra114.dtsi | 696 nvidia,term-range-adj = <6>; 732 nvidia,term-range-adj = <6>;
|
D | tegra20.dtsi | 664 nvidia,term-range-adj = <6>; 723 nvidia,term-range-adj = <6>;
|
/linux-4.1.27/drivers/staging/ozwpan/ |
D | ozproto.h | 34 void (*term)(void); member
|
D | ozpd.c | 44 .term = oz_usb_term, 53 .term = oz_cdev_term, 850 if (g_app_if[i].term) in oz_apps_term() 851 g_app_if[i].term(); in oz_apps_term()
|
/linux-4.1.27/drivers/pinctrl/intel/ |
D | pinctrl-intel.c | 432 u32 value, term; in intel_config_get() local 439 term = (value & PADCFG1_TERM_MASK) >> PADCFG1_TERM_SHIFT; in intel_config_get() 443 if (term) in intel_config_get() 448 if (!term || !(value & PADCFG1_TERM_UP)) in intel_config_get() 451 switch (term) { in intel_config_get() 469 if (!term || value & PADCFG1_TERM_UP) in intel_config_get() 472 switch (term) { in intel_config_get()
|
D | pinctrl-cherryview.c | 966 u32 term; in chv_config_get() local 973 term = (ctrl0 & CHV_PADCTRL0_TERM_MASK) >> CHV_PADCTRL0_TERM_SHIFT; in chv_config_get() 977 if (term) in chv_config_get() 985 switch (term) { in chv_config_get() 1000 if (!term || (ctrl0 & CHV_PADCTRL0_TERM_UP)) in chv_config_get() 1003 switch (term) { in chv_config_get()
|
/linux-4.1.27/arch/c6x/lib/ |
D | mpyll.S | 36 ;; Since the result is also 64-bit, we can skip the P2 term.
|
/linux-4.1.27/sound/soc/codecs/ |
D | wm_adsp.c | 889 unsigned int pos, term; in wm_adsp_setup_algs() local 948 term = pos + ((sizeof(*adsp1_alg) * algs) / 2); in wm_adsp_setup_algs() 997 term = pos + ((sizeof(*adsp2_alg) * algs) / 2); in wm_adsp_setup_algs() 1018 ret = regmap_raw_read(regmap, mem->base + term, &val, sizeof(val)); in wm_adsp_setup_algs() 1027 term, be32_to_cpu(val)); in wm_adsp_setup_algs() 1029 alg = kzalloc((term - pos) * 2, GFP_KERNEL | GFP_DMA); in wm_adsp_setup_algs() 1033 ret = regmap_raw_read(regmap, mem->base + pos, alg, (term - pos) * 2); in wm_adsp_setup_algs()
|
/linux-4.1.27/arch/arm/vfp/ |
D | vfpsingle.c | 377 u64 term; in vfp_single_fsqrt() local 380 term = (u64)vsd.significand * vsd.significand; in vfp_single_fsqrt() 381 rem = ((u64)vsm.significand << 32) - term; in vfp_single_fsqrt() 383 pr_debug("VFP: term=%016llx rem=%016llx\n", term, rem); in vfp_single_fsqrt()
|
/linux-4.1.27/Documentation/power/powercap/ |
D | powercap.txt | 166 The Intel RAPL technology allows two constraints, short term and long term,
|
/linux-4.1.27/drivers/staging/i2o/ |
D | README | 77 o Long term message flow control
|
/linux-4.1.27/fs/debugfs/ |
D | file.c | 580 char term = array_size ? ' ' : '\n'; in u32_format_array() local 582 len = snprintf(buf, bufsize, "%u%c", *array++, term); in u32_format_array()
|
/linux-4.1.27/Documentation/development-process/ |
D | 2.Process | 116 Some kernels are designated "long term" kernels; they will receive support 117 for a longer period. As of this writing, the current long term kernels 124 The selection of a kernel for long-term support is purely a matter of a 126 are no known plans for long-term support for any specific upcoming 185 - Long-term maintenance. While it is certainly possible for a developer 191 in the longer term. 452 Over the medium term, this is often the more profitable approach.
|
D | 3.Early-stage | 31 via the rlimit mechanism for the short term, and ongoing latency reduction 32 work in the long term. 48 more concerned about system stability, long-term maintenance, and finding
|
D | 6.Followthrough | 108 longer-term work.
|
D | 1.Intro | 129 Torvalds and used as a base by Linux distributors). In the short term,
|
D | 5.Posting | 59 even in the short term.
|
/linux-4.1.27/Documentation/devicetree/bindings/bus/ |
D | imx-weim.txt | 3 The term "wireless" does not imply that the WEIM is literally an interface
|
/linux-4.1.27/drivers/infiniband/hw/cxgb4/ |
D | qp.c | 1073 struct terminate_message *term; in post_terminate() local 1091 wqe->u.terminate.immdlen = cpu_to_be32(sizeof *term); in post_terminate() 1092 term = (struct terminate_message *)wqe->u.terminate.termmsg; in post_terminate() 1094 term->layer_etype = qhp->attr.layer_etype; in post_terminate() 1095 term->ecode = qhp->attr.ecode; in post_terminate() 1097 build_term_codes(err_cqe, &term->layer_etype, &term->ecode); in post_terminate()
|
/linux-4.1.27/drivers/infiniband/hw/cxgb3/ |
D | iwch_qp.c | 777 struct terminate_message *term; in iwch_post_terminate() local 794 term = (struct terminate_message *)wqe->send.sgl; in iwch_post_terminate() 795 build_term_codes(rsp_msg, &term->layer_etype, &term->ecode); in iwch_post_terminate()
|
/linux-4.1.27/Documentation/devicetree/bindings/usb/ |
D | nvidia,tegra20-usb-phy.txt | 42 - nvidia,term-range-adj : Range adjusment on terminations
|
/linux-4.1.27/drivers/scsi/ |
D | scsi_scan.c | 1011 unsigned term = 0, idx; in scsi_inq_str() local 1016 term = idx+1; in scsi_inq_str() 1021 buf[term] = 0; in scsi_inq_str()
|
D | ncr53c8xx.c | 4482 u32 term; in ncr_reset_scsi_bus() local 4513 term = INB(nc_sstat0); in ncr_reset_scsi_bus() 4514 term = ((term & 2) << 7) + ((term & 1) << 17); /* rst sdp0 */ in ncr_reset_scsi_bus() 4515 term |= ((INB(nc_sstat2) & 0x01) << 26) | /* sdp1 */ in ncr_reset_scsi_bus() 4521 term &= 0x3ffff; in ncr_reset_scsi_bus() 4523 if (term != (2<<7)) { in ncr_reset_scsi_bus() 4530 (u_long)term, (u_long)(2<<7)); in ncr_reset_scsi_bus()
|
D | qla1280.c | 2235 uint16_t cfg1, term; in qla1280_nvram_config() local 2248 term = nv->termination.scsi_bus_1_control; in qla1280_nvram_config() 2249 term |= nv->termination.scsi_bus_0_control << 2; in qla1280_nvram_config() 2250 term |= nv->termination.auto_term_support << 7; in qla1280_nvram_config() 2252 WRT_REG_WORD(®->gpio_data, term); in qla1280_nvram_config()
|
/linux-4.1.27/Documentation/fmc/ |
D | FMC-and-SDB.txt | 49 FMC, as such, is not a bus in the usual meaning of the term, because
|
/linux-4.1.27/Documentation/cpu-freq/ |
D | boost.txt | 24 the term "boost" for convenience.
|
/linux-4.1.27/Documentation/networking/ |
D | lapb-module.txt | 10 term module in this context does not imply that the LAPB module is a 11 separately loadable module, although it may be. The term module is used in
|
D | LICENSE.qlge | 80 the term "modification".) Each licensee is addressed as "you".
|
D | LICENSE.qlcnic | 80 the term "modification".) Each licensee is addressed as "you".
|
/linux-4.1.27/Documentation/powerpc/ |
D | qe_firmware.txt | 44 In this document, the term 'microcode' refers to the sequence of 32-bit 47 The term 'firmware' refers to a binary blob that contains the microcode as
|
D | firmware-assisted-dump.txt | 53 NOTE: The term 'boot memory' means size of the low memory chunk
|
D | hvcs.txt | 439 term type "screen" to others. This means that curses based programs may
|
/linux-4.1.27/drivers/scsi/sym53c8xx_2/ |
D | sym_hipd.c | 192 u32 term; in sym_reset_scsi_bus() local 216 term = INB(np, nc_sstat0); in sym_reset_scsi_bus() 217 term = ((term & 2) << 7) + ((term & 1) << 17); /* rst sdp0 */ in sym_reset_scsi_bus() 218 term |= ((INB(np, nc_sstat2) & 0x01) << 26) | /* sdp1 */ in sym_reset_scsi_bus() 224 term &= 0x3ffff; in sym_reset_scsi_bus() 226 if (term != (2<<7)) { in sym_reset_scsi_bus() 233 (u_long)term, (u_long)(2<<7)); in sym_reset_scsi_bus()
|
/linux-4.1.27/Documentation/filesystems/ |
D | sysv-fs.txt | 80 Free blocks are organized in a "free list". Maybe a misleading term,
|
D | romfs.txt | 73 Every multi byte value (32 bit words, I'll use the longwords term from
|
D | f2fs.txt | 86 - Use a term, “node”, that represents inodes as well as various pointer blocks
|
D | ext4.txt | 117 exist yet so I'm not sure they're in the near-term roadmap.
|
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/ |
D | renesas,pfc-pinctrl.txt | 36 to pinctrl-bindings.txt in this directory for the definition of the term "pin
|
/linux-4.1.27/Documentation/ |
D | sysrq.txt | 26 64 = 0x40 - enable signalling of processes (term, kill, oom-kill) 170 term(e) and kill(i) are useful if you have some sort of runaway process you
|
D | stable_api_nonsense.txt | 37 source, hidden source, binary blobs, source wrappers, or any other term
|
D | edac.txt | 637 (QPI). At the driver, the term "socket" means one QPI. This is
|
/linux-4.1.27/arch/mips/include/asm/octeon/ |
D | cvmx-mio-defs.h | 655 uint64_t term:2; member 661 uint64_t term:2; 679 uint64_t term:2; member 685 uint64_t term:2; 702 uint64_t term:2; member 706 uint64_t term:2; 724 uint64_t term:2; member 730 uint64_t term:2;
|
/linux-4.1.27/Documentation/gpio/ |
D | gpio.txt | 91 driven) signaling. That term applies to CMOS transistors; "open collector" is
|
D | gpio-legacy.txt | 415 low signal level is actually driven. (That term applies to CMOS transistors;
|
/linux-4.1.27/Documentation/locking/ |
D | mutex-design.txt | 11 the generic term referring to 'mutual exclusion' found in academia
|
D | rt-mutex-design.txt | 87 lock - In this document from now on, I will use the term lock when
|
/linux-4.1.27/tools/lguest/ |
D | lguest.c | 2658 struct termios term = orig_term; in setup_console() local 2663 term.c_lflag &= ~(ISIG|ICANON|ECHO); in setup_console() 2664 tcsetattr(STDIN_FILENO, TCSANOW, &term); in setup_console()
|
/linux-4.1.27/ |
D | REPORTING-BUGS | 6 kernel, any "stable" kernel versions, and any "long term" kernels.
|
D | COPYING | 86 the term "modification".) Each licensee is addressed as "you".
|
D | CREDITS | 3835 D: Monitoring of development kernels for long-term stability.
|
/linux-4.1.27/Documentation/usb/ |
D | persist.txt | 14 The technical term is "power session".
|
D | mass-storage.txt | 78 unplugged from the host; the proper term for that is
|
/linux-4.1.27/arch/arm/nwfpe/ |
D | softfloat.c | 1455 bits64 rem, term; in float32_sqrt() local 1484 term = ( (bits64) zSig ) * zSig; in float32_sqrt() 1485 rem = ( ( (bits64) aSig )<<32 ) - term; in float32_sqrt()
|
/linux-4.1.27/Documentation/arm64/ |
D | booting.txt | 15 For the purposes of this document, we will use the term `boot loader'
|
/linux-4.1.27/Documentation/video4linux/ |
D | README.pvrusb2 | 77 (Note: The term "module" used below generally refers to loosely
|
D | vivid.txt | 265 but the long-term behavior is exactly following the framerate. So a 379 Like with video capture the framerate is also exact in the long term.
|
/linux-4.1.27/Documentation/dvb/ |
D | README.dvb-usb | 161 long-term test scenario.
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | timestamping.txt | 95 - the link time can be used to track long-term drifts between audio
|
D | SB-Live-mixer.txt | 351 pool of short term memory registers
|
D | Audigy-mixer.txt | 340 pool of short term memory registers
|
/linux-4.1.27/sound/pci/rme9652/ |
D | hdspm.c | 989 int term; /* 0 = off, 1 = on */ member 4189 if (1 == hdspm->tco->term) { in hdspm_tco_write() 4460 ucontrol->value.integer.value[0] = hdspm->tco->term; in snd_hdspm_get_tco_word_term() 4471 if (hdspm->tco->term != ucontrol->value.integer.value[0]) { in snd_hdspm_put_tco_word_term() 4472 hdspm->tco->term = ucontrol->value.integer.value[0]; in snd_hdspm_put_tco_word_term()
|
/linux-4.1.27/Documentation/arm/Marvell/ |
D | README | 265 Long-term plans
|
/linux-4.1.27/drivers/net/ethernet/rocker/ |
D | rocker.c | 3112 bool term; member 3133 .term = true, 3141 .term = true, 3242 if (ctrl->term) in rocker_port_ctrl_vlan()
|
/linux-4.1.27/Documentation/scsi/ |
D | arcmsr_spec.txt | 416 ** byte 3 : 0->COMA (term port),
|
D | LICENSE.qla4xxx | 81 the term "modification".) Each licensee is addressed as "you".
|
D | LICENSE.qla2xxx | 82 the term "modification".) Each licensee is addressed as "you".
|
/linux-4.1.27/Documentation/sysctl/ |
D | kernel.txt | 369 users. Note, this is a temporary solution only. The correct long-term 679 While long term we enforce one message per printk_ratelimit
|
/linux-4.1.27/Documentation/input/ |
D | event-codes.txt | 8 the same moment in time. In the following, the term "event" refers to a single
|
/linux-4.1.27/drivers/atm/ |
D | Kconfig | 300 which include a variety of variants in term of the size of the
|
/linux-4.1.27/drivers/scsi/aic7xxx/ |
D | aic7xxx_core.c | 5085 int term; in ahc_chip_init() local 5102 term = (ahc->flags & AHC_TERM_ENB_B) != 0 ? STPWEN : 0; in ahc_chip_init() 5106 |term|ahc->seltime_b|ENSTIMER|ACTNEGEN); in ahc_chip_init() 5115 term = (ahc->flags & AHC_TERM_ENB_A) != 0 ? STPWEN : 0; in ahc_chip_init() 5122 |term|ahc->seltime in ahc_chip_init()
|
/linux-4.1.27/drivers/scsi/qla2xxx/ |
D | qla_target.c | 3215 int term = 0; in qlt_term_ctio_exchange() local 3219 term = !(c->flags & in qlt_term_ctio_exchange() 3222 term = 1; in qlt_term_ctio_exchange() 3224 if (term) in qlt_term_ctio_exchange() 3227 return term; in qlt_term_ctio_exchange()
|
/linux-4.1.27/drivers/gpu/drm/bridge/ |
D | dw_hdmi.c | 838 hdmi_phy_i2c_write(hdmi, phy_config[i].term, 0x19); /* TXTERM */ in hdmi_phy_configure()
|
/linux-4.1.27/tools/usb/usbip/ |
D | COPYING | 70 the term "modification".) Each licensee is addressed as "you".
|
/linux-4.1.27/drivers/staging/rtl8192e/ |
D | license | 73 translation is included without limitation in the term "modification".)
|
/linux-4.1.27/drivers/staging/rtl8192u/ |
D | copying | 70 the term "modification".) Each licensee is addressed as "you".
|
/linux-4.1.27/mm/ |
D | Kconfig | 398 long-term mappings means that the space is wasted.
|
/linux-4.1.27/Documentation/cgroups/ |
D | unified-hierarchy.txt | 212 to resolve in the long term.
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | mmu.txt | 43 tdp two dimensional paging (vendor neutral term for NPT and EPT)
|
/linux-4.1.27/drivers/hid/ |
D | Kconfig | 13 interacts directly with and takes input from humans. The term "HID"
|
/linux-4.1.27/Documentation/mtd/ |
D | nand_ecc.txt | 95 nicer picture.(but they use line parity as term where I use row parity)
|
/linux-4.1.27/Documentation/RCU/ |
D | whatisRCU.txt | 145 longer-term references to data structures.
|
/linux-4.1.27/drivers/staging/speakup/ |
D | spkguide.txt | 120 manual uses the term keypad instead of numeric keypad. Also I'm lazy 1079 screen. Speakup uses the term "Window", to mean a user defined area of
|
/linux-4.1.27/Documentation/power/ |
D | runtime_pm.txt | 803 The term "autosuspend" is an historical remnant. It doesn't mean that the
|