Searched refs:tos (Results 1 - 25 of 100) sorted by relevance

1234

/freebsd-11-stable/usr.bin/indent/
H A Dparse.c62 while (ps.p_stack[ps.tos] == ifhead && tk != elselit) {
64 ps.p_stack[ps.tos] = stmt; /* apply the if(..) stmt ::= stmt
76 if (ps.p_stack[ps.tos] != decl) { /* only put one declaration
80 ps.p_stack[++ps.tos] = decl;
81 ps.il[ps.tos] = ps.i_l_follow;
86 for (i = ps.tos - 1; i > 0; --i)
96 if (ps.p_stack[ps.tos] == elsehead && ps.else_if) /* "else if ..." */
102 ps.i_l_follow = ps.il[ps.tos--];
106 ps.p_stack[++ps.tos] = tk;
107 ps.il[ps.tos]
[all...]
/freebsd-11-stable/contrib/binutils/bfd/doc/
H A Dchew.c269 string_type *tos; variable
305 if (tos < stack)
307 if (tos >= stack + STACK)
378 if (tos->write_idx)
379 tos->write_idx--;
386 while ((isspace ((unsigned char) at (tos, tos->write_idx - 1))
387 || at (tos, tos->write_idx - 1) == '\n')
388 && tos
[all...]
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_error.cpp40 "\tpopping off stack: %s (%s)\n", cons_text_c[(p)->stack_data[tos].type], \
41 get_src((p)->stack_data[tos].ident)
161 int tos = p->stack_top; local
169 tos, gtid);
170 __kmp_str_buf_print(&buffer, " stack_top=%d { P=%d, W=%d, S=%d }\n", tos,
172 for (i = tos; i > 0; i--) {
188 int tos; local
197 tos = ++p->stack_top;
198 p->stack_data[tos].type = ct_parallel;
199 p->stack_data[tos]
228 int tos; local
335 int tos; local
358 int tos; local
379 int tos; local
406 int tos; local
[all...]
/freebsd-11-stable/etc/
H A Dntp.conf20 tos minclock 3 maxclock 6
25 # servers from the pool, according to the tos minclock/maxclock targets.
47 # the specific servers, then adds servers from the pool until the tos
/freebsd-11-stable/contrib/gcc/config/i386/
H A Dgmon-sol2.c102 * froms is actually a bunch of unsigned shorts indexing tos
106 static struct tostruct *tos = 0; variable in typeref:struct:tostruct
158 tos = (struct tostruct *) sbrk( tolimit * sizeof( struct tostruct ) );
159 if ( tos == (struct tostruct *) -1 ) {
162 tos = 0;
166 tos[0].link = 0;
225 for (toindex=froms[fromindex]; toindex!=0; toindex=tos[toindex].link) {
229 frompc , tos[toindex].selfpc , tos[toindex].count );
232 rawarc.raw_selfpc = (unsigned long) tos[toinde
[all...]
/freebsd-11-stable/contrib/gcc/config/sparc/
H A Dgmon-sol2.c73 * froms is actually a bunch of unsigned shorts indexing tos
77 static struct tostruct *tos = 0; variable in typeref:struct:tostruct
130 tos = (struct tostruct *) sbrk( tolimit * sizeof( struct tostruct ) );
131 if ( tos == (struct tostruct *) -1 ) {
134 tos = 0;
138 tos[0].link = 0;
220 for (toindex=froms[fromindex]; toindex!=0; toindex=tos[toindex].link) {
224 frompc , tos[toindex].selfpc , tos[toindex].count );
227 rawarc.raw_selfpc = (unsigned long) tos[toinde
[all...]
/freebsd-11-stable/sys/libkern/
H A Dmcount.c160 toindex = ++p->tos[0].link;
166 top = &p->tos[toindex];
172 top = &p->tos[toindex];
194 toindex = ++p->tos[0].link;
198 top = &p->tos[toindex];
209 top = &p->tos[top->link];
/freebsd-11-stable/lib/libc/gmon/
H A Dgmon.c99 p->tos = (struct tostruct *)cp;
105 p->tos[0].link = 0;
134 ERR("_mcleanup: tos overflow\n");
190 toindex = p->tos[toindex].link) {
194 frompc, p->tos[toindex].selfpc,
195 p->tos[toindex].count);
199 rawarc.raw_selfpc = p->tos[toindex].selfpc;
200 rawarc.raw_count = p->tos[toindex].count;
H A Dmcount.c192 toindex = ++p->tos[0].link;
198 top = &p->tos[toindex];
204 top = &p->tos[toindex];
226 toindex = ++p->tos[0].link;
230 top = &p->tos[toindex];
241 top = &p->tos[top->link];
/freebsd-11-stable/usr.sbin/ppp/
H A Dncp.h44 unsigned tos : 1; /* Urgent IPTOS_LOWDELAY packets ? */ member in struct:ncp::__anon8880::__anon8881
96 #define ncp_ClearUrgentTOS(ncp) (ncp)->cfg.urgent.tos = 0;
97 #define ncp_SetUrgentTOS(ncp) (ncp)->cfg.urgent.tos = 1;
/freebsd-11-stable/sys/netgraph/netflow/
H A Dnetflow_v9.h64 uint8_t tos; /* IP type of service IN (or OUT) (TOS) */ member in struct:netflow_v9_record_ipv4_tcp
89 uint8_t tos; /* IP type of service IN (or OUT) (TOS) */ member in struct:netflow_v9_record_ipv6_tcp
H A Dnetflow.h102 uint8_t tos; /* IP type of service */ member in struct:netflow_v1_record
125 uint8_t tos; /* IP type of service */ member in struct:netflow_v5_record
/freebsd-11-stable/sys/kern/
H A Dsubr_pctrie.c386 int slot, tos; local
398 tos = 0;
419 if (tos == 0)
421 node = stack[--tos];
477 KASSERT(tos < PCTRIE_LIMIT,
479 stack[tos++] = node;
497 int slot, tos; local
509 tos = 0;
533 if (tos == 0)
535 node = stack[--tos];
[all...]
/freebsd-11-stable/sys/vm/
H A Dvm_radix.c451 int slot, tos; local
463 tos = 0;
484 if (tos == 0)
486 rnode = stack[--tos];
542 KASSERT(tos < VM_RADIX_LIMIT,
544 stack[tos++] = rnode;
562 int slot, tos; local
574 tos = 0;
598 if (tos == 0)
600 rnode = stack[--tos];
[all...]
/freebsd-11-stable/contrib/telnet/telnet/
H A Dmain.c65 extern int tos;
90 "[-4] [-6] [-8] [-B baudrate] [-E] [-K] [-L] [-N] [-S tos] [-X atype]",
93 "[-4] [-6] [-8] [-B baudrate] [-E] [-L] [-N] [-S tos] [-c] [-d]",
188 if ((tos = parsetos(optarg, "tcp")) < 0)
202 tos = ultmp;
/freebsd-11-stable/crypto/heimdal/appl/telnet/telnet/
H A Dmain.c67 "[-8] [-E] [-K] [-L] [-G] [-S tos] [-X atype] [-a] [-c] [-d] [-e char]",
70 "[-8] [-E] [-L] [-S tos] [-a] [-c] [-d] [-e char] [-l user]",
229 extern int tos;
231 if ((tos = parsetos(optarg, "tcp")) < 0)
/freebsd-11-stable/usr.sbin/kgmon/
H A Dkgmon.c348 struct tostruct *tos; local
417 if ((tos = (struct tostruct *)malloc(kvp->gpm.tossize)) == NULL)
418 errx(10, "cannot allocate tos space");
420 i = kvm_read(kvp->kd, (u_long)kvp->gpm.tos, (void *)tos,
425 if (sysctl(mib, 3, tos, &i, NULL, 0) < 0)
429 errx(11, "read tos: read %lu, got %ld: %s",
442 toindex = tos[toindex].link) {
445 "count %ld", frompc, tos[toindex].selfpc,
446 tos[toinde
[all...]
/freebsd-11-stable/contrib/telnet/telnetd/
H A Dtelnetd.c133 int tos = -1; local
267 if ((tos = parsetos(optarg, "tcp")) < 0)
279 tos = ultmp;
395 if (tos < 0 && (tp = gettosbyname("telnet", "tcp")))
396 tos = tp->t_tos;
398 if (tos < 0)
399 tos = 020; /* Low Delay bit */
400 if (tos
402 (char *)&tos, sizeof(tos)) <
[all...]
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-cnfp.c81 uint8_t tos; /* IP type of service */ member in struct:nfrec_v1
114 uint8_t tos; /* IP type of service */ member in struct:nfrec_v5
148 uint8_t tos; /* IP type of service */ member in struct:nfrec_v6
234 ND_PRINT((ndo, "tos %u, %u (%u octets) %s",
235 nr->tos,
330 ND_PRINT((ndo, "tos %u, %u (%u octets) %s",
331 nr->tos,
429 ND_PRINT((ndo, "tos %u, %u (%u octets) %s",
430 nr->tos,
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmip.h163 uint8_t tos ; member in struct:__anon8418
/freebsd-11-stable/sys/sys/
H A Dgmon.h161 struct tostruct *tos; member in struct:gmonparam
/freebsd-11-stable/sys/dev/qlnx/qlnxe/
H A Decore_tcp_ip.h71 u8 tos; member in struct:ecore_iphdr
/freebsd-11-stable/sys/ofed/include/rdma/
H A Diw_cm.h99 u8 tos; member in struct:iw_cm_id
/freebsd-11-stable/contrib/binutils/bfd/
H A Dcoff-alpha.c796 int tos = 0;
1033 if (tos >= RELOC_STACKSIZE)
1036 stack[tos++] = relocation;
1052 if (tos == 0)
1062 val |= (stack[--tos] & ((1 << size) - 1)) << offset;
1093 if (tos == 0)
1096 stack[tos - 1] -= relocation;
1126 if (tos == 0)
1129 stack[tos - 1] >>= relocation;
1184 if (tos !
791 int tos = 0; local
1400 int tos = 0; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dlcm.c610 basic_block *worklist, *tos, bb;
618 tos = worklist = XNEWVEC (basic_block, n_basic_blocks + 1);
639 *tos++ = bb;
644 while (tos != worklist)
647 bb = *--tos;
666 *tos++ = e->src;
681 free (tos);
609 basic_block *worklist, *tos, bb; local

Completed in 211 milliseconds

1234