Searched refs:zp (Results 1 - 25 of 53) sorted by relevance

123

/macosx-10.10/ksh-23/ksh/src/lib/libast/tm/
H A Dtmtype.c45 register Tm_zone_t* zp; local
49 zp = tm_info.local;
52 if ((t = zp->type) && tmword(s, e, t, NiL, 0)) return(zp);
53 if (zp == tm_info.local) zp = tm_data.zone;
54 else zp++;
55 } while (zp->standard);
H A Dtmzone.c51 register Tm_zone_t* zp; local
68 zp = tm_info.local;
72 if (zp->type)
73 prev = zp->type;
76 if (tmword(name, end, zp->standard, NiL, 0))
80 return zp;
82 if (zp->dst && zp->daylight && tmword(name, end, zp->daylight, NiL, 0))
85 *dst = zp
[all...]
H A Dtminit.c179 Tm_zone_t* zp; local
189 tm_info.local->type = (n && *v) ? ((zp = tmtype(v, NiL)) ? zp->type : strdup(v)) : 0;
208 register Tm_zone_t* zp; local
344 for (zp = tm_data.zone; zp->standard; zp++)
346 if (zp->type)
347 t = zp->type;
348 if (zp
442 tminit(register Tm_zone_t* zp) argument
[all...]
H A Dtmxfmt.c117 Tm_zone_t* zp; local
474 if ((zp = tm->tm_zone) != tm_info.local)
475 for (; zp >= tm_data.zone; zp--)
476 if (p = zp->type)
478 else if (p = zp->type)
587 if ((zp = tmzone(arg, &f, 0, 0)) && !*f && tm->tm_zone != zp)
588 tm = tmxtm(tm, tmxtime(tm, tm->tm_zone->west + (tm->tm_isdst ? tm->tm_zone->dst : 0)), zp);
597 if ((zp
[all...]
H A Dtmxscan.c184 Tm_zone_t* zp; local
374 if (zp = tmtype(s, &u))
377 u = zp->type;
384 if ((zp = tmzone(s, &u, u, &m)))
387 set.zone = zp->west + m;
388 tm_info.date = zp;
/macosx-10.10/Libc-1044.1.2/gen/FreeBSD/
H A Dtimezone.c113 struct zone *zp; local
116 for (zp = zonetab; zp->offset != -1;++zp) /* static tables */
117 if (zp->offset == zone) {
118 if (dst && zp->dlzone)
119 return(zp->dlzone);
120 if (!dst && zp->stdzone)
121 return(zp->stdzone);
/macosx-10.10/bind9-45.101/bind9/contrib/zkt/
H A Dnscomm.c99 int dist_and_reload (const zone_t *zp, int what) argument
108 assert (zp != NULL);
109 assert (zp->conf->dist_cmd != NULL);
112 if ( zp->conf->dist_cmd == NULL )
115 if ( !is_exec_ok (zp->conf->dist_cmd) )
124 verbmesg (1, zp->conf, mesg, zp->conf->dist_cmd);
125 lg_mesg (LG_ERROR, "exec of distribution command %s disabled due to security reasons", zp->conf->dist_cmd);
131 if ( zp->conf->view )
133 snprintf (zone, sizeof (zone), "\"%s\" in view \"%s\"", zp
[all...]
H A Dzkt-signer.c99 static int parsedir (const char *dir, zone_t **zp, const zconf_t *conf);
100 static int dosigning (zone_t *zonelist, zone_t *zp);
104 static int sign_zone (const zone_t *zp);
144 zone_t *zp; local
258 for ( zp = zonelist; zp; zp = zp->next )
259 zone_print ("in main: ", zp);
323 for ( zp
428 parsedir(const char *dir, zone_t **zp, const zconf_t *conf) argument
461 dosigning(zone_t *zonelist, zone_t *zp) argument
825 sign_zone(const zone_t *zp) argument
[all...]
H A Dzone.c67 zone_t *zp; local
69 if ( (zp = malloc (sizeof (zone_t))) )
71 memset (zp, 0, sizeof (zone_t));
72 return zp;
99 void zone_free (zone_t *zp) argument
101 assert (zp != NULL);
103 if ( zp->zone ) free ((char *)zp->zone);
104 if ( zp->dir ) free ((char *)zp
140 zone_new(zone_t **zp, const char *zone, const char *dir, const char *file, const char *signed_ext, const zconf_t *cp) argument
[all...]
H A Drollover.c117 ** Check if the parent directory of the zone specified by zp
121 static int is_parentdirsigned (const zone_t *zonelist, const zone_t *zp) argument
129 snprintf (path, sizeof (path), "%s/../%s", zp->dir, LOCALCONF_FILE);
133 conf = zp->conf;
137 if ( conf != zp->conf ) /* if we read in a local config file.. */
147 ext = strrchr (zp->sfile, '.');
148 if ( ext && strcmp (zp->sfile, ".dsigned") == 0 ) /* is the current zone a dynamic one ? */
150 snprintf (path, sizeof (path), "%s/../%s", zp->dir, "zone.db.signed");
158 parentname = strchr (zp->zone, '.'); /* find first dot in zone name */
168 snprintf (path, sizeof (path), "%s/../%s", zp
224 kskrollover(dki_t *ksk, zone_t *zonelist, zone_t *zp) argument
470 kskstatus(zone_t *zonelist, zone_t *zp) argument
[all...]
H A Dnscomm.h51 extern int dist_and_reload (const zone_t *zp, int what);
H A Dzone.h56 extern void zone_free (zone_t *zp);
58 extern zone_t *zone_new (zone_t **zp, const char *zone, const char *dir, const char *file, const char *signed_ext, const zconf_t *cp);
H A Drollover.h57 extern int kskstatus (zone_t *zonelist, zone_t *zp);
/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Dwaitpid.c99 register struct zombie* zp;
114 zp = zombies;
115 while (zp)
117 if (zp->pid >= 0 && (zp->pid == pid || pid <= 0))
119 if (pp) pp->next = zp->next;
120 else zombies = zp->next;
121 if (status) *status = zp->status;
122 pid = zp->pid;
123 free(zp);
[all...]
/macosx-10.10/ICU-531.30/icuSources/tools/tzcode/
H A Dzic.c163 static void outzone(const struct zone * zp, int ntzones);
176 const struct zone * zp, int ntzones);
865 register struct zone * zp; local
900 zp = &zones[i];
901 zp->z_rules = NULL;
902 zp->z_nrules = 0;
910 zp = &zones[i];
911 if (strcmp(zp->z_rule, rp->r_name) != 0)
913 zp->z_rules = rp;
914 zp
2018 register const struct zone * zp; local
2100 register const struct zone * zp; local
[all...]
/macosx-10.10/system_cmds-643.1.1/zic.tproj/
H A Dzic.c117 static void outzone P((const struct zone * zp, int ntzones));
721 register struct zone * zp; local
756 zp = &zones[i];
757 zp->z_rules = NULL;
758 zp->z_nrules = 0;
766 zp = &zones[i];
767 if (strcmp(zp->z_rule, rp->r_name) != 0)
769 zp->z_rules = rp;
770 zp->z_nrules = out - base;
774 zp
1563 register const struct zone * zp; local
[all...]
/macosx-10.10/pdisk-9/
H A Ddump.c492 Block0 *zp; local
517 zp = map->misc;
520 printf("signature 0x%x", zp->sbSig);
521 if (zp->sbSig == BLOCK0_SIGNATURE) {
527 zp->sbBlkSize, zp->sbBlkCount);
529 zp->sbDevType, zp->sbDevId, zp->sbData);
530 if (zp
744 Block0 *zp; local
[all...]
/macosx-10.10/Security-57031.1.35/Security/sec/Security/
H A DSecDH.c56 cczp_t zp = { .u = p }; local
57 cc_size s = ccn_sizeof_n(cczp_n(zp));
117 gp.zp.zp->mod_prime = cczp_mod;
119 cczp_init(gp.zp);
207 gp.zp.zp->mod_prime = cczp_mod;
209 cczp_init(gp.zp);
243 cczp_const_t zp; local
244 zp
[all...]
H A DSecECKey.c72 if (ccec_ctx_cp(pubkey).zp)
82 ccec_const_cp_t nullCP = { .zp = NULL };
92 ccec_const_cp_t nullCP = { .zp = NULL };
444 if (ccec_ctx_cp(fullkey).zp)
468 if (cp.zp == NULL) {
472 require_action(cp.zp != NULL, abort, err = errSecDecode);
482 require(cp.zp != NULL, abort);
514 if (!cp.zp) {
/macosx-10.10/zsh-61/zsh/Src/Zle/
H A Dzle_params.c153 struct zleparam *zp; local
155 for(zp = zleparams; zp->name; zp++) {
156 Param pm = createparam(zp->name, (zp->type |PM_SPECIAL|PM_REMOVABLE|
159 pm = (Param) paramtab->getnode(paramtab, zp->name);
163 pm->u.data = zp->data;
164 switch(PM_TYPE(zp->type)) {
166 pm->gsu.s = zp
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/regex/
H A Dregclass.c193 Ctype_t* zp; local
203 xp = zp = 0;
208 if (!zp)
211 zp = cp;
220 if (!(cp = zp))
/macosx-10.10/postfix-255/postfix/src/global/
H A Dmail_queue.h141 #define MQID_LG_GET_HEX_USEC(bp, zp) do { \
144 vstring_strncpy((bp), (zp) - MQID_LG_USEC_PAD, MQID_LG_USEC_PAD); \
/macosx-10.10/emacs-93/emacs/etc/
H A DTUTORIAL.cs33 vp�ed, pomoc� C-v. K p�echodu o obrazovku zp�t pou�ijte M-v
46 M-v Posun o obrazovku zp�t
62 Je toho mo�no dos�hnout n�kolika zp�soby. Nejz�kladn�j��m zp�sobem je
82 N jako next (n�sleduj�c�), B jako backward (zp�t), F jako forward (vp�ed).
116 o slovo zp�t.
154 C-b P�esun o znak zp�t
157 M-b P�esun o slovo zp�t
165 M-a P�esun zp�t na za��tek v�ty
207 v�jime�n� p��kazy jej pou��vaj� jin�m zp�sobe
[all...]
/macosx-10.10/Security-57031.1.35/Security/sec/Security/Regressions/vmdh/
H A Dvmdh-42-example2.c29 cczp_t zp = { .u = p }; local
30 cc_size s = ccn_sizeof_n(cczp_n(zp));
/macosx-10.10/xnu-2782.1.97/osfmk/kern/
H A Dzalloc.c173 * and on every free for zones smaller than a cacheline. If -zp
180 * "-zp" to always poison every free if you are attempting to reproduce
234 * Passing the -no-zp boot-arg disables even this behavior.
238 /* set by zp-factor=N boot arg, zero indicates non-tiny poisoning disabled */
241 /* set by zp-scale=N boot arg, scales zp_factor by zone size */
244 /* set in zp_init, zero indicates -no-zp boot-arg */
296 /* -zp: enable poisoning for every alloc and free */
297 if (PE_parse_boot_argn("-zp", temp_buf, sizeof(temp_buf))) {
301 /* -no-zp: disable poisoning completely even for tiny zones */
302 if (PE_parse_boot_argn("-no-zp", temp_bu
3135 struct zone_page_table_entry *zp; local
3163 struct zone_page_table_entry *zp; local
3188 struct zone_page_table_entry *zp; local
3213 struct zone_page_table_entry *zp; local
3243 struct zone_page_table_entry *zp; local
3279 struct zone_page_table_entry *zp; local
3385 struct zone_page_table_entry *zp; local
[all...]

Completed in 159 milliseconds

123