Home
last modified time | relevance | path

Searched refs:ans (Results 1 – 25 of 33) sorted by relevance

12

/openbmc/linux/tools/testing/ktest/
H A Dconfig-bisect.pl113 my $ans;
121 $ans = <STDIN>;
122 chomp $ans;
123 if ($ans =~ /^\s*$/) {
125 $ans = "c";
127 $ans = "n";
130 last if ($ans =~ /^y$/i || $ans =~ /^n$/i);
132 last if ($ans =~ /^c$/i);
138 if ($ans =~ /^c/i) {
141 if ($ans !~ /^y$/i) {
H A Dktest.pl602 my $ans;
611 chomp $ans;
614 $ans = "c";
616 $ans = "y";
619 last if ($ans =~ /^y$/i || $ans =~ /^n$/i);
650 my $ans;
1264 chomp $ans;
2756 chomp $ans;
2757 if ($ans eq "p" || $ans eq "P") {
2759 } elsif ($ans eq "f" || $ans eq "F") {
[all …]
/openbmc/linux/Documentation/devicetree/bindings/nvme/
H A Dapple,nvme-ans.yaml4 $id: http://devicetree.org/schemas/nvme/apple,nvme-ans.yaml#
29 - const: ans
47 - const: ans
106 reg-names = "nvme", "ans";
108 mboxes = <&ans>;
111 power-domain-names = "ans", "apcie0";
/openbmc/linux/tools/testing/selftests/nci/
H A Dnci_dev.c182 } ans; in get_family_id() local
194 resp_len = recv(sd, &ans, sizeof(ans), 0); in get_family_id()
197 !NLMSG_OK(&ans.n, resp_len)) in get_family_id()
201 resp_len = GENLMSG_PAYLOAD(&ans.n); in get_family_id()
202 na = (struct nlattr *)GENLMSG_DATA(&ans); in get_family_id()
235 na = (struct nlattr *)(GENLMSG_DATA(&ans) + len); in get_family_id()
644 } ans; in get_taginfo() local
663 resp_len = recv(sd, &ans, sizeof(ans), 0); in get_taginfo()
665 !NLMSG_OK(&ans.n, resp_len)) in get_taginfo()
668 resp_len = GENLMSG_PAYLOAD(&ans.n); in get_taginfo()
[all …]
/openbmc/linux/drivers/net/wireless/intersil/orinoco/
H A Dorinoco_usb.c608 ans->ans_reply_count, reply_count); in ezusb_request_in_callback()
615 le16_to_cpu(ans->hermes_rid)); in ezusb_request_in_callback()
622 ctx->buf = (void *) ans; in ezusb_request_in_callback()
945 struct ezusb_packet *ans = ctx->buf; in ezusb_access_ltv() local
948 if (ans->hermes_len != 0) in ezusb_access_ltv()
1091 memcpy(buf, ans->data + offset, len); in ezusb_bap_pread()
1102 memcpy(buf, ans->data + offset - 4, len); in ezusb_bap_pread()
1457 if (urb->actual_length < sizeof(*ans)) { in ezusb_bulk_in_callback()
1461 crc = build_crc(ans); in ezusb_bulk_in_callback()
1462 if (le16_to_cpu(ans->crc) != crc) { in ezusb_bulk_in_callback()
[all …]
/openbmc/linux/tools/accounting/
H A Dprocacct.c175 } ans; in get_family_id() local
188 rep_len = recv(sd, &ans, sizeof(ans), 0); in get_family_id()
189 if (ans.n.nlmsg_type == NLMSG_ERROR || in get_family_id()
190 (rep_len < 0) || !NLMSG_OK((&ans.n), rep_len)) in get_family_id()
193 na = (struct nlattr *) GENLMSG_DATA(&ans); in get_family_id()
H A Dgetdelays.c168 } ans; in get_family_id() local
181 rep_len = recv(sd, &ans, sizeof(ans), 0); in get_family_id()
182 if (ans.n.nlmsg_type == NLMSG_ERROR || in get_family_id()
183 (rep_len < 0) || !NLMSG_OK((&ans.n), rep_len)) in get_family_id()
186 na = (struct nlattr *) GENLMSG_DATA(&ans); in get_family_id()
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-dbs/mongodb/mongodb/
H A D0001-Support-deprecated-resolver-functions.patch25 +#define res_nsearch(sta, nam, clas, typ, ans, alen) res_search(nam, clas, typ, ans, alen)
/openbmc/linux/arch/arm64/boot/dts/apple/
H A Dt600x-nvme.dtsi31 reg-names = "nvme", "ans";
40 power-domain-names = "ans", "apcie0", "apcie1";
H A Dt8103.dtsi710 reg-names = "nvme", "ans";
716 power-domain-names = "ans", "apcie0";
H A Dt8112.dtsi748 reg-names = "nvme", "ans";
754 power-domain-names = "ans", "apcie0";
/openbmc/linux/arch/m68k/fpsp040/
H A Dslog2.S42 | 2.2 Return ans := Y * INV_L10.
56 | 2.2 Return ans := Y * INV_L10.
71 | 2.2 Return ans := Y * INV_L2.
87 | 2.3 Return ans := convert-to-double-extended(k).
93 | 4.2 Return ans := Y * INV_L2.
H A Dsetox.S50 | Step 1. Set ans := 1.0
52 | Step 2. Return ans := ans + sign(X)*2^(-126). Exit.
142 | ans := T + ( T*p + t)
155 | 6.2 ans := ans * AdjScale
157 | 6.4 Return ans := ans * Scale. Exit.
173 | 7.1 ans := X
175 | 7.3 Return ans := 1 + ans. Exit
198 | 9.2 ans := Huge, go to 9.4
199 | 9.3 ans := Tiny.
201 | 9.5 Return ans := ans * ans. Exit.
/openbmc/linux/tools/testing/selftests/net/af_unix/
H A Dtest_unix_oob.c73 int ans = -1; in is_sioctatmark() local
75 if (ioctl(fd, SIOCATMARK, &ans, sizeof(ans)) < 0) { in is_sioctatmark()
80 return ans; in is_sioctatmark()
/openbmc/qemu/tests/unit/
H A Dtest-qobject-input-visitor.c820 AltNumEnum *ans; in test_visitor_in_alternate_number() local
838 visit_type_AltNumEnum(v, NULL, &ans, &error_abort); in test_visitor_in_alternate_number()
839 g_assert_cmpint(ans->type, ==, QTYPE_QNUM); in test_visitor_in_alternate_number()
840 g_assert_cmpfloat(ans->u.n, ==, 42); in test_visitor_in_alternate_number()
841 qapi_free_AltNumEnum(ans); in test_visitor_in_alternate_number()
869 visit_type_AltNumEnum(v, NULL, &ans, &error_abort); in test_visitor_in_alternate_number()
870 g_assert_cmpint(ans->type, ==, QTYPE_QNUM); in test_visitor_in_alternate_number()
871 g_assert_cmpfloat(ans->u.n, ==, 42.5); in test_visitor_in_alternate_number()
872 qapi_free_AltNumEnum(ans); in test_visitor_in_alternate_number()
H A Dtest-char.c358 const char *ans[] = { "HTTP/1.1 101 Switching Protocols\r\n", in websock_check_http_headers() local
366 if (g_strstr_len(buf, size, ans[i]) == NULL) { in websock_check_http_headers()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/uthash/
H A Duthash_2.3.0.bb37 install -m0644 tests/test*[0-9].ans ${D}${PTEST_PATH}/tests
/openbmc/linux/drivers/edac/
H A Di7300_edac.c590 int mtr, ans, addrBits, channel; in decode_mtr() local
595 ans = MTR_DIMMS_PRESENT(mtr) ? 1 : 0; in decode_mtr()
598 slot, channel, ans ? "" : "NOT "); in decode_mtr()
601 if (!ans) in decode_mtr()
H A Di5400_edac.c890 int ans; in decode_mtr() local
892 ans = MTR_DIMMS_PRESENT(mtr); in decode_mtr()
895 slot_row, mtr, ans ? "" : "NOT "); in decode_mtr()
896 if (!ans) in decode_mtr()
H A Di5000_edac.c967 int ans; in decode_mtr() local
969 ans = MTR_DIMMS_PRESENT(mtr); in decode_mtr()
972 slot_row, mtr, ans ? "" : "NOT "); in decode_mtr()
973 if (!ans) in decode_mtr()
/openbmc/u-boot/scripts/kconfig/
H A Dnconf.c1021 static int do_match(int key, struct match_state *state, int *ans) in do_match() argument
1025 *ans = -1; in do_match()
1041 *ans = get_mext_match(state->pattern, in do_match()
1045 *ans = get_mext_match(state->pattern, in do_match()
1049 *ans = get_mext_match(state->pattern, in do_match()
/openbmc/linux/scripts/kconfig/
H A Dnconf.c1092 static int do_match(int key, struct match_state *state, int *ans) in do_match() argument
1096 *ans = -1; in do_match()
1112 *ans = get_mext_match(state->pattern, in do_match()
1116 *ans = get_mext_match(state->pattern, in do_match()
1120 *ans = get_mext_match(state->pattern, in do_match()
/openbmc/linux/drivers/macintosh/
H A DMakefile13 obj-$(CONFIG_ANSLCD) += ans-lcd.o
/openbmc/linux/drivers/usb/host/
H A Dfhci-sched.c281 int ans = 1; in scan_ed_list() local
320 ans = 0; in scan_ed_list()
332 return ans; in scan_ed_list()
/openbmc/linux/drivers/net/wireless/realtek/rtw88/
H A Dcoex.c3568 u8 ans = 0xFF; in rtw_coex_get_table_index() local
3590 ans = i; in rtw_coex_get_table_index()
3592 ans += 100; in rtw_coex_get_table_index()
3597 return ans; in rtw_coex_get_table_index()
3604 u8 ans = 0xFF; in rtw_coex_get_tdma_index() local
3630 ans = i; in rtw_coex_get_tdma_index()
3635 return ans; in rtw_coex_get_tdma_index()

12