Searched refs:fc (Results 1 - 25 of 79) sorted by relevance

1234

/macosx-10.10/apr-32/apr/apr/file_io/netware/
H A Dflock.c23 int fc; local
25 fc = (type & APR_FLOCK_NONBLOCK) ? NX_RANGE_LOCK_TRYLOCK : NX_RANGE_LOCK_CHECK;
27 if(NXFileRangeLock(thefile->filedes,fc, 0, 0) == -1)
/macosx-10.10/tcpdump-61/tcpdump/
H A Dprint-802_15_4.c50 extract_header_length(u_int16_t fc) argument
54 switch ((fc >> 10) & 0x3) {
56 if (fc & (1 << 6)) /* intra-PAN with none dest addr */
69 switch ((fc >> 14) & 0x3) {
82 if (fc & (1 << 6)) {
98 u_int16_t fc; local
106 fc = EXTRACT_LE_16BITS(p);
107 hdrlen = extract_header_length(fc);
114 ND_PRINT((ndo,"IEEE 802.15.4 %s packet ", ftypes[fc & 0x7]));
129 switch ((fc >> 1
[all...]
H A Dieee802_11.h116 #define FC_VERSION(fc) ((fc) & 0x3)
117 #define FC_TYPE(fc) (((fc) >> 2) & 0x3)
118 #define FC_SUBTYPE(fc) (((fc) >> 4) & 0xF)
119 #define FC_TO_DS(fc) ((fc) & 0x0100)
120 #define FC_FROM_DS(fc) ((fc)
129 u_int16_t fc; member in struct:mgmt_header_t
252 u_int16_t fc; member in struct:ctrl_rts_t
263 u_int16_t fc; member in struct:ctrl_cts_t
272 u_int16_t fc; member in struct:ctrl_ack_t
281 u_int16_t fc; member in struct:ctrl_ps_poll_t
292 u_int16_t fc; member in struct:ctrl_end_t
303 u_int16_t fc; member in struct:ctrl_end_ack_t
314 u_int16_t fc; member in struct:ctrl_ba_t
323 u_int16_t fc; member in struct:ctrl_bar_t
[all...]
H A Dprint-fddi.c122 print_fddi_fc(u_char fc) argument
124 switch (fc) {
155 switch (fc & FDDIFC_CLFF) {
158 printf("mac%1x ", fc & FDDIFC_ZZZZ);
162 printf("smt%1x ", fc & FDDIFC_ZZZZ);
166 printf("async%1x ", fc & FDDIFC_ZZZZ);
170 printf("sync%1x ", fc & FDDIFC_ZZZZ);
174 printf("imp_async%1x ", fc & FDDIFC_ZZZZ);
178 printf("imp_sync%1x ", fc & FDDIFC_ZZZZ);
182 printf("%02x ", fc);
[all...]
H A Dprint-802_11.c1294 mgmt_body_print(u_int16_t fc, const struct mgmt_header_t *pmh, argument
1297 switch (FC_SUBTYPE(fc)) {
1344 FC_SUBTYPE(fc));
1355 ctrl_body_print(u_int16_t fc, const u_char *p) argument
1357 switch (FC_SUBTYPE(fc)) {
1449 data_header_print(u_int16_t fc, const u_char *p, const u_int8_t **srcp, argument
1452 u_int subtype = FC_SUBTYPE(fc);
1476 if (!FC_TO_DS(fc) && !FC_FROM_DS(fc)) {
1486 } else if (!FC_TO_DS(fc)
1543 ctrl_header_print(u_int16_t fc, const u_char *p, const u_int8_t **srcp, const u_int8_t **dstp) argument
1600 extract_header_length(u_int16_t fc) argument
1649 ieee_802_11_hdr_print(u_int16_t fc, const u_char *p, u_int hdrlen, u_int meshdrlen, const u_int8_t **srcp, const u_int8_t **dstp) argument
1713 u_int16_t fc; local
[all...]
/macosx-10.10/pcre-7/pcre/
H A DRunTest.bat31 fc /n %srcdir%\testdata\testoutput1 testout\testoutput1
32 fc /n %srcdir%\testdata\testoutput2 testout\testoutput2
33 rem fc /n %srcdir%\testdata\testoutput3 testout\testoutput3
34 fc /n %srcdir%\testdata\wintestoutput3 testout\wintestoutput3
35 fc /n %srcdir%\testdata\testoutput4 testout\testoutput4
36 fc /n %srcdir%\testdata\testoutput5 testout\testoutput5
37 fc /n %srcdir%\testdata\testoutput6 testout\testoutput6
38 fc /n %srcdir%\testdata\testoutput7 testout\testoutput7
39 fc /n %srcdir%\testdata\testoutput8 testout\testoutput8
40 fc /
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/binutils/
H A Ddwarf.c2829 frame_need_space (Frame_Chunk *fc, int reg) argument
2831 int prev = fc->ncols;
2833 if (reg < fc->ncols)
2836 fc->ncols = reg + 1;
2837 fc->col_type = xcrealloc (fc->col_type, fc->ncols, sizeof (short int));
2838 fc->col_offset = xcrealloc (fc->col_offset, fc
2849 frame_display_row(Frame_Chunk *fc, int *need_col_headers, int *max_regs) argument
2969 Frame_Chunk *fc; local
[all...]
/macosx-10.10/libiconv-42/libiconv/tests/
H A Dcheck-stateless.bat7 fc %1\%2.TXT tmp-%2.TXT
12 fc tmp-orig-%2.INVERSE.TXT tmp-%2.INVERSE.TXT
17 fc %1\%2.TXT tmp-%2.INVERSE.TXT
/macosx-10.10/dyld-353.2.1/src/
H A DdyldExceptions.c190 void __Unwind_SjLj_SetTopOfFunctionStack(struct _Unwind_FunctionContext* fc) argument
193 // fc, sThreadChainKey, (fc != NULL) ? fc->prev : NULL);
195 _ZN4dyld17gLibSystemHelpersE->pthread_setspecific(sThreadChainKey, fc);
197 sStaticThreadChain = fc;
198 //_ZN4dyld3logEPKcz("__Unwind_SjLj_SetTopOfFunctionStack(%p), key=%d, ", fc, sThreadChainKey);
/macosx-10.10/apr-32/apr/apr/file_io/unix/
H A Dflock.c33 int fc; local
43 fc = (type & APR_FLOCK_NONBLOCK) ? F_SETLK : F_SETLKW;
46 while ((rc = fcntl(thefile->filedes, fc, &l)) < 0 && errno == EINTR)
/macosx-10.10/ruby-106/ruby/win32/
H A Difchange.bat26 :: check if fc.exe works.
29 fc.exe conftst1.tmp conftst2.tmp > nul
36 fc.exe %1 %2 > nul
61 fc.exe %dest% %src% > nul && (
/macosx-10.10/ksh-23/ksh/src/lib/libast/string/
H A Dbase64.c173 unsigned char* fc; local
201 fc = fp;
231 *fn = fc;
240 fc = fp;
263 *fn = fc;
278 *fn = fc;
289 *fn = fc;
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DIWebScriptObject.idl60 uuid(7022340A-649C-43fc-9214-85CA7D3BE3C7),
/macosx-10.10/libunwind-35.3/src/
H A DUnwind-sjlj.c80 extern void __Unwind_SjLj_SetTopOfFunctionStack(struct _Unwind_FunctionContext* fc);
87 static void __Unwind_SjLj_SetTopOfFunctionStack(struct _Unwind_FunctionContext* fc) argument
89 _pthread_setspecific_direct(__PTK_LIBC_DYLD_Unwind_SjLj_Key, fc);
97 EXPORT void _Unwind_SjLj_Register(struct _Unwind_FunctionContext* fc) argument
99 fc->prev = __Unwind_SjLj_GetTopOfFunctionStack();
100 __Unwind_SjLj_SetTopOfFunctionStack(fc);
107 EXPORT void _Unwind_SjLj_Unregister(struct _Unwind_FunctionContext* fc) argument
109 __Unwind_SjLj_SetTopOfFunctionStack(fc->prev);
/macosx-10.10/OpenSSL098-52/src/ms/
H A Dtestpem.bat4 set cmp=fc.exe
H A Dtestpemce.bat4 set cmp=fc.exe
/macosx-10.10/libunwind-35.3/include/
H A Dunwind.h126 extern void _Unwind_SjLj_Register(_Unwind_FunctionContext_t fc);
127 extern void _Unwind_SjLj_Unregister(_Unwind_FunctionContext_t fc);
/macosx-10.10/swig-12/Source/Swig/
H A Dtree.c155 Node *fc; local
160 fc = firstChild(node);
161 if (fc) {
162 set_nextSibling(chd, fc);
163 set_previousSibling(fc, chd);
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/math/
H A Doptimize.tcl409 set cmd $f; lappend cmd $c; set fc [eval $cmd]
411 puts "f($c) = $fc (initial dilatation by phi)"
414 while { $fb >= $fc } {
418 set r [expr { ($b - $a) * ($fb - $fc) }]
442 if { $fu < $fc } {
444 # fb > fu and fc > fu, so there is a minimum between b and c
447 return [list $b $fb $u $fu $c $fc]
480 if { $fu > $fc } {
484 return [list $b $fb $c $fc $u $fu]
488 # function is still decreasing fa > fb > fc > f
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/overlays/
H A Dsyncprov.c399 fbase_cookie *fc = sc->sc_private; local
404 if ( fc->fss->s_eid == NOID ) {
405 fc->fbase = 2;
406 fc->fss->s_eid = rs->sr_entry->e_id;
407 ber_dupbv( &fc->fss->s_base, &rs->sr_entry->e_nname );
409 } else if ( rs->sr_entry->e_id == fc->fss->s_eid &&
410 dn_match( &rs->sr_entry->e_nname, &fc->fss->s_base )) {
413 fc->fbase = 1;
426 syncprov_findbase( Operation *op, fbase_cookie *fc )
431 ldap_pvt_thread_mutex_lock( &fc
1170 fbase_cookie fc; local
2484 fbase_cookie fc; local
[all...]
/macosx-10.10/emacs-93/emacs/lisp/gnus/
H A Dutf7.el112 (fc (following-char))
115 (if (and (= fc esc-char)
/macosx-10.10/xnu-2782.1.97/config/
H A Dnewvers.pl119 $VERSION_VARIANT =~ m/(\d+)((?:d|a|b|r|fc)?)(\d*)/;
124 $stage = "r" if (!$stage || ($stage eq "fc"));
/macosx-10.10/rsync-45/rsync/zlib/
H A Ddeflate.h66 } fc; member in struct:ct_data_s
73 #define Freq fc.freq
74 #define Code fc.code
/macosx-10.10/sudo-73/src/zlib/
H A Ddeflate.h69 } fc; member in struct:ct_data_s
76 #define Freq fc.freq
77 #define Code fc.code
/macosx-10.10/xnu-2782.1.97/libkern/zlib/
H A Ddeflate.h93 } fc; member in struct:ct_data_s
100 #define Freq fc.freq
101 #define Code fc.code

Completed in 336 milliseconds

1234