Searched refs:si (Results 26 - 50 of 296) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/boot/ficl/
H A Dvm.c271 STRINGINFO si = vmParseStringEx(pVM, delimiter, 0); local
273 if (SI_COUNT(si) > FICL_STRING_MAX)
275 SI_SETLEN(si, FICL_STRING_MAX);
278 strncpy(spDest->text, SI_PTR(si), SI_COUNT(si));
279 spDest->text[SI_COUNT(si)] = '\0';
280 spDest->count = (FICL_COUNT)SI_COUNT(si);
282 return spDest->text + SI_COUNT(si) + 1;
293 STRINGINFO si = vmGetWord0(pVM); local
295 if (SI_COUNT(si)
317 STRINGINFO si; local
362 STRINGINFO si; local
392 STRINGINFO si; local
[all...]
H A Dficl.h313 #define SI_COUNT(si) (si.count)
314 #define SI_PTR(si) (si.cp)
315 #define SI_SETLEN(si, len) (si.count = (FICL_UNS)(len))
316 #define SI_SETPTR(si, ptr) (si.cp = (char *)(ptr))
320 #define SI_PSZ(si, psz) \
321 {si
[all...]
/freebsd-9.3-release/contrib/ipfilter/ipsend/
H A Dsnit.c64 struct strioctl si; local
85 si.ic_timout = 1;
88 si.ic_cmd = NIOCSTIME;
89 si.ic_len = sizeof(to);
90 si.ic_dp = (char*)&to;
91 if (ioctl(fd, I_STR, (char*)&si) == -1)
102 si.ic_cmd = NIOCBIND;
103 si.ic_len = sizeof(ifr);
104 si.ic_dp = (char*)𝔦
105 if (ioctl(fd, I_STR, (char*)&si)
[all...]
/freebsd-9.3-release/sys/boot/uboot/lib/
H A Dglue.c160 static struct sys_info si; variable in typeref:struct:sys_info
167 memset(&si, 0, sizeof(struct sys_info));
168 si.mr = mr;
169 si.mr_no = UB_MAX_MR;
172 if (!syscall(API_GET_SYS_INFO, &err, (u_int32_t)&si))
175 return ((err) ? NULL : &si);
454 ub_dump_si(struct sys_info *si) argument
459 printf(" clkbus\t= %ld MHz\n", si->clk_bus / 1000 / 1000);
460 printf(" clkcpu\t= %ld MHz\n", si->clk_cpu / 1000 / 1000);
461 printf(" bar\t\t= 0x%08lx\n", si
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/cms/
H A Dcms_ess.c71 int CMS_get1_ReceiptRequest(CMS_SignerInfo *si, CMS_ReceiptRequest **prr)
77 str = CMS_signed_get0_data_by_OBJ(si,
139 int CMS_add1_ReceiptRequest(CMS_SignerInfo *si, CMS_ReceiptRequest *rr) argument
148 if (!CMS_signed_add1_attr_by_NID(si, NID_id_smime_aa_receiptRequest,
190 static int cms_msgSigDigest(CMS_SignerInfo *si, argument
194 md = EVP_get_digestbyobj(si->digestAlgorithm->algorithm);
198 si->signedAttrs, dig, diglen))
229 CMS_SignerInfo *si, *osi = NULL;
279 si = sk_CMS_SignerInfo_value(sis, 0);
283 msig = CMS_signed_get0_data_by_OBJ(si,
356 cms_encode_Receipt(CMS_SignerInfo *si) argument
[all...]
/freebsd-9.3-release/sys/i386/svr4/
H A Dsvr4_machdep.c311 svr4_getsiginfo(si, sig, code, addr)
312 union svr4_siginfo *si;
317 si->svr4_si_signo = bsd_to_svr4_sig[sig];
318 si->svr4_si_errno = 0;
319 si->svr4_si_addr = addr;
323 si->svr4_si_code = SVR4_ILL_PRVOPC;
324 si->svr4_si_trap = SVR4_T_PRIVINFLT;
328 si->svr4_si_code = SVR4_TRAP_BRKPT;
329 si->svr4_si_trap = SVR4_T_BPTFLT;
333 si
[all...]
/freebsd-9.3-release/contrib/gcclibs/libmudflap/
H A Dmf-hooks3.c277 struct mf_thread_start_info *si; local
282 si = CALL_REAL (malloc, sizeof (*si));
283 si->user_fn = start;
284 si->user_arg = arg;
287 return CALL_REAL (pthread_create, thr, attr, __mf_pthread_spawner, si);
/freebsd-9.3-release/contrib/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp227 for (MCBasicBlock::succ_const_iterator si = (*i)->succ_begin(),
228 se = (*i)->succ_end(); si != se; ++si)
230 << (*si)->getInsts()->getBeginAddr() << ":a\n";
399 for (symbol_iterator si = Obj->begin_symbols(),
401 si != se; si.increment(ec)) {
403 if (!error(i->containsSymbol(*si, contains)) && contains) {
405 if (error(si->getAddress(Address))) break;
410 if (error(si
[all...]
/freebsd-9.3-release/sys/netipx/
H A Dspx_debug.h99 void spx_trace(short act, u_char ostate, struct spxpcb *sp, struct spx *si,
H A Dspx_usrreq.c188 struct spx *si = mtod(m, struct spx *); local
212 if (m->m_len < sizeof(*si)) {
213 if ((m = m_pullup(m, sizeof(*si))) == NULL) {
219 si = mtod(m, struct spx *);
221 si->si_seq = ntohs(si->si_seq);
222 si->si_ack = ntohs(si->si_ack);
223 si->si_alo = ntohs(si
439 struct spx *si = NULL; local
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/pkcs7/
H A Dpk7_attr.c69 int PKCS7_add_attrib_smimecap(PKCS7_SIGNER_INFO *si, argument
94 return PKCS7_add_signed_attribute(si, NID_SMIMECapabilities,
98 STACK_OF(X509_ALGOR) *PKCS7_get_smimecap(PKCS7_SIGNER_INFO *si)
103 cap = PKCS7_get_signed_attribute(si, NID_SMIMECapabilities);
/freebsd-9.3-release/sys/boot/i386/mbr/
H A Dmbr.s44 movw $main-EXEC+LOAD,%si # Source
56 # the active partition in %si and scan the entire table to ensure that only
59 main: xorw %si,%si # No active partition
65 testw %si,%si # Active already found?
67 movw %bx,%si # Point to active
70 testw %si,%si # Active found?
83 main.4: movb (%si),
[all...]
/freebsd-9.3-release/usr.sbin/IPXrouted/
H A Dsap_tables.c152 sap_add(struct sap_info *si, struct sockaddr *from) argument
157 if (ntohs(si->hops) == HOPCNT_INFINITY)
165 nsap->sap = *si;
171 nsap->hash = saphash(si->ServType, si->ServName);
186 struct sap_info *si,
199 if (sap->clone && (ntohs(si->hops) != HOPCNT_INFINITY)) {
214 if (ntohs(osap->sap.hops) > ntohs(si->hops)) {
224 } else if (ntohs(osap->sap.hops) == ntohs(si->hops)) {
241 si
185 sap_change(struct sap_entry *sap, struct sap_info *si, struct sockaddr *from) argument
[all...]
/freebsd-9.3-release/contrib/groff/src/roff/troff/
H A Dnumber.cpp43 int get_vunits(vunits *res, unsigned char si) argument
48 if (parse_expr(&x, si, 0)) {
56 int get_hunits(hunits *res, unsigned char si) argument
61 if (parse_expr(&x, si, 0)) {
71 int get_number_rigidly(units *res, unsigned char si) argument
76 if (parse_expr(&x, si, 0, 1)) {
84 int get_number(units *res, unsigned char si) argument
89 if (parse_expr(&x, si, 0)) {
114 int get_vunits(vunits *res, unsigned char si, vunits prev_value) argument
117 switch (get_incr_number(&v, si)) {
135 get_hunits(hunits *res, unsigned char si, hunits prev_value) argument
156 get_number(units *res, unsigned char si, units prev_value) argument
199 get_incr_number(units *res, unsigned char si) argument
554 int si = scale_indicator; local
[all...]
/freebsd-9.3-release/sys/netpfil/ipfw/
H A Dip_dn_io.c393 printf("%s fs %p si %p, dropping\n",
487 serve_sched(struct mq *q, struct dn_sch_inst *si, uint64_t now) argument
490 struct dn_schk *s = si->sched;
492 int delay_line_idle = (si->dline.mq.head == NULL);
501 si->kflags &= ~DN_ACTIVE;
504 si->credit += (now - si->sched_time) * bw;
506 si->credit = 0;
507 si->sched_time = now;
509 while (si
752 struct dn_sch_inst *si; local
[all...]
/freebsd-9.3-release/contrib/gdtoa/
H A Ddmisc.c115 ULong si, z, zs; local
147 si = *sx++;
148 ys = (si & 0xffff) * q + carry;
149 zs = (si >> 16) * q + (ys >> 16);
188 si = *sx++;
189 ys = (si & 0xffff) + carry;
190 zs = (si >> 16) + (ys >> 16);
/freebsd-9.3-release/sys/net/
H A Dif_gre.c528 struct sockaddr_in si; local
702 memset(&si, 0, sizeof(si));
703 si.sin_family = AF_INET;
704 si.sin_len = sizeof(struct sockaddr_in);
705 si.sin_addr.s_addr = sc->g_src.s_addr;
706 sa = sintosa(&si);
713 memset(&si, 0, sizeof(si));
714 si
[all...]
/freebsd-9.3-release/sys/boot/pc98/boot0.5/
H A Ddisk.s37 movw curdevice, %si
38 shlw %si
39 movw secsize(%si), %bx
65 movw %dx, %si
67 shlw %cl, %si
68 addw %bx, %si
69 movb iplbuf(%si), %al
72 addw $iplbuf, %si
97 movw %ax, %si # %si
[all...]
/freebsd-9.3-release/lib/libc/gen/
H A Darc4random.c103 u_int8_t si; local
108 si = rs.s[rs.i];
109 rs.j = (rs.j + si + dat[n % datlen]);
111 rs.s[rs.j] = si;
195 u_int8_t si, sj; local
198 si = rs.s[rs.i];
199 rs.j = (rs.j + si);
202 rs.s[rs.j] = si;
203 return (rs.s[(si + sj) & 0xff]);
/freebsd-9.3-release/lib/libc/rpc/
H A Dsvc_generic.c198 struct __rpc_sockinfo si; local
214 __rpc_nconf2sockinfo(nconf, &si);
220 if (!__rpc_fd2sockinfo(fd, &si)) {
234 ss.ss_family = si.si_af;
235 ss.ss_len = si.si_alen;
237 (socklen_t)si.si_alen) < 0) {
247 (socklen_t)si.si_alen) < 0) {
259 switch (si.si_socktype) {
293 xprt->xp_type = __rpc_socktype2seman(si.si_socktype);
/freebsd-9.3-release/usr.sbin/ypserv/
H A Dyp_main.c256 const struct __rpc_sockinfo *si)
270 hints.ai_family = si->si_af;
271 hints.ai_socktype = si->si_socktype;
272 hints.ai_protocol = si->si_proto;
440 if (si->si_af == AF_INET) {
459 struct __rpc_sockinfo si; local
462 memset(&si, 0, sizeof(si));
509 if (__rpc_fd2sockinfo(0, &si) != 0) {
512 _rpcfdtype = si
255 create_service(const int sock, const struct netconfig *nconf, const struct __rpc_sockinfo *si) argument
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Domp-low.c2163 block_stmt_iterator si;
2208 block_stmt_iterator si;
2237 si = bsi_start (cond_bb);
2238 bsi_insert_after (&si, t, BSI_CONTINUE_LINKING);
2240 si = bsi_start (then_bb);
2242 bsi_insert_after (&si, t, BSI_CONTINUE_LINKING);
2244 bsi_insert_after (&si, t, BSI_CONTINUE_LINKING);
2246 si = bsi_start (else_bb);
2248 bsi_insert_after (&si, t, BSI_CONTINUE_LINKING);
2251 bsi_insert_after (&si,
2162 block_stmt_iterator si; local
2207 block_stmt_iterator si; local
2363 block_stmt_iterator si; local
2424 block_stmt_iterator si; local
2448 block_stmt_iterator si; local
2483 block_stmt_iterator si; local
2599 block_stmt_iterator si; local
2790 block_stmt_iterator si; local
2963 block_stmt_iterator si; local
3191 block_stmt_iterator si; local
3354 block_stmt_iterator si; local
3391 block_stmt_iterator si; local
3472 block_stmt_iterator si; local
[all...]
/freebsd-9.3-release/contrib/libreadline/
H A Dhistexpand.c427 register int si, i, j, k; local
441 for (si = i; str[si] && str[si] != delimiter; si++)
446 if ((v = _rl_get_char_len (str + si, &ps)) > 1)
447 si += v - 1;
448 else if (str[si] == '\\' && str[si + 1] == delimiter)
449 si
696 int delimiter, failed, si, l_temp, ws, we; local
[all...]
/freebsd-9.3-release/sys/boot/pc98/boot2/
H A Dboot1.S75 xor %si,%si
76 mov %si,%ss
84 mov %si,%es
92 mov %ax,%si
172 mov 0xa(%bx),%si /* BTX size */
173 add %bx,%si /* start of boot2.bin */
176 sub %si,%cx
204 mov %ax,%si
213 mov %si,
[all...]
/freebsd-9.3-release/sys/boot/pc98/cdboot/
H A Dcdboot.S165 mov %ax,%si
196 mov $msg_readerr,%si
268 mov $msg_keypress,%si
354 mov $msg_welcome,%si # %ds:(%si) -> welcome message
359 mov $msg_bootinfo,%si # %ds:(%si) -> boot args message
386 mov $msg_novd,%si # No VD
393 mov $loader_paths,%si # Point to start of array
394 lookup_path: push %si # Sav
[all...]

Completed in 311 milliseconds

1234567891011>>