Home
last modified time | relevance | path

Searched refs:fc (Results 1 – 25 of 89) sorted by relevance

1234

/minix/external/bsd/tcpdump/dist/
H A Dprint-802_15_4.c47 extract_header_length(uint16_t fc) in extract_header_length() argument
51 switch ((fc >> 10) & 0x3) { in extract_header_length()
66 switch ((fc >> 14) & 0x3) { in extract_header_length()
79 if (fc & (1 << 6)) { in extract_header_length()
95 uint16_t fc; in ieee802_15_4_if_print() local
103 fc = EXTRACT_LE_16BITS(p); in ieee802_15_4_if_print()
104 hdrlen = extract_header_length(fc); in ieee802_15_4_if_print()
126 switch ((fc >> 10) & 0x3) { in ieee802_15_4_if_print()
148 switch ((fc >> 14) & 0x3) { in ieee802_15_4_if_print()
156 if (!(fc & (1 << 6))) { in ieee802_15_4_if_print()
[all …]
H A Dprint-802_11.c165 #define FC_VERSION(fc) ((fc) & 0x3) argument
166 #define FC_TYPE(fc) (((fc) >> 2) & 0x3) argument
167 #define FC_SUBTYPE(fc) (((fc) >> 4) & 0xF) argument
168 #define FC_TO_DS(fc) ((fc) & 0x0100) argument
169 #define FC_FROM_DS(fc) ((fc) & 0x0200) argument
170 #define FC_MORE_FLAG(fc) ((fc) & 0x0400) argument
171 #define FC_RETRY(fc) ((fc) & 0x0800) argument
172 #define FC_POWER_MGMT(fc) ((fc) & 0x1000) argument
173 #define FC_MORE_DATA(fc) ((fc) & 0x2000) argument
174 #define FC_WEP(fc) ((fc) & 0x4000) argument
[all …]
H A Dprint-fddi.c166 print_fddi_fc(netdissect_options *ndo, u_char fc) in print_fddi_fc() argument
168 switch (fc) { in print_fddi_fc()
199 switch (fc & FDDIFC_CLFF) { in print_fddi_fc()
202 ND_PRINT((ndo, "mac%1x ", fc & FDDIFC_ZZZZ)); in print_fddi_fc()
206 ND_PRINT((ndo, "smt%1x ", fc & FDDIFC_ZZZZ)); in print_fddi_fc()
210 ND_PRINT((ndo, "async%1x ", fc & FDDIFC_ZZZZ)); in print_fddi_fc()
214 ND_PRINT((ndo, "sync%1x ", fc & FDDIFC_ZZZZ)); in print_fddi_fc()
218 ND_PRINT((ndo, "imp_async%1x ", fc & FDDIFC_ZZZZ)); in print_fddi_fc()
222 ND_PRINT((ndo, "imp_sync%1x ", fc & FDDIFC_ZZZZ)); in print_fddi_fc()
226 ND_PRINT((ndo, "%02x ", fc)); in print_fddi_fc()
/minix/external/bsd/llvm/dist/clang/test/SemaCXX/
H A Dcomplex-overload.cpp4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_1() argument
8 char *cp3 = foo(fc); in test_foo_1()
14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_2() argument
17 int *ip = foo(fc); in test_foo_2()
23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_3() argument
26 int *ip = foo(fc); in test_foo_3()
33 void test_promote_or_convert(float f, float _Complex fc) { in test_promote_or_convert() argument
34 char *cp = promote_or_convert(fc); in test_promote_or_convert()
41 void test_promote_or_convert2(float _Complex fc) { in test_promote_or_convert2() argument
42 int *cp = promote_or_convert2(fc); in test_promote_or_convert2()
H A Dcxx1y-generic-lambdas.cpp47 char (*fc)(char) = L; in test() local
48 fc('b'); in test()
70 char (*fc)(char) = L('a'); in test() local
71 fc('b'); in test()
85 char* (*fc)(char) = L('a'); in test() local
86 fc('b'); in test()
98 char* (*fc)(char) = L('a'); in test() local
99 fc('b'); in test()
155 char (*fc)(char) = L; in test() local
156 fc('b'); in test()
[all …]
/minix/external/bsd/llvm/dist/clang/test/Sema/
H A Doverloadable-complex.c4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_1() argument
8 char *cp3 = foo(fc); in test_foo_1()
14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_2() argument
17 int *ip = foo(fc); in test_foo_2()
23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_3() argument
26 int *ip = foo(fc); in test_foo_3()
33 void test_promote_or_convert(float f, float _Complex fc) { in test_promote_or_convert() argument
34 char *cp = promote_or_convert(fc); // expected-error{{call to 'promote_or_convert' is ambiguous}} in test_promote_or_convert()
41 void test_promote_or_convert2(float _Complex fc) { in test_promote_or_convert2() argument
42 int *cp = promote_or_convert2(fc); in test_promote_or_convert2()
/minix/sys/fs/cd9660/
H A Dcd9660_util.c101 u_int16_t fc, ic; in isofncmp() local
105 fc = wget(&fn, &fnlen, joliet_level); in isofncmp()
108 return fc; in isofncmp()
111 switch (fc) { in isofncmp()
113 return fc; in isofncmp()
129 if (ic != fc) { in isofncmp()
131 if (ic + ('a' - 'A') != fc) { in isofncmp()
132 if (fc >= 'a' && fc <= 'z') in isofncmp()
133 fc -= 'a' - 'A'; in isofncmp()
135 return (int) fc - (int) ic; in isofncmp()
[all …]
/minix/sys/lib/libsa/
H A Dfnmatch.c68 char fc, pc; in fnmatch() local
71 fc = *fname++; in fnmatch()
73 if (!fc && !pc) in fnmatch()
75 if (pc == '?' && fc) in fnmatch()
76 pc = fc; in fnmatch()
77 } while (fc == pc); in fnmatch()
/minix/external/public-domain/xz/dist/src/liblzma/common/
H A Dfilter_common.c259 const lzma_filter_coder *const fc in lzma_raw_coder_init() local
261 if (fc == NULL || fc->init == NULL) in lzma_raw_coder_init()
265 filters[j].init = fc->init; in lzma_raw_coder_init()
270 const lzma_filter_coder *const fc in lzma_raw_coder_init() local
272 if (fc == NULL || fc->init == NULL) in lzma_raw_coder_init()
276 filters[i].init = fc->init; in lzma_raw_coder_init()
309 const lzma_filter_coder *const fc in lzma_raw_coder_memusage() local
311 if (fc == NULL) in lzma_raw_coder_memusage()
314 if (fc->memusage == NULL) { in lzma_raw_coder_memusage()
326 = fc->memusage(filters[i].options); in lzma_raw_coder_memusage()
/minix/external/bsd/llvm/dist/clang/test/CodeGen/
H A Dcomplex-builtints.c27 volatile float _Complex fc = 1.0F + 2.0iF; in main() local
31 if (__builtin_conjf (fc) != 1.0F - 2.0iF) in main()
35 if (__builtin_crealf (fc) != 1.0F) in main()
39 if (__builtin_cimagf (fc) != 2.0F) in main()
/minix/external/bsd/llvm/dist/clang/test/Headers/
H A Dtgmath.c10 float complex fc; variable
20 _Static_assert(sizeof(creal(fc)) == sizeof(f), "");
30 _Static_assert(sizeof(fabs(fc)) == sizeof(f), "");
/minix/lib/librefuse/
H A Drefuse.c374 struct fuse_chan *fc; in fuse_setup_real() local
1246 struct fuse_chan *fc; in fuse_mount() local
1249 if ((fc = calloc(1, sizeof(*fc))) == NULL) { in fuse_mount()
1252 fc->dead = 0; in fuse_mount()
1271 return fc; in fuse_mount()
1306 fuse->fc = fc; in fuse_new()
1352 fc->pu = pu; in fuse_new()
1412 fuse->fc->dead = 1; in fuse_exit()
1425 if (fc->dead == 0) in fuse_unmount()
1426 puffs_exit(fc->pu, 1); in fuse_unmount()
[all …]
/minix/external/bsd/llvm/dist/clang/test/Index/
H A Dcomplete-memfunc-cvquals.cpp17 void text(Foo f, Foo *fp, const Foo &fc, const Foo *fcp, in text() argument
21 fc.baz(); in text()
/minix/external/bsd/llvm/dist/llvm/test/Transforms/SLPVectorizer/X86/
H A Daddsub.ll11 @fc = common global [4 x float] zeroinitializer, align 16
110 %1 = load float* getelementptr inbounds ([4 x float]* @fc, i32 0, i64 0), align 4
114 %3 = load float* getelementptr inbounds ([4 x float]* @fc, i32 0, i64 1), align 4
118 %5 = load float* getelementptr inbounds ([4 x float]* @fc, i32 0, i64 2), align 4
122 %7 = load float* getelementptr inbounds ([4 x float]* @fc, i32 0, i64 3), align 4
136 %1 = load float* getelementptr inbounds ([4 x float]* @fc, i32 0, i64 0), align 4
140 %3 = load float* getelementptr inbounds ([4 x float]* @fc, i32 0, i64 1), align 4
144 %5 = load float* getelementptr inbounds ([4 x float]* @fc, i32 0, i64 2), align 4
148 %7 = load float* getelementptr inbounds ([4 x float]* @fc, i32 0, i64 3), align 4
162 %1 = load float* getelementptr inbounds ([4 x float]* @fc, i32 0, i64 0), align 4
[all …]
/minix/external/bsd/llvm/dist/llvm/test/Analysis/BasicAA/
H A Ddag.ll23 %fc = bitcast i8* %first to i8*
26 %xxa = bitcast i8* %fc to i8*
29 %xxb = bitcast i8* %fc to i8*
/minix/external/bsd/libc++/dist/libcxx/test/std/numerics/complex.number/complex.member.ops/
H A Dtimes_equal_complex.pass.cpp41 std::complex<float> fc (1,1); in test() local
42 c3 *= fc; in test()
H A Ddivide_equal_complex.pass.cpp41 std::complex<float> fc (1,1); in test() local
42 c3 /= fc; in test()
H A Dminus_equal_complex.pass.cpp41 std::complex<float> fc (1,1); in test() local
42 c3 -= fc; in test()
H A Dplus_equal_complex.pass.cpp41 std::complex<float> fc (1,1); in test() local
42 c3 += fc; in test()
/minix/external/bsd/libc++/dist/libcxx/test/numerics/complex.number/complex.member.ops/
H A Dtimes_equal_complex.pass.cpp41 std::complex<float> fc (1,1); in test() local
42 c3 *= fc; in test()
H A Ddivide_equal_complex.pass.cpp41 std::complex<float> fc (1,1); in test() local
42 c3 /= fc; in test()
H A Dminus_equal_complex.pass.cpp41 std::complex<float> fc (1,1); in test() local
42 c3 -= fc; in test()
H A Dplus_equal_complex.pass.cpp41 std::complex<float> fc (1,1); in test() local
42 c3 += fc; in test()
/minix/external/bsd/llvm/dist/clang/test/CodeGenCXX/
H A Dvtable-linkage.cpp78 F<char> fc; in use_F() local
79 fc.foo(); in use_F()
/minix/usr.bin/m4/
H A Deval.c867 const char *ap, *fc, *k; in dosub() local
872 fc = ap + expr(argv[3]); /* first char */ in dosub()
874 fc = ap + atoi(argv[3]); /* first char */ in dosub()
876 nc = strlen(fc); in dosub()
883 if (fc >= ap && fc < ap + strlen(ap)) in dosub()
884 for (k = fc + nc - 1; k >= fc; k--) in dosub()

1234