Home
last modified time | relevance | path

Searched refs:lab (Results 1 – 25 of 192) sorted by relevance

12345678

/netbsd-src/usr.sbin/ldpd/
H A Dmpls_interface.c56 mpls_add_label(struct label *lab) in mpls_add_label() argument
64 assert(lab != NULL); in mpls_add_label()
66 oldbinding = lab->binding; in mpls_add_label()
67 prefixlen = from_union_to_cidr(&lab->so_pref); in mpls_add_label()
69 strlcpy(p_str, satos(lab->p->address), sizeof(p_str)); in mpls_add_label()
71 satos(&lab->so_dest.sa), prefixlen, lab->label, lab->binding,p_str); in mpls_add_label()
78 if ((pm = ldp_test_mapping(&lab->so_dest.sa, prefixlen, in mpls_add_label()
79 &lab->so_gate.sa)) == NULL || pm->peer != lab->p) { in mpls_add_label()
86 if (lab->so_gate.sa.sa_family != AF_INET && in mpls_add_label()
87 lab->so_gate.sa.sa_family != AF_INET6) { in mpls_add_label()
[all …]
H A Dtlv_stack.c160 struct label *lab; in withdraw_label() local
203 lab = label_get_by_prefix(&socktmp.sa, pref->prelen); in withdraw_label()
204 if (lab && lab->p == p) { in withdraw_label()
205 label_reattach_route(lab, REATT_INET_CHANGE); in withdraw_label()
206 announce_label_change(lab); /* binding has changed */ in withdraw_label()
414 struct label *lab; in request_respond() local
448 lab = label_get_by_prefix(&socktmp.sa, pref->prelen); in request_respond()
449 if (!lab) in request_respond()
455 send_label_tlv(p, &socktmp.sa, pref->prelen, lab->binding, in request_respond()
H A Dmpls_routes.c586 struct label *lab; in check_route() local
659 lab = label_get(so_dest, so_pref); in check_route()
660 if (lab) { in check_route()
663 label_reattach_route(lab, REATT_INET_DEL); in check_route()
664 label_del(lab); in check_route()
687 lab = label_add(so_dest, so_pref, in check_route()
691 if (lab != NULL) in check_route()
692 mpls_add_label(lab); in check_route()
708 lab = label_get(so_dest, so_pref); in check_route()
709 if (!lab) in check_route()
[all …]
/netbsd-src/external/bsd/nsd/dist/
H A Dradtree.c1068 unsigned int lab = 0, kpos, dpos = 0; in radname_d2r() local
1089 labstart[lab++] = &dname[dpos]; in radname_d2r()
1100 assert(lab > 0); in radname_d2r()
1101 lab-=1; in radname_d2r()
1102 kpos = *labstart[lab]; in radname_d2r()
1103 cpy_d2r(k, labstart[lab]+1, kpos); in radname_d2r()
1105 while(lab) { in radname_d2r()
1109 lab--; in radname_d2r()
1110 cpy_d2r(k+kpos, labstart[lab]+1, *labstart[lab]); in radname_d2r()
1111 kpos += *labstart[lab]; in radname_d2r()
[all …]
/netbsd-src/sbin/disklabel/
H A Dmain.c147 static struct disklabel lab; /* The label we have updated */ variable
711 if (lab.d_bbsize == 0)
712 lab.d_bbsize = BBSIZE;
713 if (lab.d_sbsize == 0)
714 lab.d_sbsize = SBLOCKSIZE;
715 interact(&lab, f);
728 makedisktab(stdout, &lab);
730 showinfo(stdout, &lab, specname);
731 showpartitions(stdout, &lab, Cflag);
733 error = checklabel(&lab);
[all...]
/netbsd-src/sbin/fsirand/
H A Dfsirand.c133 fixinodes(int fd, struct fs *fs, struct disklabel *lab, int pflag, long xorval) in fixinodes() argument
156 (off_t) lab->d_secsize; in fixinodes()
231 struct disklabel lab; in main() local
278 memset(&lab, 0, sizeof(lab)); in main()
279 lab.d_secsize = DEV_BSIZE; /* XXX */ in main()
281 if (ioctl(fd, DIOCGDINFO, &lab) == -1) in main()
288 fixinodes(fd, fs, &lab, pflag, xorval); in main()
/netbsd-src/usr.bin/indent/
H A Dindent.c77 struct buffer lab; variable
420 buf_add_char(&lab, '#'); in read_preprocessing_line()
423 buf_add_char(&lab, inp_next()); in read_preprocessing_line()
424 switch (lab.s[lab.len - 1]) { in read_preprocessing_line()
427 buf_add_char(&lab, inp_next()); in read_preprocessing_line()
432 buf_add_char(&lab, *in.p++); in read_preprocessing_line()
450 buf_add_char(&lab, *in.p++); in read_preprocessing_line()
456 while (lab.len > 0 && ch_isblank(lab in read_preprocessing_line()
[all...]
H A Dio.c183 && (lab.len > 0 || code.len > 0)) { in want_blank_line()
232 if (lab.s[0] == '#')
242 write_range(lab.s, lab.len); in compute_lined_up_code_indent()
303 if (lab.len > 0 && target_ind <= out_ind)
352 if (lab.len == 0 && code.len == 0 && com.len == 0) in output_indented_line()
373 if (lab.len > 0) in output_indented_line()
440 buf_clear(&lab); in output_line()
/netbsd-src/external/bsd/pcc/dist/pcc/arch/powerpc/
H A Dlocal2.c615 static int lab = 0; in ftou() local
622 if (lab == 0) { in ftou()
623 lab = getlab2(); in ftou()
625 printf(LABFMT ":\t.long 0x41e00000\n\t.long 0\n", lab); in ftou()
649 printf(LABFMT, lab); in ftou()
652 printf(LABFMT, lab); in ftou()
657 printf(LABFMT "\n", lab); in ftou()
664 printf("%s," LABFMT "@ha\n", rnames[R31], lab); in ftou()
666 printf(LABFMT "@l", lab); in ftou()
673 printf(LABFMT, lab); in ftou()
[all …]
H A Dcode.c659 int lab = getlab(); in genswitch_bintree() local
662 p[0]->slab = lab; in genswitch_bintree()
666 plabel(lab); in genswitch_bintree()
760 int lab = deflabel;
763 lab = p[j]->slab;
766 snprintf(entry, 20, "\t.long " LABFMT "-" LABFMT "\n", lab, tbllabel);
783 static void mrst_rec(int num, struct swents **p, int n, int *state, int lab);
784 static unsigned long mrst_find_window(struct swents **p, int n, int *state, int lab, int *len, int …
785 …d_recurse(int num, struct swents **p, int n, int *state, int tbllabel, int lab, unsigned long j, u…
823 mrst_rec(int num, struct swents **p, int n, int *state, int lab)
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DHowToAddABuilder.rst16 * The main buildmaster at `<http://lab.llvm.org:8011>`_. All builders attached
18 * The staging buildbot at `<http://lab.llvm.org:8014>`_. All builders attached
54 to the **lab.llvm.org** port **9990** (see `Buildbot documentation,
62 lab.llvm.org:9990 \
66 To point a worker to silent master please use lab.llvm.org:9994 instead
67 of lab.llvm.org:9990.
107 <http://lab.llvm.org:8011/#/waterfall>`_ to make sure it is connected, and
108 ``http://lab.llvm.org:8011/#/workers`` to see if administrator contact and
/netbsd-src/external/gpl3/gcc/dist/gcc/config/sh/
H A Dsh-mem.cc114 rtx lab = function_symbol (func_addr_rtx, "__movmemSI12_i4", in expand_block_move() local
115 SFUNC_STATIC).lab; in expand_block_move()
118 emit_insn (gen_block_move_real_i4 (func_addr_rtx, lab)); in expand_block_move()
128 rtx lab = function_symbol (func_addr_rtx, bytes & 4 in expand_block_move() local
131 SFUNC_STATIC).lab; in expand_block_move()
137 emit_insn (gen_block_lump_real_i4 (func_addr_rtx, lab)); in expand_block_move()
151 rtx lab = function_symbol (func_addr_rtx, entry, SFUNC_STATIC).lab; in expand_block_move() local
154 emit_insn (gen_block_move_real (func_addr_rtx, lab)); in expand_block_move()
168 rtx lab = function_symbol (func_addr_rtx, "__movmem", SFUNC_STATIC).lab; in expand_block_move() local
181 emit_insn (gen_block_lump_real (func_addr_rtx, lab)); in expand_block_move()
H A Dsh.cc2422 rtx_code_label *lab = NULL; in sh_emit_compare_and_set() local
2444 lab = gen_label_rtx (); in sh_emit_compare_and_set()
2446 emit_jump_insn (gen_branch_true (lab)); in sh_emit_compare_and_set()
2464 if (lab) in sh_emit_compare_and_set()
2465 emit_label (lab); in sh_emit_compare_and_set()
2577 struct { rtx lab, reg, op; } this_jmp; in output_far_jump() member
2584 this_jmp.lab = gen_label_rtx (); in output_far_jump()
2627 output_asm_insn (jump, &this_jmp.lab); in output_far_jump()
2641 output_asm_insn (jump, &this_jmp.lab); in output_far_jump()
2652 (*targetm.asm_out.internal_label) (asm_out_file, "L", CODE_LABEL_NUMBER (this_jmp.lab)); in output_far_jump()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/sh/
H A Dsh-mem.cc114 rtx lab = function_symbol (func_addr_rtx, "__movmemSI12_i4", in expand_block_move() local
115 SFUNC_STATIC).lab; in expand_block_move()
118 emit_insn (gen_block_move_real_i4 (func_addr_rtx, lab)); in expand_block_move()
128 rtx lab = function_symbol (func_addr_rtx, bytes & 4 in expand_block_move() local
131 SFUNC_STATIC).lab; in expand_block_move()
137 emit_insn (gen_block_lump_real_i4 (func_addr_rtx, lab)); in expand_block_move()
151 rtx lab = function_symbol (func_addr_rtx, entry, SFUNC_STATIC).lab; in expand_block_move() local
154 emit_insn (gen_block_move_real (func_addr_rtx, lab)); in expand_block_move()
168 rtx lab = function_symbol (func_addr_rtx, "__movmem", SFUNC_STATIC).lab; in expand_block_move() local
181 emit_insn (gen_block_lump_real (func_addr_rtx, lab)); in expand_block_move()
H A Dsh.c2422 rtx_code_label *lab = NULL; in sh_emit_compare_and_set() local
2444 lab = gen_label_rtx (); in sh_emit_compare_and_set()
2446 emit_jump_insn (gen_branch_true (lab)); in sh_emit_compare_and_set()
2464 if (lab) in sh_emit_compare_and_set()
2465 emit_label (lab); in sh_emit_compare_and_set()
2577 struct { rtx lab, reg, op; } this_jmp; in output_far_jump() member
2584 this_jmp.lab = gen_label_rtx (); in output_far_jump()
2627 output_asm_insn (jump, &this_jmp.lab); in output_far_jump()
2641 output_asm_insn (jump, &this_jmp.lab); in output_far_jump()
2652 (*targetm.asm_out.internal_label) (asm_out_file, "L", CODE_LABEL_NUMBER (this_jmp.lab)); in output_far_jump()
[all …]
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/qcom/
H A Dpmi8998.dtsi30 compatible = "qcom,pmi8998-lab-ibb";
38 lab: lab { label
/netbsd-src/lib/librumpuser/
H A Drumpuser_file.c145 struct disklabel lab; in rumpuser_getfileinfo() local
147 if (ioctl(fd, DIOCGDINFO, &lab) == 0) { in rumpuser_getfileinfo()
148 parta = &lab.d_partitions[DISKPART(sb.st_rdev)]; in rumpuser_getfileinfo()
149 size = (uint64_t)lab.d_secsize * parta->p_size; in rumpuser_getfileinfo()
/netbsd-src/external/gpl3/binutils/dist/gas/config/
H A Dtc-dlx.c1076 int lab; in dlx_unrecognized_line() local
1084 lab = 0; in dlx_unrecognized_line()
1087 lab = lab * 10 + *s - '0'; in dlx_unrecognized_line()
1095 if (dollar_label_defined (lab)) in dlx_unrecognized_line()
1097 as_bad (_("label \"$%d\" redefined"), lab); in dlx_unrecognized_line()
1101 define_dollar_label (lab); in dlx_unrecognized_line()
1102 colon (dollar_label_name (lab, 0)); in dlx_unrecognized_line()
H A Dtc-nios2.h67 #define tc_frob_label(lab) nios2_frob_label (lab) argument
/netbsd-src/external/gpl3/binutils.old/dist/gas/config/
H A Dtc-dlx.c1075 int lab; in dlx_unrecognized_line() local
1083 lab = 0; in dlx_unrecognized_line()
1086 lab = lab * 10 + *s - '0'; in dlx_unrecognized_line()
1094 if (dollar_label_defined (lab)) in dlx_unrecognized_line()
1096 as_bad (_("label \"$%d\" redefined"), lab); in dlx_unrecognized_line()
1100 define_dollar_label (lab); in dlx_unrecognized_line()
1101 colon (dollar_label_name (lab, 0)); in dlx_unrecognized_line()
H A Dtc-nios2.h67 #define tc_frob_label(lab) nios2_frob_label (lab) argument
/netbsd-src/external/bsd/bc/dist/
H A Dload.c89 def_label (unsigned long lab) in def_label() argument
95 group = lab >> BC_LABEL_LOG; in def_label()
96 offset = lab % BC_LABEL_GROUP; in def_label()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtree-eh.cc725 tree lab = CASE_LABEL (gimple_switch_label (switch_expr, i)); in verify_norecord_switch_expr() local
726 temp.t = lab; in verify_norecord_switch_expr()
1064 tree lab; in lower_try_finally_nofallthru() local
1070 lab = create_artificial_label (gimple_location (tf->try_finally_expr)); in lower_try_finally_nofallthru()
1076 x = gimple_build_label (lab); in lower_try_finally_nofallthru()
1083 do_return_redirection (q, lab, NULL); in lower_try_finally_nofallthru()
1085 do_goto_redirection (q, lab, NULL, tf); in lower_try_finally_nofallthru()
1115 x = gimple_build_goto (lab); in lower_try_finally_nofallthru()
1302 tree lab; in lower_try_finally_copy() local
1308 lab = labels[index].label in lower_try_finally_copy()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtree-eh.c725 tree lab = CASE_LABEL (gimple_switch_label (switch_expr, i)); in verify_norecord_switch_expr() local
726 temp.t = lab; in verify_norecord_switch_expr()
1069 tree lab; in lower_try_finally_nofallthru() local
1075 lab = create_artificial_label (gimple_location (tf->try_finally_expr)); in lower_try_finally_nofallthru()
1081 x = gimple_build_label (lab); in lower_try_finally_nofallthru()
1088 do_return_redirection (q, lab, NULL); in lower_try_finally_nofallthru()
1090 do_goto_redirection (q, lab, NULL, tf); in lower_try_finally_nofallthru()
1120 x = gimple_build_goto (lab); in lower_try_finally_nofallthru()
1307 tree lab; in lower_try_finally_copy() local
1313 lab = labels[index].label in lower_try_finally_copy()
[all …]
/netbsd-src/external/gpl2/lvm2/dist/lib/device/
H A Ddev-io.c136 struct disklabel lab; in _get_block_size() local
144 if (ioctl(dev_fd(dev), DIOCGDINFO, &lab) < 0) { in _get_block_size()
147 dev->block_size = lab.d_secsize; in _get_block_size()
269 struct disklabel lab; in _dev_get_size_dev() local
284 if (ioctl(fd, DIOCGDINFO, &lab) == -1) { in _dev_get_size_dev()
293 *size = lab.d_partitions[DISKPART(stat.st_rdev)].p_size; in _dev_get_size_dev()

12345678