HomeSort by: relevance | last modified time | path
    Searched defs:branch (Results 1 - 18 of 18) sorted by relevancy

  /src/tests/usr.bin/indent/
lsym_question.c 58 const char *branch = cond local in function:function
  /src/sys/external/bsd/sljit/dist/doc/tutorial/
branch.c 19 static int branch(long a, long b, long c) function in typeref:typename:int
76 return branch(4, 5, 6);
  /src/sbin/ifconfig/
af_link.c 70 static cmdloop_branch_t branch; variable in typeref:typename:cmdloop_branch_t
130 cmdloop_branch_init(&branch, &link_pkw.pk_parser);
131 register_cmdloop_branch(&branch);
ether.c 62 static cmdloop_branch_t branch; variable in typeref:typename:cmdloop_branch_t
185 cmdloop_branch_init(&branch, &ethercaps.pk_parser);
186 register_cmdloop_branch(&branch);
vlan.c 58 static cmdloop_branch_t branch; variable in typeref:typename:cmdloop_branch_t
184 cmdloop_branch_init(&branch, &vlan.pk_parser);
185 register_cmdloop_branch(&branch);
af_atalk.c 88 static cmdloop_branch_t branch; variable in typeref:typename:cmdloop_branch_t
255 cmdloop_branch_init(&branch, &atalk.pk_parser);
256 register_cmdloop_branch(&branch);
agr.c 178 static cmdloop_branch_t branch; variable in typeref:typename:cmdloop_branch_t
193 cmdloop_branch_init(&branch, &agr.pk_parser);
194 register_cmdloop_branch(&branch);
pfsync.c 59 static cmdloop_branch_t branch; variable in typeref:typename:cmdloop_branch_t
223 cmdloop_branch_init(&branch, &pfsync.pk_parser);
224 register_cmdloop_branch(&branch);
tunnel.c 63 static cmdloop_branch_t branch; variable in typeref:typename:cmdloop_branch_t
198 cmdloop_branch_init(&branch, &tunnel.pk_parser);
199 register_cmdloop_branch(&branch);
l2tp.c 53 static cmdloop_branch_t branch; variable in typeref:typename:cmdloop_branch_t
266 cmdloop_branch_init(&branch, &l2tp.pk_parser);
267 register_cmdloop_branch(&branch);
carp.c 57 static cmdloop_branch_t branch; variable in typeref:typename:cmdloop_branch_t
295 cmdloop_branch_init(&branch, &carp.pk_parser);
296 register_cmdloop_branch(&branch);
af_inet6.c 78 static cmdloop_branch_t branch[2]; variable in typeref:typename:cmdloop_branch_t[2]
485 cmdloop_branch_init(&branch[0], &ia6flags.pk_parser);
486 cmdloop_branch_init(&branch[1], &inet6.pk_parser);
487 register_cmdloop_branch(&branch[0]);
488 register_cmdloop_branch(&branch[1]);
parse.h 45 struct branch { struct
46 SIMPLEQ_ENTRY(branch) b_next;
52 SIMPLEQ_HEAD(, branch) pb_branches;
54 const struct branch *pb_brinit;
276 struct pbranch *pbranch_create(const char *, const struct branch *, size_t,
279 int pbranch_setbranches(struct pbranch *, const struct branch *, size_t);
lagg.c 56 static cmdloop_branch_t branch; variable in typeref:typename:cmdloop_branch_t
197 struct branch laggport_brs[] = {
201 struct branch lagglacp_brs[] = {
205 struct branch laggfail_brs[] = {
224 cmdloop_branch_init(&branch, &lagg.pk_parser);
228 register_cmdloop_branch(&branch);
ieee80211.c 1375 static cmdloop_branch_t branch[2]; variable in typeref:typename:cmdloop_branch_t[2]
1390 cmdloop_branch_init(&branch[0], &ieee80211bool.pk_parser);
1391 cmdloop_branch_init(&branch[1], &kw80211.pk_parser);
1392 register_cmdloop_branch(&branch[0]);
1393 register_cmdloop_branch(&branch[1]);
  /src/sys/arch/arm/arm/
disassem.c 80 * b - branch address
98 * t - thumb branch address (bits 24, 0-23)
185 /* A5.5 Branch, branch with link, and block data transfer */
437 int branch; local in function:disasm
601 /* b - branch address */
603 branch = ((insn << 2) & 0x03ffffff);
604 if (branch & 0x02000000)
605 branch |= 0xfc000000;
606 di->di_printaddr(loc + 8 + branch);
    [all...]
  /src/sys/arch/m68k/fpe/
fpu_emulate.c 1062 int advance, sig, branch, displ; local in function:fpu_emul_type1
1065 branch = test_cc(fe, insn->is_word1);
1066 if (branch > 0)
1067 return branch;
1073 if (branch) {
1077 /* decrement Dn and if (Dn != -1) branch */
1124 if (branch) {
1139 sig = fpu_store_ea(frame, insn, &insn->is_ea, (char *)&branch);
1158 * Get branch displacement.
1187 * branch does take place; 2 is the offset to the 1st disp wor
    [all...]
  /src/common/lib/libc/gen/
ptree.c 81 * each node has two identities: its leaf identity and its branch identity.
82 * Each is separate from the other. Every branch is tagged as to whether
83 * it points to a leaf or a branch. This is not an attribute of the object
85 * the tag to determine whether it points to a leaf or branch identity, with
86 * branch identities having the low bit set.
88 * A node's branch identity has one rule: when traversing the tree from the
90 * the node's branch identity. Of course, that has an exception: since to
91 * store N leaves, you need N-1 branches. That one node whose branch identity
95 * which branch slot is used. The bit length can be zero resulting in a
96 * one-way branch. This happens in two special cases: the root an
211 pt_node_t * const branch = PT_NODE(branch_node); local in function:ptree_find_branch
1081 const pt_node_t *branch; local in function:ptree_check_find_node2
    [all...]

Completed in 146 milliseconds