Searched refs:se (Results 26 - 50 of 107) sorted by relevance

12345

/freebsd-9.3-release/sys/boot/common/
H A Dinterp.c201 struct includeline *script, *se, *sp; local
221 script = se = NULL;
252 se = script;
254 free(se);
270 se->next = sp;
272 se = sp;
329 se = script;
331 free(se);
/freebsd-9.3-release/gnu/usr.bin/cvs/contrib/
H A Deasy-import.pl84 $so = `tput md`; $se = `tput me`;
88 $so = `tput so`; $se = `tput se`;
216 print "${so}Import from which directory?${se}\n";
225 print "${so}Available repositories:${se}\n";
242 print "\n${so}Selected repository:${se} ${us}$rep${ue}\n";
247 print "${so}Existent areas in this repository:${se}\n";
261 print "\n${so}[Working on:${se} ${us}$area${ue}${so}]${se}\n";
267 print "${so}Gimme the module name:${se} ";
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dgetaddrinfo.c52 struct servent *se; local
71 se = getservbyname (servname, proto_str ? proto_str : "tcp");
75 se = getservbyname (servname, proto_str ? proto_str : "udp");
80 se = getservbyname (servname, proto_str);
82 se = getservbyname (servname, "tcp");
85 if (se == NULL) {
86 se = getservbyname (servname, "udp");
94 if (se == NULL) {
101 *port = se->s_port;
/freebsd-9.3-release/lib/libelf/
H A Dlibelf_xlate.c53 uintptr_t sb, se, db, de; local
114 se = sb + src->d_size;
122 if (db != sb && de > sb && se > db) {
/freebsd-9.3-release/sys/dev/mpt/
H A Dmpt_debug.c736 SGE_SIMPLE32 *se = (SGE_SIMPLE32 *) su; local
738 void *nxtaddr = se;
745 lim = &((char *)se)[MPT_REQUEST_AREA - offset];
751 if (memcmp(se, allfox, 4) == 0) {
752 uint32_t *nxt = (uint32_t *)se;
753 printf("PAD %p\n", se);
755 se = nxtaddr;
759 nxtaddr = se + 1;
760 flags = MPI_SGE_GET_FLAGS(se->FlagsLength);
764 SGE_SIMPLE64 *se64 = (SGE_SIMPLE64 *)se;
[all...]
H A Dmpt_cam.c1270 SGE_SIMPLE64 *se; local
1417 se = (SGE_SIMPLE64 *) sglp;
1418 for (seg = 0; seg < first_lim; seg++, se++, dm_segs++) {
1420 memset(se, 0, sizeof (*se));
1421 MPI_pSGE_SET_LENGTH(se, dm_segs->ds_len);
1422 se->Address.Low = htole32(dm_segs->ds_addr & 0xffffffff);
1427 MPI_SGE_LENGTH(se->FlagsLength)) >> 32) == 9) {
1431 se->Address.High = htole32(addr);
1440 MPI_pSGE_SET_FLAGS(se, t
1673 SGE_SIMPLE32 *se; local
2746 PTR_SGE_SIMPLE32 se = (PTR_SGE_SIMPLE32) &rsp->SGL; local
4061 PTR_SGE_SIMPLE32 se; local
4444 SGE_SIMPLE32 *se; local
[all...]
/freebsd-9.3-release/usr.sbin/bsdinstall/scripts/
H A Dmirrorselect45 ftp://ftp4.se.freebsd.org "IPv6 Sweden"\
125 ftp://ftp.se.freebsd.org "Sweden"\
126 ftp://ftp2.se.freebsd.org "Sweden #2"\
127 ftp://ftp3.se.freebsd.org "Sweden #3"\
128 ftp://ftp4.se.freebsd.org "Sweden #4"\
129 ftp://ftp5.se.freebsd.org "Sweden #5"\
130 ftp://ftp6.se.freebsd.org "Sweden #6"\
/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_write_set_format_ar.c142 char *ss, *se; local
234 se = (char *)malloc(strlen(filename) + 3);
235 if (se == NULL) {
241 strncpy(se, filename, strlen(filename));
242 strcpy(se + strlen(filename), "/\n");
244 ss = strstr(ar->strtab, se);
245 free(se);
/freebsd-9.3-release/usr.bin/getent/
H A Dgetent.c497 struct servent *se; local
505 #define SERVICESPRINT printfmtstrings(se->s_aliases, " ", " ", \
507 se->s_name, ntohs(se->s_port), se->s_proto)
512 while ((se = getservent()) != NULL)
520 se = getservbyport(htons((u_short)id), proto);
522 se = getservbyname(argv[i], proto);
523 if (se != NULL)
/freebsd-9.3-release/contrib/gdtoa/
H A Dg_ddfmt.c42 char *b, *s, *se; local
166 s = gdtoa(&fpi, ex, bits, &i, mode, ndig, &decpt, &se);
167 b = g__fmt(buf, s, se, decpt, z->sign, bufsize);
H A Dstrtod.c87 (s00, se, loc) CONST char *s00; char **se; locale_t loc
89 (CONST char *s00, char **se, locale_t loc)
1072 if (se)
1073 *se = (char *)s;
1080 (s00, se, loc) CONST char *s00; char **se; locale_t
1082 (CONST char *s00, char **se)
1085 return strtod_l(s00, se, __get_locale());
/freebsd-9.3-release/crypto/heimdal/tools/
H A Dheimdal-build.sh7 email=heimdal-build-log@it.su.se
8 baseurl=ftp://ftp.pdc.kth.se/pub/heimdal/src
9 afsdir=/afs/pdc.kth.se/public/ftp/pub/heimdal/src
267 To: <heimdal-build-log@it.su.se>
/freebsd-9.3-release/contrib/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpander.h94 explicit SCEVExpander(ScalarEvolution &se, const char *name) argument
95 : SE(se), IVName(name), IVIncInsertLoop(0), IVIncInsertPos(0),
97 Builder(se.getContext(), TargetFolder(se.TD)) {
/freebsd-9.3-release/crypto/openssh/regress/
H A Ddhgex.sh54 check 8192 rijndael-cbc@lysator.liu.se chacha20-poly1305@openssh.com
/freebsd-9.3-release/contrib/bind9/lib/dns/rdata/in_1/
H A Dwks_11.c54 struct servent *se; local
57 se = getservbyname(name, proto);
58 if (se != NULL)
59 *port = ntohs(se->s_port);
61 return (ISC_TF(se != NULL));
/freebsd-9.3-release/contrib/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp228 se = (*i)->succ_end(); si != se; ++si)
400 se = Obj->end_symbols();
401 si != se; si.increment(ec)) {
465 for (unsigned si = 0, se = Symbols.size(); si != se; ++si) {
470 if (si == se - 1)
538 for (section_iterator si = o->begin_sections(), se = o->end_sections();
539 si != se; si.increment(ec)){
571 for (section_iterator si = o->begin_sections(), se
[all...]
/freebsd-9.3-release/crypto/heimdal/tests/kdc/
H A Dcheck-keys.in45 principal=host/datan.test.h5l.se@${R}
93 sed -e 's/@keys@/des-cbc-crc:afs3-salt:test.h5l.se/' \
97 sed -e 's/@keys@/des:afs3-salt:test.h5l.se/' \
H A Dcheck-kadmin.in56 server=host/datan.test.h5l.se
/freebsd-9.3-release/usr.sbin/makefs/cd9660/
H A Dcd9660_eltorito.c324 boot_catalog_section_entry *se; local
328 se = &entry->entry_data.SE;
330 se->boot_indicator[0] = ET_BOOTABLE;
331 se->media_type[0] = disk->targetMode;
332 cd9660_721(disk->loadSegment, se->load_segment);
333 cd9660_721(disk->num_sectors, se->sector_count);
334 cd9660_731(disk->sector, se->load_rba);
/freebsd-9.3-release/crypto/heimdal/lib/hx509/
H A Dtest_ca.in53 --subject="CN=Love,DC=it,DC=su,DC=se" \
145 --hostname="www.test.h5l.se" \
146 --hostname="ftp.test.h5l.se" \
152 --hostname=www.test.h5l.se \
158 --hostname=www2.test.h5l.se \
164 --hostname=2www.test.h5l.se \
171 --subject="cn=www.test.h5l.se" \
178 --hostname=www.test.h5l.se \
184 --hostname=www2.test.h5l.se \
192 --email="lha@test.h5l.se" \
[all...]
/freebsd-9.3-release/sys/net80211/
H A Dieee80211_ioctl.c236 scan_space(const struct ieee80211_scan_entry *se, int *ielen) argument
240 *ielen = se->se_ies.len;
246 len = sizeof(struct ieee80211req_scan_result) + se->se_ssid[1] +
247 se->se_meshid[1] + *ielen;
252 get_scan_space(void *arg, const struct ieee80211_scan_entry *se) argument
257 req->space += scan_space(se, &ielen);
261 get_scan_result(void *arg, const struct ieee80211_scan_entry *se) argument
268 len = scan_space(se, &ielen);
274 ("len %u ssid %u ie %u", len, se->se_ssid[1], ielen));
278 sr->isr_freq = se
1453 const struct ieee80211_scan_entry *se; member in struct:scanlookup
1460 mlmelookup(void *arg, const struct ieee80211_scan_entry *se) argument
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DScalarEvolutionNormalization.cpp77 ScalarEvolution &se, DominatorTree &dt):
78 Kind(kind), Loops(loops), SE(se), DT(dt) {}
76 PostIncTransform(TransformKind kind, PostIncLoopSet &loops, ScalarEvolution &se, DominatorTree &dt) argument
/freebsd-9.3-release/crypto/heimdal/tests/plugin/
H A Dcheck-pac.in53 server=host/datan.test.h5l.se
/freebsd-9.3-release/sys/sys/
H A Dsysent.h260 int syscall_thread_enter(struct thread *td, struct sysent *se);
261 void syscall_thread_exit(struct thread *td, struct sysent *se);
/freebsd-9.3-release/sys/netinet/libalias/
H A Dalias_proxy.c184 struct servent *se; local
187 se = getservbyname(s, "tcp");
189 se = getservbyname(s, "udp");
193 if (se == NULL)
196 *port = (u_int) ntohs(se->s_port);

Completed in 145 milliseconds

12345