Searched refs:p2 (Results 126 - 150 of 637) sorted by relevance

1234567891011>>

/macosx-10.10/OpenSSL098-52/src/crypto/perlasm/
H A Dx86unix.pl232 local($p1,$p2,$optimize)=@_;
233 if ($optimize && $p1=~/^mm[0-7]$/ && $p2=~/^mm[0-7]$/)
235 { push(@out,"\tpshufw\t\$0xe4,%$p2,%$p1\n"); }
257 local($name,$p1,$p2)=@_;
264 if ((defined($special{$name})) && defined($regs{$p1}) && ($p2 == 1))
272 $p2=&conv($p2);
274 &main'comment("$name $p2 $p1");
279 $t=&conv($p2).",";
302 $p2
[all...]
H A Dcbc.pl28 local($name,$enc_func,$dec_func,$swap,$iv_off,$enc_off,$p1,$p2,$p3)=@_;
34 # p1,p2,p3 are the offsets for parameters to be passed to the
51 $data_off+=4 if ($p2 > 0);
82 if ($p2 > 0)
84 &comment("get and push parameter $p2");
85 if ($enc_off != $p2)
86 { &mov("eax", &wparam($p2)); &push("eax"); }
314 $total+=4 if ($p2 > 0);
/macosx-10.10/ruby-106/ruby/bootstraptest/
H A Dtest_method.rb411 def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
413 [m1, m2, o1, o2, r, p1, p2, b.class, x, y]
418 def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
420 [m1, m2, o1, o2, r, p1, p2, b.class, x, y]
425 def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
427 [m1, m2, o1, o2, r, p1, p2, b.class, x, y]
432 def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
434 [m1, m2, o1, o2, r, p1, p2, b.class, x, y]
439 def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
441 [m1, m2, o1, o2, r, p1, p2,
[all...]
/macosx-10.10/OpenSSL098-52/src/fips/rsa/
H A Dfips_rsagtest.c240 else if (!strcmp(keyword, "p2"))
334 BIGNUM *p1 = NULL, *p2 = NULL; local
336 p2 = BN_new();
337 if (!p1 || !p2)
340 if (!RSA_X931_derive_ex(rsa, p1, p2, NULL, NULL, Xp1, Xp2, Xp,
345 do_bn_print_name(out, "p2", p2);
353 if (p2)
354 BN_free(p2);
/macosx-10.10/OpenSSL098-52/src/test/
H A Dfips_rsagtest.c240 else if (!strcmp(keyword, "p2"))
334 BIGNUM *p1 = NULL, *p2 = NULL; local
336 p2 = BN_new();
337 if (!p1 || !p2)
340 if (!RSA_X931_derive_ex(rsa, p1, p2, NULL, NULL, Xp1, Xp2, Xp,
345 do_bn_print_name(out, "p2", p2);
353 if (p2)
354 BN_free(p2);
/macosx-10.10/dtrace-147/tools/ctfconvert/
H A Dst_bugs.c61 tdesc_t *p1, *p2; local
89 p2 = xcalloc(sizeof (*p2));
90 p2->t_type = POINTER;
91 p2->t_id = td->td_nextid++;
92 p2->t_tdesc = tgt;
97 p1->t_tdesc = p2;
/macosx-10.10/OpenSSL098-52/src/fips/
H A Dfips.c176 const unsigned char *p2 = FIPS_text_end(); local
185 if (p1<=p3 && p2>=p3)
186 p3=p1, p4=p2>p4?p2:p4, p1=NULL, p2=NULL;
188 p3=p3, p4=p2>p4?p2:p4, p1=NULL, p2=NULL;
191 HMAC_Update(&c,p1,(size_t)p2-(size_t)p1);
/macosx-10.10/apr-32/apr/apr/test/
H A Dtestglobalmutex.c78 apr_proc_t p1, p2, p3, p4; local
89 launch_child(tc, mech, &p2, p);
94 x += wait_child(tc, &p2);
/macosx-10.10/groff-38/groff/src/roff/groff/
H A Dpipeline.c118 const char *p1, *p2; local
121 if ((p2 = strrchr(p1, '\\'))
122 || (p2 = strrchr(p1, '/'))
123 || (p2 = strrchr(p1, ':')))
124 p1 = p2 + 1;
125 if ((p2 = strrchr(p1, '.'))
126 && ((strcasecmp(p2, ".exe") == 0)
127 || (strcasecmp(p2, ".com") == 0)))
130 p2 = p1 + strlen(p1);
132 base = malloc((size_t)(p2
[all...]
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-c/detail/
H A Dfs_test.c380 atf_fs_path_t p, p2; local
387 RE(atf_fs_path_to_absolute(&p, &p2));
388 printf("Absolute path: %s\n", atf_fs_path_cstring(&p2));
390 ATF_REQUIRE(atf_fs_path_is_absolute(&p2));
391 RE(atf_fs_stat_init(&st2, &p2));
400 atf_fs_path_fini(&p2);
414 atf_fs_path_t p1, p2; local
418 RE(atf_fs_path_init_fmt(&p2, "foo"));
419 ATF_REQUIRE(atf_equal_fs_path_fs_path(&p1, &p2));
420 atf_fs_path_fini(&p2);
823 atf_fs_path_t p1, p2; local
946 atf_fs_path_t p1, p2; local
[all...]
/macosx-10.10/WTF-7600.1.24/wtf/
H A DFunctional.h134 R operator()(P1 p1, P2 p2) argument
136 return m_function(p1, p2);
154 R operator()(P1 p1, P2 p2, P3 p3) argument
156 return m_function(p1, p2, p3);
174 R operator()(P1 p1, P2 p2, P3 p3, P4 p4) argument
176 return m_function(p1, p2, p3, p4);
194 R operator()(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) argument
196 return m_function(p1, p2, p3, p4, p5);
272 R operator()(C* c, P1 p1, P2 p2) argument
274 return (c->*m_function)(p1, p2);
277 operator ()(const WeakPtr<C>& c, P1 p1, P2 p2) argument
300 operator ()(C* c, P1 p1, P2 p2, P3 p3) argument
305 operator ()(const WeakPtr<C>& c, P1 p1, P2 p2, P3 p3) argument
328 operator ()(C* c, P1 p1, P2 p2, P3 p3, P4 p4) argument
333 operator ()(const WeakPtr<C>& c, P1 p1, P2 p2, P3 p3, P4 p4) argument
356 operator ()(C* c, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) argument
361 operator ()(const WeakPtr<C>& c, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) argument
507 BoundFunctionImpl(FunctionWrapper functionWrapper, const P1& p1, const P2& p2) argument
534 BoundFunctionImpl(FunctionWrapper functionWrapper, const P1& p1, const P2& p2, const P3& p3) argument
563 BoundFunctionImpl(FunctionWrapper functionWrapper, const P1& p1, const P2& p2, const P3& p3, const P4& p4) argument
594 BoundFunctionImpl(FunctionWrapper functionWrapper, const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5) argument
627 BoundFunctionImpl(FunctionWrapper functionWrapper, const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5, const P6& p6) argument
[all...]
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOHIDSecurePromptClient.cpp287 uintptr_t p2 = down; local
292 (void*)p1, (void*)p2);
303 IOHIDSecurePromptClient::postKeyGated(void * p1, void * p2, void *, void *) argument
306 bool down = (uintptr_t)p2;
526 IOHIDSecurePromptClient::setGatheringMethod(void * p1, void * p2 __unused, void * p3 __unused, void * p4 __unused, void * p5 __unused, void * p6 __unused)
583 IOHIDSecurePromptClient::setLayoutMethod(void * p1, void * p2, void * p3, void * p4, void * p5 __unused, void * p6 __unused)
589 p1, p2, p3, p4);
596 IOHIDSecurePromptClient::setLayoutGated(void * p1, void * p2 __unused, void * p3 __unused, void * p4 __unused)
634 IOHIDSecurePromptClient::confirmKeyMethod(void * p1, void * p2, void * p3, void * p4, void * p5 __unused, void * p6 __unused)
640 p1, p2, p
[all...]
/macosx-10.10/Libc-1044.1.2/locale/FreeBSD/
H A Dcollate.c394 struct __collate_st_chain_pri *p2; local
399 p2 = chainsearch(t, &l, loc);
401 if (p2 && p2->pri[0] >= 0) {
403 *prim = p2->pri[0];
404 *sec = p2->pri[1];
445 struct __collate_st_chain_pri *p2; local
450 p2 = chainsearch(t, &l, loc);
451 if (p2) {
452 p = p2
961 struct __collate_st_subst *p2 = __collate_substitute_table[z]; local
974 struct __collate_st_chain_pri *p2 = __collate_chain_pri_table; local
984 struct __collate_st_char_pri *p2 = __collate_char_pri_table; local
993 struct __collate_st_large_char_pri *p2 = __collate_large_char_pri_table; local
[all...]
/macosx-10.10/lukemftp-14/tnftp/src/
H A Dutil.c1116 const char *p, *p2, *q; local
1138 p2 = connected ? remotecwd : "";
1145 q = p2;
1146 while (*p2) /* calc # of /'s */
1147 if (*p2++ == '/')
1162 while ((p2 > q) && (*p2 != '/'))
1163 p2--; /* back up */
1164 if (skip && p2 > q)
1165 p2
[all...]
/macosx-10.10/IOKitUser-1050.1.21/
H A DIOKitLibPrivate.h50 uintptr_t p2,
/macosx-10.10/apr-32/apr/apr/strings/
H A Dapr_cpystrn.c286 char *p1, *p2; local
294 p2 = s2;
295 while (*++p1 == *++p2) {
301 if (*p2 == '\0') {
/macosx-10.10/dcerpc-61/dcerpc/idl_compiler/
H A Dfiles.h166 char *p2,
/macosx-10.10/screen-22/screen/etc/
H A Detcscreenrc49 terminfo facit al=\E[L\E[K:AL@:dl@:DL@:cs=\E[%i%p1%d;%p2%dr:ic@
53 terminfo sun 'up=^K:AL=\E[%p1%dL:DL=\E[%p1%dM:UP=\E[%p1%dA:DO=\E[%p1%dB:LE=\E[%p1%dD:RI=\E[%p1%dC:IC=\E[%p1%d@:WS=\E[8;%p1%d;%p2%dt$<1000>'
59 terminfo xterm|fptwist hs@:cs=\E[%i%p1%d;%p2%dr:im=\E[4h:ei=\E[4l
/macosx-10.10/tcl-105/tcl_ext/ffidl/ffidl/tests/
H A Dqsort.test29 proc cmp.int {p1 p2} {
31 binary scan [::ffidl::peek $p2 [::ffidl::sizeof int]] [::ffidl::format int] v2
32 #append msg "cmp.int $p1 $p2 -> $v1 $v2 -> [expr {$v1-$v2}]" "\n"
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/examples/diagrams/
H A Ddraw_circle.tcl69 set p2 [list POINT [expr {$x-$rad}] [expr {$y-$rad}]]
70 .c create oval [concat [PixelPoint $p1] [PixelPoint $p2]] -outline black
213 set p2 [lindex $obj2 1]
214 set lambda [expr {[inprod [diffvector $p2 $p1] $n1]/ \
/macosx-10.10/xar-254/xar/test/
H A Dutil.py92 assert os.path.exists(entry2), "\"{f1}\" exists in \"{p1}\" but not \"{p2}\"".format(f1=file1, p1=path1, p2=path2)
130 assert file2 in seen, "\"{f2}\" exists in \"{p2}\" but not \"{p1}\"".format(f2=file2, p1=path1, p2=path2)
/macosx-10.10/xnu-2782.1.97/pexpert/pexpert/
H A Dprotos.h81 extern int StartIOKit( void * p1, void * p2, void * p3, void * p4);
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DOperations.h124 JSValue p2; local
129 wasNotString2 = v2.getPrimitiveNumber(callFrame, n2, p2);
131 wasNotString2 = v2.getPrimitiveNumber(callFrame, n2, p2);
137 return codePointCompareLessThan(asString(p1)->value(callFrame), asString(p2)->value(callFrame));
158 JSValue p2; local
163 wasNotString2 = v2.getPrimitiveNumber(callFrame, n2, p2);
165 wasNotString2 = v2.getPrimitiveNumber(callFrame, n2, p2);
171 return !codePointCompareLessThan(asString(p2)->value(callFrame), asString(p1)->value(callFrame));
/macosx-10.10/Security-57031.1.35/securityd/src/
H A Dprocess.h130 inline bool operator == (const Process &p1, const Process &p2) argument
132 return &p1 == &p2;
/macosx-10.10/OpenSSL098-52/src/crypto/bn/
H A Dbn_exp2.c119 const BIGNUM *a2, const BIGNUM *p2, const BIGNUM *m,
133 bn_check_top(p2);
142 bits2=BN_num_bits(p2);
270 if (BN_is_bit_set(p2, b))
274 while (!BN_is_bit_set(p2, i))
281 if (BN_is_bit_set(p2, i))
118 BN_mod_exp2_mont(BIGNUM *rr, const BIGNUM *a1, const BIGNUM *p1, const BIGNUM *a2, const BIGNUM *p2, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *in_mont) argument

Completed in 225 milliseconds

1234567891011>>