Home
last modified time | relevance | path

Searched refs:par (Results 1 – 25 of 60) sorted by relevance

123

/dflybsd-src/contrib/bmake/
H A Dcond.c176 static CondResult CondParser_Or(CondParser *par, bool);
200 CondParser_SkipWhitespace(CondParser *par) in CondParser_SkipWhitespace() argument
202 cpp_skip_whitespace(&par->p); in CondParser_SkipWhitespace()
261 ParseFuncArg(CondParser *par, const char **pp, bool doEval, const char *func) in ParseFuncArg() argument
278 par->printedError = true; in ParseFuncArg()
388 CondParser_StringExpr(CondParser *par, const char *start, in CondParser_StringExpr() argument
401 p = par->p; in CondParser_StringExpr()
413 par->printedError = true; in CondParser_StringExpr()
427 par->p = p; in CondParser_StringExpr()
434 if (atStart && is_separator(par->p[0])) in CondParser_StringExpr()
[all …]
/dflybsd-src/sys/kern/
H A Dvfs_cache.c777 _cache_link_parent(struct namecache *ncp, struct namecache *par, in _cache_link_parent() argument
784 ncp->nc_parent = par; in _cache_link_parent()
793 if (par->nc_flag & (NCF_SF_NOCACHE | NCF_SF_PNOCACHE)) in _cache_link_parent()
795 if (par->nc_flag & (NCF_UF_CACHE | NCF_UF_PCACHE)) in _cache_link_parent()
813 if (TAILQ_EMPTY(&par->nc_list)) { in _cache_link_parent()
822 TAILQ_INSERT_HEAD(&par->nc_list, ncp, nc_entry); in _cache_link_parent()
823 if (par->nc_parent) { in _cache_link_parent()
824 if (par->nc_flag & NCF_UNRESOLVED) in _cache_link_parent()
833 if (par->nc_vp) in _cache_link_parent()
834 vhold(par->nc_vp); in _cache_link_parent()
[all …]
H A Dvfs_nlookup.c832 struct nchandle par; in nlookup() local
838 if ((par.ncp = nch.ncp->nc_parent) != NULL) { in nlookup()
841 par.mount = nch.mount; in nlookup()
842 cache_hold(&par); in nlookup()
843 error = naccess(nd, &par, &dummy_gen, 0, nd->nl_cred, &dflags, 0); in nlookup()
844 cache_drop_and_cache(&par, nd->nl_elmno - 1); in nlookup()
1576 struct nchandle par; in naccess() local
1583 if ((par.ncp = ncp->nc_parent) == NULL) { in naccess()
1591 par.mount = nch->mount; in naccess()
1592 cache_hold(&par); in naccess()
[all …]
/dflybsd-src/lib/libc/stdlib/
H A Dheapsort.c74 #define CREATE(initval, nmemb, par_i, child_i, par, child, size, count, tmp) { \ argument
82 par = base + par_i * size; \
83 if (compar(child, par) <= 0) \
85 SWAP(par, child, count, size, tmp); \
106 #define SELECT(par_i, child_i, nmemb, par, child, size, k, count, tmp1, tmp2) { \ argument
113 par = base + par_i * size; \
114 COPY(par, child, count, size, tmp1, tmp2); \
120 par = base + par_i * size; \
121 if (child_i == 1 || compar(k, par) < 0) { \
125 COPY(child, par, count, size, tmp1, tmp2); \
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Drtl-chkp.c176 chkp_put_regs_to_expr_list (rtx par) in chkp_put_regs_to_expr_list() argument
180 if (GET_CODE (par) != PARALLEL in chkp_put_regs_to_expr_list()
181 || GET_CODE (XVECEXP (par, 0, 0)) == EXPR_LIST) in chkp_put_regs_to_expr_list()
184 for (n = 0; n < XVECLEN (par, 0); n++) in chkp_put_regs_to_expr_list()
185 XVECEXP (par, 0, n) = gen_rtx_EXPR_LIST (VOIDmode, in chkp_put_regs_to_expr_list()
186 XVECEXP (par, 0, n), in chkp_put_regs_to_expr_list()
194 chkp_get_value_with_offs (rtx par, rtx offs) in chkp_get_value_with_offs() argument
198 gcc_assert (GET_CODE (par) == PARALLEL); in chkp_get_value_with_offs()
200 for (n = 0; n < XVECLEN (par, 0); n++) in chkp_get_value_with_offs()
202 rtx par_offs = XEXP (XVECEXP (par, 0, n), 1); in chkp_get_value_with_offs()
[all …]
H A Drtl-chkp.h33 extern rtx chkp_get_value_with_offs (rtx par, rtx offs);
36 extern void chkp_put_regs_to_expr_list (rtx par);
H A Domp-grid.c289 grid_parallel_clauses_gridifiable (gomp_parallel *par, location_t tloc) in grid_parallel_clauses_gridifiable() argument
291 tree clauses = gimple_omp_parallel_clauses (par); in grid_parallel_clauses_gridifiable()
303 dump_printf_loc (MSG_NOTE, gimple_location (par), in grid_parallel_clauses_gridifiable()
314 dump_printf_loc (MSG_NOTE, gimple_location (par), in grid_parallel_clauses_gridifiable()
428 gomp_parallel *par; in grid_dist_follows_simple_pattern() local
430 || !(par = dyn_cast <gomp_parallel *> (stmt)) in grid_dist_follows_simple_pattern()
431 || !grid_parallel_clauses_gridifiable (par, tloc)) in grid_dist_follows_simple_pattern()
434 stmt = grid_find_single_omp_among_assignments (gimple_omp_body (par), grid, in grid_dist_follows_simple_pattern()
670 else if (gomp_parallel *par = dyn_cast <gomp_parallel *> (stmt)) in grid_dist_follows_tiling_pattern() local
686 if (!grid_parallel_clauses_gridifiable (par, grid->target_loc) in grid_dist_follows_tiling_pattern()
[all …]
H A Dcompare-elim.c639 rtx par = gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, set_a, set_b)); in try_validate_parallel() local
640 rtx_insn *insn = make_insn_raw (par); in try_validate_parallel()
707 rtx par = try_validate_parallel (flag_set, arith_set); in try_merge_compare() local
708 if (!par) in try_merge_compare()
717 emit_insn_after (par, def_insn); in try_merge_compare()
/dflybsd-src/sys/dev/netif/mii_layer/
H A Damphy.c211 int bmsr, bmcr, par, anlpar; in amphy_status() local
263 par = PHY_READ(sc, MII_AMPHY_DSCSR); in amphy_status()
264 if (par & DSCSR_100FDX) in amphy_status()
266 else if (par & DSCSR_100HDX) in amphy_status()
268 else if (par & DSCSR_10FDX) in amphy_status()
270 else if (par & DSCSR_10HDX) in amphy_status()
H A Dnsphy.c292 int bmsr, bmcr, par, anlpar; in nsphy_status() local
351 par = PHY_READ(sc, MII_NSPHY_PAR); in nsphy_status()
352 if (par & PAR_10) in nsphy_status()
357 if (par & PAR_FDX) in nsphy_status()
/dflybsd-src/contrib/gmp/mpn/generic/
H A Dpow_1.c35 int par; in mpn_pow_1() local
58 par = 0; in mpn_pow_1()
62 par ^= x & 1; in mpn_pow_1()
96 if (((par ^ cnt) & 1) == 0) in mpn_pow_1()
/dflybsd-src/sys/netproto/smb/
H A Dsmb_tran.h86 #define SMB_TRAN_GETPARAM(vcp,par,data) (vcp)->vc_tdesc->tr_getparam(vcp, par, data) argument
87 #define SMB_TRAN_SETPARAM(vcp,par,data) (vcp)->vc_tdesc->tr_setparam(vcp, par, data) argument
/dflybsd-src/sys/cpu/x86_64/include/
H A Dparam.h218 #define TSTMP(class, unit, event, par) _TSTMP( \ argument
222 (((par) & 0xffff) ) )
226 #define TSTMP(class, unit, event, par) _TSTMP(0) argument
/dflybsd-src/contrib/tcsh-6/
H A Dtc.bind.c58 Char *par; in dobindkey() local
72 for (no = 1, par = v[no]; in dobindkey()
73 par != NULL && (*par++ & CHAR) == '-'; no++, par = v[no]) { in dobindkey()
74 if ((p = (*par & CHAR)) == '-') { in dobindkey()
/dflybsd-src/bin/ed/
H A Dcbc.c295 int par; /* parity counter */ in set_des_key() local
302 par = 0; in set_des_key()
305 par++; in set_des_key()
306 if ((par & 0x01) == 0x01) in set_des_key()
/dflybsd-src/lib/libc/nls/
H A Dfr_FR.ISO8859-1.msg45 19 Op�ration non support�e par le dispositif
101 47 Famille d'adresse non support�e par la famille de protocole
111 52 Connexion coup�e par le r�seau
115 54 Connexion interrompue par l'h�te distant
/dflybsd-src/
H A DMakefile.inc1355 cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
361 cd ${.CURDIR}; ${WMAKE} par-obj
379 cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
391 cd ${.CURDIR}; ${WMAKE} par-depend
1235 par-${__target}: ${SUBDIR:C/$/.${__target}__D/}
1238 .ORDER: par-clean par-cleandepend par-cleandir par-obj par-depend par-includes
/dflybsd-src/contrib/dialog/
H A Dfselect.c44 WINDOW *par; /* parent window */ member
60 init_list(LIST * list, WINDOW *par, WINDOW *win, int mousex) in init_list() argument
62 list->par = par; in init_list()
107 init_list(list, list->par, list->win, list->mousex); in free_list()
215 dlg_draw_scrollbar(list->par, in display_list()
/dflybsd-src/sys/dev/drm/amd/amdgpu/
H A Damdgpu_fb.c53 struct amdgpu_fbdev *rfbdev = info->par;
67 struct amdgpu_fbdev *rfbdev = info->par;
242 info->par = rfbdev; in amdgpufb_create()
/dflybsd-src/sys/dev/drm/
H A Ddrm_fb_helper.c278 struct drm_fb_helper *helper = info->par; in drm_fb_helper_debug_enter()
315 struct drm_fb_helper *helper = info->par; in drm_fb_helper_debug_leave()
632 struct drm_fb_helper *fb_helper = info->par; in drm_fb_helper_dpms()
972 struct drm_fb_helper *helper = info->par;
1253 struct drm_fb_helper *fb_helper = info->par;
1330 struct drm_fb_helper *fb_helper = info->par;
1419 struct drm_fb_helper *fb_helper = info->par; in drm_fb_helper_setcmap()
1460 struct drm_fb_helper *fb_helper = info->par; in drm_fb_helper_ioctl()
1528 struct drm_fb_helper *fb_helper = info->par; in drm_fb_helper_check_var()
1631 struct drm_fb_helper *fb_helper = info->par; in drm_fb_helper_set_par()
[all …]
/dflybsd-src/contrib/tcsh-6/nls/spanish/
H A Dset122 20 Las palabras no están entre paréntesis
106 104 No se puede usar << entre paréntesis
108 106 Colocación de paréntesis errónea
/dflybsd-src/sys/dev/drm/radeon/
H A Dradeon_fb.c54 struct radeon_fbdev *rfbdev = info->par;
68 struct radeon_fbdev *rfbdev = info->par;
255 info->par = rfbdev; in radeonfb_create()
/dflybsd-src/usr.bin/bdes/
H A Dbdes.c455 int par; /* parity counter */ in makekey() local
462 par = 0; in makekey()
465 par++; in makekey()
466 if ((par & 0x01) == 0x01) in makekey()
/dflybsd-src/usr.bin/vi/catalog/
H A Dfrench.UTF-8.base30 031 "Impossible de configurer option %s par défaut"
47 053 "Le tampon par défaut est vide"
89 096 "\\ non suivi par / ou ?"
99 106 "Les abréviations doivent finir par un caractère \"mot\""
120 127 "%s/%s : échec de source : peut être écrit par un utilisateur autre que le propriétaire"
123 130 "%s : échec de source : peut être écrit par un utilisateur autre que le propriétaire"
251 261 "%s: accessible par un utilisateur autre que son propriétaire"
/dflybsd-src/contrib/tcsh-6/nls/french/
H A Dset132 30 Le nom de la variable doit commencer par une lettre
75 73 Division par zéro
76 74 Modulo par zéro

123