Home
last modified time | relevance | path

Searched refs:f (Results 426 – 450 of 5324) sorted by relevance

1...<<11121314151617181920>>...213

/freebsd/usr.bin/localedef/
H A Dtime.c231 FILE *f; in dump_time() local
234 if ((f = open_category()) == NULL) { in dump_time()
239 if (putl_category(tm.mon[i], f) == EOF) { in dump_time()
244 if (putl_category(tm.month[i], f) == EOF) { in dump_time()
249 if (putl_category(tm.wday[i], f) == EOF) { in dump_time()
254 if (putl_category(tm.weekday[i], f) == EOF) { in dump_time()
265 if ((putl_category(tm.X_fmt, f) == EOF) || in dump_time()
266 (putl_category(tm.x_fmt, f) == EOF) || in dump_time()
267 (putl_category(tm.c_fmt, f) == EOF) || in dump_time()
268 (putl_category(tm.am, f) == EOF) || in dump_time()
[all …]
/freebsd/contrib/llvm-project/lld/Common/
H A DDriverDispatcher.cpp92 if (Flavor f = getFlavor(s)) in parseProgname() local
93 return f; in parseProgname()
105 Flavor f = getFlavor(argsV[2]); in parseFlavorWithoutMinGW() local
106 if (f == Invalid) { in parseFlavorWithoutMinGW()
111 return f; in parseFlavorWithoutMinGW()
118 Flavor f = parseProgname(arg0); in parseFlavorWithoutMinGW() local
119 if (f == Invalid) { in parseFlavorWithoutMinGW()
125 return f; in parseFlavorWithoutMinGW()
129 Flavor f = parseFlavorWithoutMinGW(argsV); in parseFlavor() local
130 if (f == Gnu) { in parseFlavor()
[all …]
/freebsd/contrib/gdtoa/
H A Darithchk.c144 FILE *f; in main() local
147 f = fopen("arith.h", "w"); in main()
148 if (!f) { in main()
153 f = stdout; in main()
165 fprintf(f, "#define %s\n#define Arith_Kind_ASL %d\n", in main()
168 fprintf(f, "#define Long int\n#define Intcast (int)(long)\n"); in main()
170 fprintf(f, "#define Double_Align\n"); in main()
172 fprintf(f, "#define X64_bit_pointers\n"); in main()
176 fprintf(f, "#define NO_LONG_LONG\n"); in main()
178 fprintf(f, "#define Sudden_Underflow\n"); in main()
[all …]
/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/
H A Dv_expm1_inline.h50 float64x2_t f = vfmsq_laneq_f64 (x, n, ln2, 0); in expm1_inline() local
51 f = vfmsq_laneq_f64 (f, n, ln2, 1); in expm1_inline()
58 float64x2_t f2 = vmulq_f64 (f, f); in expm1_inline()
63 float64x2_t p01 = vfmaq_laneq_f64 (v_f64 (0.5), f, lane_consts_13, 0); in expm1_inline()
64 float64x2_t p23 = vfmaq_laneq_f64 (d->c2, f, lane_consts_13, 1); in expm1_inline()
65 float64x2_t p45 = vfmaq_laneq_f64 (d->c4, f, lane_consts_57, 0); in expm1_inline()
66 float64x2_t p67 = vfmaq_laneq_f64 (d->c6, f, lane_consts_57, 1); in expm1_inline()
69 float64x2_t p89 = vfmaq_laneq_f64 (d->c8, f, lane_consts_910, 0); in expm1_inline()
74 p = vfmaq_f64 (f, f2, p); in expm1_inline()
/freebsd/lib/libmd/
H A Dsha_locl.h215 #define BODY_00_15(i,a,b,c,d,e,f,xa) \ argument
216 (f)=xa[i]+(e)+K_00_19+ROTATE((a),5)+F_00_19((b),(c),(d)); \
219 #define BODY_16_19(i,a,b,c,d,e,f,xa,xb,xc,xd) \ argument
220 Xupdate(f,i,xa,xb,xc,xd); \
221 (f)+=(e)+K_00_19+ROTATE((a),5)+F_00_19((b),(c),(d)); \
224 #define BODY_20_31(i,a,b,c,d,e,f,xa,xb,xc,xd) \ argument
225 Xupdate(f,i,xa,xb,xc,xd); \
226 (f)+=(e)+K_20_39+ROTATE((a),5)+F_20_39((b),(c),(d)); \
229 #define BODY_32_39(i,a,b,c,d,e,f,xa) \ argument
230 Xupdate(f,i,xa,xa,xa,xa); \
[all …]
/freebsd/stand/libsa/
H A Dsplitfs.c45 static int splitfs_open(const char *path, struct open_file *f);
46 static int splitfs_close(struct open_file *f);
47 static int splitfs_read(struct open_file *f, void *buf, size_t size, size_t *resid);
48 static off_t splitfs_seek(struct open_file *f, off_t offset, int where);
49 static int splitfs_stat(struct open_file *f, struct stat *sb);
102 splitfs_open(const char *fname, struct open_file *f) in splitfs_open() argument
110 if (f->f_flags != F_READ) in splitfs_open()
174 f->f_fsdata = sf; in splitfs_open()
179 splitfs_close(struct open_file *f) in splitfs_close() argument
184 sf = (struct split_file *)f->f_fsdata; in splitfs_close()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_mac.cpp52 #define OSATOMIC_INTERCEPTOR(return_t, t, tsan_t, f, tsan_atomic_f, mo) \ argument
53 TSAN_INTERCEPTOR(return_t, f, t x, volatile t *ptr) { \
54 SCOPED_TSAN_INTERCEPTOR(f, x, ptr); \
58 #define OSATOMIC_INTERCEPTOR_PLUS_X(return_t, t, tsan_t, f, tsan_atomic_f, mo) \ argument
59 TSAN_INTERCEPTOR(return_t, f, t x, volatile t *ptr) { \
60 SCOPED_TSAN_INTERCEPTOR(f, x, ptr); \
64 #define OSATOMIC_INTERCEPTOR_PLUS_1(return_t, t, tsan_t, f, tsan_atomic_f, mo) \ argument
65 TSAN_INTERCEPTOR(return_t, f, volatile t *ptr) { \
66 SCOPED_TSAN_INTERCEPTOR(f, ptr); \
70 #define OSATOMIC_INTERCEPTOR_MINUS_1(return_t, t, tsan_t, f, tsan_atomic_f, \ argument
[all …]
/freebsd/sys/amd64/amd64/
H A Dsupport.S92 ja 101632f
95 jg 100816f
98 jg 100408f
101 jge 100204f
104 jl 100000f
117 jne 80f
121 jne 10081608f
129 jne 80f
133 jne 10040804f
141 jne 1f
[all …]
/freebsd/secure/caroot/trusted/
H A DGlobalSign_Root_CA_-_R6.pem31 b8:41:92:33:14:a4:6f:7f:e9:2a:cc:c6:b0:88:6b:
34 80:ca:44:de:73:94:4e:f3:a7:89:7f:4f:78:63:08:
35 c8:12:50:6d:42:66:2f:4d:b9:79:28:4d:52:1a:8a:
39 82:63:50:d0:f0:18:89:df:e4:0f:79:f5:ea:a2:1f:
47 85:b7:73:a2:b8:35:aa:45:f2:e0:9d:36:a1:6f:54:
50 bc:71:37:e5:a6:ec:21:08:75:fc:e6:61:16:3f:77:
52 39:fb:83:f2:5e:14:a1:04:b0:0b:e9:fe:ee:8f:e1:
56 05:9e:27:59:4c:76:39:5b:ea:f9:a5:a1:d8:83:0f:
58 2c:7a:58:4f:d3:4b:08:49:c5:95:64:1a:63:0e:79:
60 5c:54:b1:65:b6:bf:8c:9b:dc:13:e9:0d:6f:b8:2e:
[all …]
H A DEntrust_Root_Certification_Authority.pem28 00:b6:95:b6:43:42:fa:c6:6d:2a:6f:48:df:94:4c:
30 8f:a1:38:28:fc:f7:10:46:66:2e:4d:1e:1a:b1:1a:
35 80:50:3f:09:8a:84:00:ec:30:0a:3d:18:cd:fb:fd:
36 2a:59:9a:23:95:17:2c:45:9e:1f:6e:43:79:6d:0c:
39 25:71:88:ad:be:bc:8f:ac:52:96:4b:aa:51:8d:e4:
40 13:31:19:e8:4e:4d:9f:db:ac:b3:6a:d5:bc:39:54:
41 71:ca:7a:7a:7f:90:dd:7d:1d:80:d9:81:bb:59:26:
43 80:70:4d:af:38:86:2e:9e:7f:57:af:9e:17:ae:eb:
44 1c:cb:28:21:5f:b6:1c:d8:e7:a2:04:22:f9:d3:da:
62 93:d4:30:b0:d7:03:20:2a:d0:f9:63:e8:91:0c:05:20:a9:5f:
[all …]
H A DXRamp_Global_CA_Root.pem18 50:94:6c:ec:18:ea:d5:9c:4d:d5:97:ef:75:8f:a0:ad
31 7e:23:74:fe:5e:7e:b4:4a:b7:a6:ad:1f:ae:e0:06:
32 16:e2:9b:5b:d9:67:74:6b:5d:80:8f:29:9d:86:1b:
33 d9:9c:0d:98:6d:76:10:28:58:e4:65:b0:7f:4a:98:
34 79:9f:e0:c3:31:7e:80:2b:b5:8c:c0:40:3b:11:86:
35 d0:cb:a2:86:36:60:a4:d5:30:82:6d:d9:6e:d0:0f:
36 12:04:33:97:5f:4f:61:5a:f0:e4:f9:91:ab:e7:1d:
38 61:44:cc:6f:a0:4a:a9:94:b0:4d:da:e7:a9:34:7a:
41 d7:0a:57:ac:64:9b:19:eb:f4:0f:04:08:8a:ac:03:
43 6d:d3:8a:1e:14:da:c4:8f:a6:e2:23:85:d5:7a:0d:
[all …]
H A DBaltimore_CyberTrust_Root.pem32 52:7b:88:77:d3:1c:8f:c7:ba:b9:88:b5:6a:09:e7:
33 73:e8:11:40:a7:d1:cc:ca:62:8d:2d:e5:8f:0b:a6:
35 a9:67:b8:3f:0c:d5:f7:f9:52:13:2f:c2:1b:d5:70:
36 70:f0:8f:c0:12:ca:06:cb:9a:e1:d9:ca:33:7a:77:
40 ea:eb:d4:03:ae:5e:84:3e:5f:ff:15:ed:69:bc:f9:
42 c9:23:53:3f:1f:24:98:21:5c:07:99:29:bd:c6:3a:
56 85:0c:5d:8e:e4:6f:51:68:42:05:a0:dd:bb:4f:27:25:84:03:
57 bd:f7:64:fd:2d:d7:30:e3:a4:10:17:eb:da:29:29:b6:79:3f:
59 12:8a:17:d5:0a:bd:c5:bc:30:7c:d6:e9:0c:25:8d:86:40:4f:
60 ec:cc:a3:7e:38:c6:37:11:4f:ed:dd:68:31:8e:4c:d2:b3:01:
[all …]
H A DSecure_Global_CA.pem30 b3:4f:d8:cc:21:47:f8:f1:60:38:89:89:03:e9:bd:
32 31:61:d7:29:33:4c:ce:c7:7c:0a:37:7e:0f:ba:32:
33 98:e1:1d:97:af:8f:c7:dc:c9:38:96:f3:db:1a:fc:
35 63:2e:e0:fe:75:fe:98:a7:5f:49:2e:95:e3:39:33:
36 64:8e:1e:a4:5f:90:d2:67:3c:b2:d9:fe:41:b9:55:
45 18:1b:12:99:49:2f:88:4b:fd:50:62:d1:73:e7:8f:
64 63:1a:08:40:7d:a4:5e:53:0d:77:d8:7a:ae:1f:0d:0b:51:16:
67 35:5a:4a:44:5e:4e:57:fa:75:ce:1f:48:ce:66:f4:3c:40:26:
69 d3:6f:e7:27:08:3a:4e:19:1f:3a:a7:58:5c:17:cf:79:3f:8b:
70 e4:a7:d3:26:23:9d:26:0f:58:69:fc:47:7e:b2:d0:8d:8b:93:
[all …]
H A DSecurity_Communication_RootCA2.pem31 5d:ec:21:b5:41:ab:cd:b9:7e:76:9f:be:f9:3e:36:
36 15:be:3a:56:a6:5a:6f:76:69:52:a9:7a:b9:c8:eb:
38 ca:3a:06:00:37:47:e4:7e:57:4f:3f:8b:eb:67:b8:
41 a2:39:df:94:b8:70:1f:28:3f:8b:fc:40:5e:63:83:
42 3c:83:2a:1a:99:6b:cf:de:59:6a:3b:fc:6f:16:d7:
43 1f:fd:4a:10:eb:4e:82:16:3a:ac:27:0c:53:f1:ad:
57 1c:ee:59:6c:08:ba:89:5f:6a:ca:4a:95:9e:7a:8f:07:c5:da:
58 45:72:82:71:0e:3a:d2:cc:6f:a7:b4:a1:23:bb:f6:24:9f:cb:
60 33:5f:64:b6:65:3b:89:6f:18:76:78:f5:dc:a2:48:1f:19:3f:
62 3e:05:7c:e2:1d:5e:c6:a7:bc:97:4f:68:3a:f5:e9:2e:0a:43:
[all …]
H A DemSign_Root_CA_-_C1.pem30 34:51:84:56:10:f5:a0:4f:2c:12:e3:fa:13:9a:27:
31 d0:cf:f9:79:1a:74:5f:1d:79:39:fc:5b:f8:70:8e:
33 3f:5e:c7:b6:07:ee:3e:c0:ce:9a:af:ac:56:42:2a:
37 05:8b:1c:11:e3:e4:b4:b8:5d:85:1d:83:fe:78:5f:
38 0b:45:68:18:48:a5:46:73:34:3b:fe:0f:c8:76:bb:
40 88:ce:a6:b6:91:b0:4f:ac:7e:15:23:96:f6:3f:f0:
41 20:34:16:de:0a:c6:c4:04:45:79:7f:a7:fd:be:d2:
42 a9:a5:af:9c:c5:23:2a:f7:3c:21:6c:bd:af:8f:4e:
46 b9:0f
58 41:4c:3b:27:2c:c4:6c:18:15:80:c6:ac:af:47:59:2f:26:0b:
[all …]
/freebsd/secure/caroot/untrusted/
H A DD-TRUST_Root_CA_3_2013.pem26 00:c4:7b:42:92:82:1f:ec:ed:54:98:8e:12:c0:ca:
31 9f:32:bd:84:22:e0:dc:c2:ee:10:46:39:6d:af:93:
33 75:4c:0b:e0:bb:c5:d7:bc:3e:79:f2:5f:be:d1:90:
34 57:f9:ae:f6:66:5f:31:bf:d3:6d:8f:a7:ba:4a:f3:
37 51:3b:90:32:03:9f:1c:72:74:90:de:3d:ed:61:d2:
38 e5:e3:fd:64:47:e5:b9:b7:4a:a9:f7:1f:ae:96:86:
39 04:ac:2f:e3:a4:81:77:b7:5a:16:ff:d8:0f:3f:f6:
41 88:f3:d5:44:81:86:95:23:9f:7b:dd:bc:d9:34:ef:
60 4b:b7:b3:88:6d:5c:a9:17:70:f0:2a:9f:8d:7b:f9:7b:85:fa:
61 c7:39:e8:10:08:b0:35:2b:5f:cf:02:d2:d3:9c:c8:0b:1e:ee:
[all …]
H A DVeriSign_Universal_Root_Certification_Authority.pem30 da:cd:4d:00:b4:c8:2d:73:a5:c7:69:71:95:1f:39:
32 8f:32:22:61:82:c5:87:1f:6e:8c:7c:5f:16:20:51:
33 44:d1:70:4f:57:ea:e3:1c:e3:cc:79:ee:58:d8:0e:
35 33:78:e1:33:e2:f3:10:1a:7f:87:2c:be:f6:f5:f7:
36 42:e2:e5:bf:87:62:89:5f:00:4b:df:c5:dd:e4:75:
39 11:79:84:ed:5e:54:f6:34:9f:08:01:f3:10:25:06:
42 d3:ac:9f:55:00:c7:f6:08:6a:94:b9:5f:dc:e0:33:
58 0e:0d:dc:c8:b9:35:b9:70:4f:63:fa:24:fa:6c:83:8c:47:9d:
61 4c:1d:59:90:4a:ef:90:16:28:1f:5a:ae:10:fb:81:50:38:0c:
63 46:f4:1b:11:d0:4d:73:a3:7d:46:f9:3d:ed:a8:5f:62:d4:f1:
[all …]
H A Dthawte_Primary_Root_CA.pem17 34:4e:d5:57:20:d5:ed:ec:49:f4:2f:ce:37:db:2b:6d
30 59:37:fc:0b:33:19:c2:77:7f:cc:10:2d:95:34:1c:
32 24:5f:06:c0:cc:44:94:94:8d:02:62:6f:eb:5a:dd:
33 11:8d:28:9a:5c:84:90:10:7a:0d:bd:74:66:2f:6a:
34 38:a0:e2:d5:54:44:eb:1d:07:9f:07:ba:6f:ee:e9:
39 dd:cf:87:58:ba:4a:4f:ca:68:07:1d:1c:9d:4a:c6:
40 d5:2f:91:cc:7c:71:72:1c:c5:c0:67:eb:32:fd:c9:
42 91:1f:97:6a:52:cb:de:09:36:a4:77:d8:7b:87:50:
57 93:d2:ce:03:3f:ed:da:25:b0:1d:57:cb:1e:3a:76:a0:4c:ec:
61 37:8e:2f:78:5c:90:68:47:d9:60:60:e6:fc:07:3d:22:20:17:
[all …]
H A DOISTE_WISeKey_Global_Root_GA_CA.pem16 41:3d:72:c7:f4:6b:1f:81:43:7d:f1:d2:28:54:df:9a
27 00:cb:4f:b3:00:9b:3d:36:dd:f9:d1:49:6a:6b:10:
28 49:1f:ec:d8:2b:b2:c6:f8:32:81:29:43:95:4c:9a:
38 b4:63:a2:9f:7f:93:13:30:f1:a1:27:db:d9:ff:2c:
39 55:88:91:a0:e0:4f:07:b0:28:56:8c:18:1b:97:44:
40 8e:89:dd:e0:17:6e:e7:2a:ef:8f:39:0a:31:84:82:
58 09:41:fa:94:00:1c:a4:a4:ab:49:4f:8f:3d:1e:ef:4d:6f:bd:
59 bc:a4:f6:f2:26:30:c9:10:ca:1d:88:fb:74:19:1f:85:45:bd:
60 b0:6c:51:f9:36:7e:db:f5:4c:32:3a:41:4f:5b:47:cf:e8:0b:
61 2d:b6:c4:19:9d:74:c5:47:c6:3b:6a:0f:ac:14:db:3c:f4:73:
[all …]
/freebsd/stand/liblua/
H A Dlutils.c269 FILE * f = fopen(str, mode); in lua_openfile() local
270 if (f != NULL) { in lua_openfile()
272 *ptr = f; in lua_openfile()
281 FILE ** f; in lua_closefile() local
287 f = (FILE**)lua_touserdata(L, 1); in lua_closefile()
288 if (f != NULL && *f != NULL) { in lua_closefile()
289 lua_pushboolean(L, fclose(*f) == 0 ? 1 : 0); in lua_closefile()
290 *f = NULL; in lua_closefile()
300 FILE **f; in lua_readfile() local
310 f = (FILE**)lua_touserdata(L, 1); in lua_readfile()
[all …]
/freebsd/sys/netgraph/bluetooth/socket/
H A Dng_btsocket_hci_raw.c733 bitstr_t *f = NULL; in ng_btsocket_hci_raw_init() local
814 f = ng_btsocket_hci_raw_sec_filter->events; in ng_btsocket_hci_raw_init()
815 bit_clear(f, NG_HCI_EVENT_RETURN_LINK_KEYS - 1); in ng_btsocket_hci_raw_init()
816 bit_clear(f, NG_HCI_EVENT_LINK_KEY_NOTIFICATION - 1); in ng_btsocket_hci_raw_init()
817 bit_clear(f, NG_HCI_EVENT_VENDOR - 1); in ng_btsocket_hci_raw_init()
820 f = ng_btsocket_hci_raw_sec_filter->commands[NG_HCI_OGF_LINK_CONTROL-1]; in ng_btsocket_hci_raw_init()
821 bit_set(f, NG_HCI_OCF_INQUIRY - 1); in ng_btsocket_hci_raw_init()
822 bit_set(f, NG_HCI_OCF_INQUIRY_CANCEL - 1); in ng_btsocket_hci_raw_init()
823 bit_set(f, NG_HCI_OCF_PERIODIC_INQUIRY - 1); in ng_btsocket_hci_raw_init()
824 bit_set(f, NG_HCI_OCF_EXIT_PERIODIC_INQUIR in ng_btsocket_hci_raw_init()
[all...]
/freebsd/stand/kboot/kboot/
H A Dhostfs.c50 hostfs_open(const char *fn, struct open_file *f) in hostfs_open() argument
56 if (f->f_dev != &host_dev) { in hostfs_open()
92 f->f_fsdata = hf; in hostfs_open()
97 hostfs_close(struct open_file *f) in hostfs_close() argument
99 hostfs_file *hf = f->f_fsdata; in hostfs_close()
103 f->f_fsdata = NULL; in hostfs_close()
109 hostfs_read(struct open_file *f, void *start, size_t size, size_t *resid) in hostfs_read() argument
111 hostfs_file *hf = f->f_fsdata; in hostfs_read()
123 hostfs_seek(struct open_file *f, off_t offset, int whence) in hostfs_seek() argument
125 hostfs_file *hf = f in hostfs_seek()
145 hostfs_stat(struct open_file * f,struct stat * sb) hostfs_stat() argument
182 hostfs_readdir(struct open_file * f,struct dirent * d) hostfs_readdir() argument
251 host_dev_open(struct open_file * f,...) host_dev_open() argument
257 host_dev_close(struct open_file * f) host_dev_close() argument
[all...]
/freebsd/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-procfs-list.c62 procfs_list_seq_show(struct seq_file *f, void *p) in procfs_list_seq_show() argument
64 procfs_list_cursor_t *cursor = f->private; in procfs_list_seq_show()
70 return (procfs_list->pl_show_header(f)); in procfs_list_seq_show()
74 return (procfs_list->pl_show(f, p)); in procfs_list_seq_show()
108 procfs_list_seq_start(struct seq_file *f, loff_t *pos) in procfs_list_seq_start() argument
110 procfs_list_cursor_t *cursor = f->private; in procfs_list_seq_start()
147 procfs_list_seq_next(struct seq_file *f, void *p, loff_t *pos) in procfs_list_seq_next() argument
149 procfs_list_cursor_t *cursor = f->private; in procfs_list_seq_next()
155 procfs_list_seq_stop(struct seq_file *f, void *p) in procfs_list_seq_stop() argument
157 procfs_list_cursor_t *cursor = f->private; in procfs_list_seq_stop()
[all …]
/freebsd/lib/libc/stdio/
H A Dvsscanf.c60 FILE f = FAKE_FILE; in vsscanf_l() local
63 f._flags = __SRD; in vsscanf_l()
64 f._bf._base = f._p = (unsigned char *)str; in vsscanf_l()
65 f._bf._size = f._r = strlen(str); in vsscanf_l()
66 f._read = eofread; in vsscanf_l()
67 return (__svfscanf(&f, locale, fmt, ap)); in vsscanf_l()
/freebsd/sys/dev/sdio/
H A Dsdiob.c171 /*timeout*/ sc->cardinfo.f[fn].timeout); in sdiob_rw_direct_sc()
263 KASSERT((blksz <= sc->cardinfo.f[fn].cur_blksize), ("%s: blksz " in sdiob_rw_extended_cam()
266 sc->cardinfo.f[fn].cur_blksize, sc, fn, addr, in sdiob_rw_extended_cam()
323 /*timeout*/ sc->cardinfo.f[fn].timeout); in sdiob_rw_extended_cam()
385 size > 4 && size >= sc->cardinfo.f[fn].cur_blksize) { in sdiob_rw_extended_sc()
386 b_count = size / sc->cardinfo.f[fn].cur_blksize; in sdiob_rw_extended_sc()
389 sc->cardinfo.f[fn].cur_blksize)); in sdiob_rw_extended_sc()
397 len = b_count * sc->cardinfo.f[fn].cur_blksize; in sdiob_rw_extended_sc()
399 b_count, sc->cardinfo.f[fn].cur_blksize); in sdiob_rw_extended_sc()
410 len = MIN(size, sc->cardinfo.f[fn].cur_blksize); in sdiob_rw_extended_sc()
[all …]

1...<<11121314151617181920>>...213