Searched refs:sc (Results 1 - 25 of 326) sorted by relevance

1234567891011>>

/macosx-10.10/emacs-93/emacs/lisp/obsolete/
H A Dsc.el0 ;;; sc.el --- old name for supercite
12 (provide 'sc)
14 (message "The name `sc' works but is obsolete; please use `supercite' instead")
17 ;;; sc.el ends here
/macosx-10.10/libffi-18.1/tests/testsuite/libffi.call/
H A Dreturn_sc.c10 static signed char return_sc(signed char sc) argument
12 return sc;
20 signed char sc; local
24 values[0] = ≻
30 for (sc = (signed char) -127;
31 sc < (signed char) 127; sc++)
35 CHECK(rint == (ffi_arg) sc);
H A Dpromotion.c9 static int promotion(signed char sc, signed short ss, argument
12 int r = (int) sc + (int) ss + (int) uc + (int) us;
23 signed char sc; local
33 values[0] = &sc;
45 for (sc = (signed char) -127;
46 sc <= (signed char) 120; /*@-type@*/ sc += 1 /*@=type@*/)
54 CHECK((int)rint == (signed char) sc + (signed short) ss +
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/libffi-src/tests/testsuite/libffi.call/
H A Dreturn_sc.c10 static signed char return_sc(signed char sc) argument
12 return sc;
20 signed char sc; local
24 values[0] = &sc;
30 for (sc = (signed char) -127;
31 sc < (signed char) 127; sc++)
35 CHECK(rint == (ffi_arg) sc);
H A Dpromotion.c9 static int promotion(signed char sc, signed short ss, argument
12 int r = (int) sc + (int) ss + (int) uc + (int) us;
23 signed char sc; local
33 values[0] = &sc;
45 for (sc = (signed char) -127;
46 sc <= (signed char) 120; /*@-type@*/ sc += 1 /*@=type@*/)
54 CHECK((int)rint == (signed char) sc + (signed short) ss +
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libffi-src/tests/testsuite/libffi.call/
H A Dreturn_sc.c10 static signed char return_sc(signed char sc) argument
12 return sc;
20 signed char sc; local
24 values[0] = &sc;
30 for (sc = (signed char) -127;
31 sc < (signed char) 127; sc++)
35 CHECK(rint == (ffi_arg) sc);
H A Dpromotion.c9 static int promotion(signed char sc, signed short ss, argument
12 int r = (int) sc + (int) ss + (int) uc + (int) us;
23 signed char sc; local
33 values[0] = &sc;
45 for (sc = (signed char) -127;
46 sc <= (signed char) 120; /*@-type@*/ sc += 1 /*@=type@*/)
54 CHECK((int)rint == (signed char) sc + (signed short) ss +
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/libffi-src/tests/testsuite/libffi.call/
H A Dreturn_sc.c10 static signed char return_sc(signed char sc) argument
12 return sc;
20 signed char sc; local
24 values[0] = &sc;
30 for (sc = (signed char) -127;
31 sc < (signed char) 127; sc++)
35 CHECK(rint == (ffi_arg) sc);
H A Dpromotion.c9 static int promotion(signed char sc, signed short ss, argument
12 int r = (int) sc + (int) ss + (int) uc + (int) us;
23 signed char sc; local
33 values[0] = &sc;
45 for (sc = (signed char) -127;
46 sc <= (signed char) 120; /*@-type@*/ sc += 1 /*@=type@*/)
54 CHECK((int)rint == (signed char) sc + (signed short) ss +
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/iwidgets/sample/
H A Dscrolledcanvas.rb5 sc = Tk::Iwidgets::Scrolledcanvas.new
7 sc.create(TkcRectangle, 100, 100, 400, 400, :fill=>'red')
8 TkcRectangle.new(sc, 300, 300, 600, 600, :fill=>'green')
9 TkcRectangle.new(sc, [[200, 200], [500, 500]], :fill=>'blue')
11 sc.pack(:expand=>true, :fill=>:both, :padx=>10, :pady=>10)
/macosx-10.10/BerkeleyDB-21/db/clib/
H A Dstrsep.c60 int c, sc; local
69 if ((sc = *spanp++) == c) {
77 } while (sc != 0);
/macosx-10.10/Libc-1044.1.2/string/FreeBSD/
H A Dstrpbrk.c45 int c, sc; local
48 for (scanp = s2; (sc = *scanp++) != '\0';)
49 if (sc == c)
H A Dstrstr.c47 char c, sc; local
54 if ((sc = *s++) == '\0')
56 } while (sc != c);
H A Dstrnstr.c49 char c, sc; local
56 if (slen-- < 1 || (sc = *s++) == '\0')
58 } while (sc != c);
H A Dstrsep.c55 int c, sc; local
64 if ((sc = *spanp++) == c) {
72 } while (sc != 0);
H A Dwcsstr.c49 wchar_t c, sc; local
56 if ((sc = *s++) == L'\0')
58 } while (sc != c);
H A Dwcstok.c46 wchar_t c, sc; local
56 for (spanp = delim; (sc = *spanp++) != L'\0';) {
57 if (c == sc)
75 if ((sc = *spanp++) == c) {
83 } while (sc != L'\0');
/macosx-10.10/bless-103/libbless/HFS/
H A DBLIsMountHFS.c39 struct statfs sc; local
43 err = statfs(mountpt, &sc);
49 *isHFS = ( !strcmp(sc.f_fstypename, "hfs") ? 1 : 0);
/macosx-10.10/lukemftp-14/tnftp/libnetbsd/
H A Dstrsep.c51 int c, sc; local
60 if ((sc = *spanp++) == c) {
68 } while (sc != 0);
/macosx-10.10/xnu-2782.1.97/libsyscall/wrappers/string/
H A Dstrsep.c49 int c, sc; local
58 if ((sc = *spanp++) == c) {
66 } while (sc != 0);
/macosx-10.10/ipsec-286.1.1/ipsec-tools/racoon/
H A Dschedule.c147 struct sched *sc; local
151 TAILQ_FOREACH(sc, &sctree, chain) {
152 if (sc->ref == ref) {
153 if (sc->dead)
165 struct sched *sc; local
168 TAILQ_FOREACH(sc, &sctree, chain) {
169 if (sc->ref == ref) {
170 if (sc->dead)
172 *time = sc->xtime;
183 struct sched *sc; local
198 struct sched *sc; local
209 struct sched *sc; local
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/net/
H A Dif_gif.c182 struct gif_softc *sc = ifnet_softc(ifp); local
184 GIF_LOCK(sc);
186 *protocol_family = sc->gif_proto;
187 GIF_UNLOCK(sc);
200 struct gif_softc *sc = ifnet_softc(ifp); local
202 GIF_LOCK(sc);
203 if (sc->gif_proto != 0)
207 sc->gif_proto = protocol_family;
208 GIF_UNLOCK(sc);
218 struct gif_softc *sc local
298 struct gif_softc *sc = ifnet_softc(ifp); local
311 struct gif_softc *sc = ifp->if_softc; local
321 struct gif_softc *sc = NULL; local
439 struct gif_softc *sc = ifp->if_softc; local
486 struct gif_softc *sc; local
543 struct gif_softc *sc = ifnet_softc(ifp); local
615 struct gif_softc *sc = ifnet_softc(ifp); local
647 struct gif_softc *sc = ifnet_softc(ifp); local
982 gif_delete_tunnel(struct gif_softc *sc) argument
[all...]
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dstrsep.c57 int c, sc; local
66 if ((sc = *spanp++) == c) {
74 } while (sc != 0);
/macosx-10.10/tcpdump-61/tcpdump/missing/
H A Dstrsep.c63 register int c, sc; local
72 if ((sc = *spanp++) == c) {
80 } while (sc != 0);
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dinit.c283 void slap_counters_init( slap_counters_t *sc )
287 ldap_pvt_thread_mutex_init( &sc->sc_mutex );
288 ldap_pvt_mp_init( sc->sc_bytes );
289 ldap_pvt_mp_init( sc->sc_pdu );
290 ldap_pvt_mp_init( sc->sc_entries );
291 ldap_pvt_mp_init( sc->sc_refs );
293 ldap_pvt_mp_init( sc->sc_ops_initiated );
294 ldap_pvt_mp_init( sc->sc_ops_completed );
298 ldap_pvt_mp_init( sc->sc_ops_initiated_[ i ] );
299 ldap_pvt_mp_init( sc
[all...]

Completed in 388 milliseconds

1234567891011>>