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

123

/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/mtest/
H A Dmpi.c2776 mp_digit *zp = DIGITS(mp) + du - 1; local
2778 while(du > 1 && !*zp--)
/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/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/OpenLDAP-499.27/OpenLDAP/build/
H A Dltmain.sh251 for zp in $tag_compilers_CC; do
253 $zp) tagname="CC"; break;;
303 for zp in $tag_compilers; do
305 $zp) tagname=$z; break;;
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/
H A Dlibtool597 for zp in $tag_compilers_CC; do
599 $zp) tagname="CC"; break;;
649 for zp in $tag_compilers; do
651 $zp) tagname=$z; break;;
/macosx-10.10/OpenPAM-20/openpam/
H A Dltmain.sh254 for zp in $tag_compilers_CC; do
256 $zp) tagname="CC"; break;;
306 for zp in $tag_compilers; do
308 $zp) tagname=$z; break;;
/macosx-10.10/Security-57031.1.35/Security/sec/Security/Regressions/vmdh/
H A Dvmdh-41-example.c29 cczp_t zp = { .u = p }; local
30 cc_size s = ccn_sizeof_n(cczp_n(zp));
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/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) {
H A DSecOTRMath.c44 cczp_power(gp.zp, res, base, exponent);
/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 Dnscomm.h51 extern int dist_and_reload (const zone_t *zp, int what);
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 Drollover.h57 extern int kskstatus (zone_t *zonelist, zone_t *zp);
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 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);
/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Dview.c1367 dns_zone_t **zp = NULL;; local
1380 zp = (zone1 == NULL) ? &zone1 : &zone2;
1381 result = dns_zt_find(view->zonetable, name, 0, NULL, zp);
1388 dns_zone_detach(zp);
/macosx-10.10/bind9-45.101/bind9/
H A Dltmain.sh260 for zp in $tag_compilers_CC; do
262 $zp) tagname="CC"; break;;
312 for zp in $tag_compilers; do
314 $zp) tagname=$z; break;;
/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...]
H A Dcs-dired-ref.tex298 \key{zp�t na p�edchoz� ��dku}{p}
304 \key{zp�t na p�edchoz� podadres��}{M-C-p}
H A Dcs-refcard.tex288 \key{{\bf ulo�it} soubor zp�t na disk}{C-x C-s}
398 \key{{\bf zp�t} na p�edchoz� v�skyt �et�zce}{^}
579 \key{rolov�n� zp�t}{DEL}
H A Dcs-survival.tex228 \key{C-y} vlo� zp�t posledn� vyjmut� text (kombinace kl�ves \kbd{C-w C-y}
235 \key{C-r} hledej �et�zec zp�t
238 \key{M-C-r} hledej regul�rn� v�raz zp�t
305 \key{\^{}} zp�t na p�edchoz� v�skyt
/macosx-10.10/emacs-93/emacs/leim/CXTERM-DIC/
H A DARRAY30.tit1394 zp\040 �K # ---> 1v0^ 1
3472 zp\040 �p # ---> 1v0^ 2
5301 zp// �� # ---> 1v0^0v0v 10
9302 zp.; �F # ---> 1v0^9v0- 0
12219 z.zp �� # ---> 1v9v1v0^ 0
12487 u,zp �s # ---> 7^8v1v0^ 0

Completed in 375 milliseconds

123