Searched refs:tmpl (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-10.0-release/contrib/groff/src/libs/libgroff/
H A Dmksdir.cpp31 int mksdir(char *tmpl) argument
33 return gen_tempname(tmpl, 1);
H A Dmkstemp.cpp31 int mkstemp(char *tmpl) argument
33 return gen_tempname(tmpl, 0);
H A Dtmpname.cpp68 int gen_tempname(char *tmpl, int dir) argument
72 size_t len = strlen(tmpl);
73 if (len < 6 || strcmp(&tmpl[len - 6], "XXXXXX"))
77 char *XXXXXX = &tmpl[len - 6];
105 int fd = dir ? mkdir(tmpl, S_IRUSR | S_IWUSR | S_IXUSR)
106 : open(tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
/freebsd-10.0-release/usr.sbin/config/
H A DMakefile9 kernconf.c: kernconf.tmpl
10 file2c 'char kernconfstr[] = {' ',0};' < ${.CURDIR}/kernconf.tmpl > kernconf.c
/freebsd-10.0-release/share/info/
H A DMakefile21 dir-tmpl ${DESTDIR}${INFODIR}/dir
/freebsd-10.0-release/crypto/heimdal/lib/roken/
H A Dtest-readenv.c49 make_file(char *tmpl, size_t l) argument
52 strlcpy(tmpl, "env.XXXXXX", l);
53 fd = mkstemp(tmpl);
/freebsd-10.0-release/contrib/groff/src/include/
H A Dlib.h74 int mkstemp(char *tmpl);
77 int mksdir(char *tmpl);
/freebsd-10.0-release/sys/boot/powerpc/boot1.chrp/
H A DMakefile30 uudecode ${.CURDIR}/hfs.tmpl.bz2.uu
31 mv hfs.tmpl.bz2 ${.TARGET}.bz2
H A Dgenerate-hfs.sh21 OUTPUT_FILE=hfs.tmpl
/freebsd-10.0-release/sys/contrib/octeon-sdk/
H A Dcvmx-clock.h102 " rdhwr %[tmpl], $31 \n"
103 " dsrl %[tmph], %[tmpl], 32 \n"
104 " sll %[tmpl], 0 \n"
107 : [tmpl] "=&r" (tmp_low), [tmph] "=&r" (tmp_hi) : );
/freebsd-10.0-release/sys/ia64/disasm/
H A Ddisasm_format.c297 const char *tmpl; local
300 tmpl = b->b_templ + slot;
301 if (*tmpl == ';' || (slot == 2 && b->b_templ[1] == ';'))
302 tmpl++;
304 if (*tmpl == 'L' || i->i_op == ASM_OP_NONE)
308 printf("%lx[%c] ", ip + slot, *tmpl);
/freebsd-10.0-release/contrib/gcc/cp/
H A Dpt.c231 tree tmpl = CLASSTYPE_TI_TEMPLATE (type); local
232 check_member_template (tmpl);
233 return tmpl;
641 check_specialization_namespace (tree tmpl) argument
643 tree tpl_ns = decl_namespace_context (tmpl);
645 /* [tmpl.expl.spec]
659 pedwarn ("specialization of %qD in different namespace", tmpl);
660 pedwarn (" from definition of %q+#D", tmpl);
796 optimize_specialization_lookup_p (tree tmpl) argument
798 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
836 retrieve_specialization(tree tmpl, tree args, bool class_specializations_p) argument
923 retrieve_local_specialization(tree tmpl) argument
933 is_specialization_of(tree decl, tree tmpl) argument
1148 register_specialization(tree spec, tree tmpl, tree args, bool is_friend) argument
1269 reregister_specialization(tree spec, tree tmpl, tree new_spec) argument
1310 register_local_specialization(tree spec, tree tmpl) argument
1610 tree tmpl = most_specialized_instantiation (templates); local
1703 tree tmpl; local
1953 tree tmpl = NULL_TREE; local
2595 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE); local
3027 tree tmpl; local
3344 tree tmpl; local
4365 tree tmpl = most_general_template (CLASSTYPE_TI_TEMPLATE (t)); local
4858 tree tmpl = CLASSTYPE_TI_TEMPLATE (TREE_VALUE (found)); local
5324 tree tmpl; local
5562 tree tmpl; local
6872 tree tmpl = NULL_TREE; local
9319 tree tmpl; local
9482 check_instantiated_args(tree tmpl, tree args, tsubst_flags_t complain) argument
9543 instantiate_template(tree tmpl, tree targ_ptr, tsubst_flags_t complain) argument
11274 tree tmpl; local
11517 most_specialized_class(tree type, tree tmpl) argument
11893 regenerate_decl_from_template(tree decl, tree tmpl) argument
11978 tree tmpl = DECL_TI_TEMPLATE (decl); local
12041 tree tmpl = DECL_TI_TEMPLATE (d); local
12348 tf_warning_or_error, tmpl, local
12573 tree tmpl; local
13175 dependent_template_p(tree tmpl) argument
13205 dependent_template_id_p(tree tmpl, tree args) argument
13269 tree tmpl; local
[all...]
H A Derror.c1006 tree tmpl; local
1009 tmpl = most_general_template (t);
1010 if (tmpl && TREE_CODE (tmpl) == TEMPLATE_DECL)
1012 template_parms = DECL_TEMPLATE_PARMS (tmpl);
1013 t = tmpl;
H A Dcall.c2209 add_template_candidate_real (struct z_candidate **candidates, tree tmpl, argument
2215 int ntparms = DECL_NTPARMS (tmpl);
2224 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (tmpl))
2227 if ((DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (tmpl)
2228 || DECL_BASE_CONSTRUCTOR_P (tmpl))
2229 && CLASSTYPE_VBASECLASSES (DECL_CONTEXT (tmpl)))
2232 i = fn_type_unification (tmpl, explicit_targs, targs,
2239 fn = instantiate_template (tmpl, targs, tf_none);
2281 if (DECL_TI_TEMPLATE (fn) != tmpl)
2299 cand->template_decl = tree_cons (tmpl, targ
2308 add_template_candidate(struct z_candidate **candidates, tree tmpl, tree ctype, tree explicit_targs, tree arglist, tree return_type, tree access_path, tree conversion_path, int flags, unification_kind_t strict) argument
2322 add_template_conv_candidate(struct z_candidate **candidates, tree tmpl, tree obj, tree arglist, tree return_type, tree access_path, tree conversion_path) argument
[all...]
/freebsd-10.0-release/usr.bin/xinstall/
H A Dxinstall.c520 char tmpl[MAXPATHLEN]; local
524 (void)snprintf(tmpl, sizeof(tmpl), "%s.inst.XXXXXX", to_name);
526 if (quiet_mktemp(tmpl) == NULL)
527 err(EX_OSERR, "%s: mktemp", tmpl);
528 ret = link(from_name, tmpl);
532 unlink(tmpl);
539 ret = rename(tmpl, to_name);
545 (void)unlink(tmpl);
560 char tmpl[MAXPATHLE local
[all...]
/freebsd-10.0-release/contrib/atf/atf-run/
H A Dfs_test.cpp75 atf::fs::path tmpl("testdir.XXXXXX");
76 temp_dir td1(tmpl);
77 temp_dir td2(tmpl);
83 ATF_REQUIRE(!atf::fs::exists(tmpl));
/freebsd-10.0-release/sys/ia64/ia64/
H A Ddb_machdep.c362 const char *tmpl; local
370 tmpl = bundle.b_templ + slot;
371 if (*tmpl == ';' || (slot == 2 && bundle.b_templ[1] == ';'))
372 tmpl++;
373 if (*tmpl == 'L' || i->i_op == ASM_OP_NONE) {
379 db_printf("[%c%d] ", *tmpl, slot);
412 if (tmpl[1] == ';')
415 tmpl = NULL;
422 if (slot == 1 && tmpl[1] == 'L')
/freebsd-10.0-release/cddl/contrib/opensolaris/tools/ctf/common/
H A Dlist.c156 list_find(list_t *list, void *tmpl, int (*cmp)(void *, void *)) argument
159 if (cmp(list->l_data, tmpl) == 0)
/freebsd-10.0-release/contrib/atf/atf-c/detail/
H A Dfs.c207 do_mkdtemp(char *tmpl) argument
211 PRE(strstr(tmpl, "XXXXXX") != NULL);
213 if (mkdtemp(tmpl) == NULL)
215 "with template '%s'", tmpl);
224 do_mkstemp(char *tmpl, int *fdout) argument
228 PRE(strstr(tmpl, "XXXXXX") != NULL);
230 *fdout = mkstemp(tmpl);
233 "with template '%s'", tmpl);
/freebsd-10.0-release/sys/powerpc/powermac/
H A Duninorth.c217 u_int32_t tmpl; local
221 tmpl = inl(clkreg);
222 tmpl |= UNIN_CLOCKCNTL_GMAC;
223 outl(clkreg, tmpl);
231 u_int32_t tmpl; local
235 tmpl = inl(toggle);
236 tmpl |= UNIN_MPIC_RESET | UNIN_MPIC_OUTPUT_ENABLE;
237 outl(toggle, tmpl);
/freebsd-10.0-release/contrib/binutils/gas/config/
H A Dtc-ia64.c8370 struct rsrc tmpl; local
8378 tmpl.dependency = dep;
8379 tmpl.note = note;
8380 tmpl.insn_srlz = tmpl.data_srlz = 0;
8381 tmpl.qp_regno = CURR_SLOT.qp_regno;
8382 tmpl.link_to_qp_branch = 1;
8383 tmpl.mem_offset.hint = 0;
8384 tmpl.mem_offset.offset = 0;
8385 tmpl
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dtdata.c314 labelent_t *tmpl = arg2; local
315 return (streq(le->le_name, tmpl->le_name));
/freebsd-10.0-release/usr.bin/sort/
H A Dsort.c351 char *tmpl; local
354 tmpl = sort_strdup(locale);
356 if (cclocale && !strcmp(cclocale, tmpl))
362 if (pclocale && !strcmp(pclocale, tmpl))
365 setlocale(LC_COLLATE, tmpl);
366 sort_free(tmpl);
/freebsd-10.0-release/contrib/libcxxrt/
H A Dlibelftc_dem_gnu3.c85 struct vector_str tmpl; member in struct:cpp_demangle_data
531 vector_str_dest(&d->tmpl);
550 if (!vector_str_init(&d->tmpl))
560 assert(d->tmpl.container != NULL);
578 vector_str_dest(&d->tmpl);
835 if (ddata == NULL || ddata->tmpl.size <= idx)
837 if ((len = strlen(ddata->tmpl.container[idx])) == 0)
839 if (!cpp_demangle_push_str(ddata, ddata->tmpl.container[idx], len))
2160 if (!vector_str_find(&ddata->tmpl, arg, arg_len) &&
2161 !vector_str_push(&ddata->tmpl, ar
[all...]
/freebsd-10.0-release/sys/net/
H A Dieee8023ad_lacp.c1909 const struct tlv_template *tmpl, boolean_t check_type)
1915 if ((check_type && tlv->tlv_type != tmpl->tmpl_type) ||
1916 tlv->tlv_length != tmpl->tmpl_length) {
1919 if (tmpl->tmpl_type == 0) {
1924 tmpl++;
1908 tlv_check(const void *p, size_t size, const struct tlvhdr *tlv, const struct tlv_template *tmpl, boolean_t check_type) argument

Completed in 237 milliseconds

12