Searched refs:mul (Results 1 - 25 of 71) sorted by relevance

123

/macosx-10.9.5/Libc-997.90.3/gen/FreeBSD/
H A Dgetbsize.c47 long n, max, mul, blocksize; local
67 mul = GB;
72 mul = KB;
77 mul = MB;
81 mul = 1;
87 mul = 1;
94 if ((blocksize = n * mul) < 512) {
/macosx-10.9.5/dtrace-118.1/test/tst/common/offsetof/
H A Dtst.OffsetofArith.d52 mul = offsetof(record_t, x) * offsetof(record_t, c);
61 printf("Multiplication of offsets (x*c) = %d\n", mul);
69 (0 != offsetof(record_t, c)) || (12 != add) || (4 != sub) || (0 != mul)
/macosx-10.9.5/bc-21/bc/Test/
H A Dtimetest9 for file in exp.b ln.b sine.b atan.b jn.b mul.b div.b raise.b sqrt.b
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/lib/
H A Drijndael-alg-ref.c70 * Profiling measurements showed that the mul routine is where a large propertion of
71 * the time is spent. Since the first argument to mul is always one of six
83 * The mod 255 op in mul is really expensive...
99 word8 mul(word8 a, word8 b) { function
158 b[i][j] = mul(2,a[i][j])
159 ^ mul(3,a[(i + 1) % 4][j])
186 b[i][j] = mul(0xe,a[i][j])
187 ^ mul(0xb,a[(i + 1) % 4][j])
188 ^ mul(0xd,a[(i + 2) % 4][j])
189 ^ mul(
[all...]
/macosx-10.9.5/removefile-33/xcodescripts/
H A Dinstall_files.sh54 check_{,u}int{32,64}_{add,sub,mul,div}.3
/macosx-10.9.5/ruby-104/ruby/test/openssl/
H A Dtest_pkey_ec.rb197 p2 = p1.mul(bn1)
199 p2 = p1.mul(bn1, bn2)
201 p2 = p1.mul([bn1, bn2], [p1])
203 p2 = p1.mul([bn1, bn2], [p1], bn2)
/macosx-10.9.5/tcpdump-56/tcpdump/
H A Dchecksum.c149 u_int32_t mul; local
177 mul = (length - checksum_offset)*(c0);
179 x = mul - c0 - c1;
180 y = c1 - mul - 1;
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGGraph.h243 bool mulShouldSpeculateInteger(Node* mul) argument
245 ASSERT(mul->op() == ArithMul);
247 Node* left = mul->child1().node();
248 Node* right = mul->child2().node();
250 return Node::shouldSpeculateIntegerForArithmetic(left, right) && mul->canSpeculateInteger();
753 bool mulImmediateShouldSpeculateInteger(Node* mul, Node* variable, Node* immediate) argument
772 return mul->canSpeculateInteger() && !nodeMayOverflow(mul->arithNodeFlags());
774 return mul->canSpeculateInteger();
/macosx-10.9.5/dtrace-118.1/libdtrace/
H A Ddt_options.c609 dtrace_optval_t mul = 1; local
619 mul *= 1024;
623 mul *= 1024;
627 mul *= 1024;
631 mul *= 1024;
638 *rval = strtoull(arg, &end, 0) * mul;
640 if ((mul > 1 && end != &arg[len - 1]) || (mul == 1 && *end != '\0') ||
664 dtrace_optval_t mul = 1, val = 0; local
668 hrtime_t mul; member in struct:__anon8332
[all...]
/macosx-10.9.5/CPANInternal-140/Crypt-OpenSSL-Bignum/
H A Dtest.pl95 ok( 575 == $bn23->mul( $bn25, $ctx )->get_word() );
96 ok( 575 == $bn23->mul( $bn25, $ctx, $bn )->get_word() );
H A DBignum.pm63 $fac->mul( Crypt::OpenSSL::Bignum->new_from_word( $i ), $ctx, $fac );
185 =item mul
/macosx-10.9.5/CPANInternal-140/Crypt-OpenSSL-Bignum-0.04/
H A Dtest.pl95 ok( 575 == $bn23->mul( $bn25, $ctx )->get_word() );
96 ok( 575 == $bn23->mul( $bn25, $ctx, $bn )->get_word() );
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSPosix/
H A DNetMonitor.c818 int h, m, s, mul, div, TotPkt; local
867 mul = 60;
872 mul = 60000;
892 mprintf("Modern Query Packets: %7d (avg%5d/min)\n", NumPktQ, NumPktQ * mul / div);
893 mprintf("Legacy Query Packets: %7d (avg%5d/min)\n", NumPktL, NumPktL * mul / div);
894 mprintf("Multicast Response Packets: %7d (avg%5d/min)\n", NumPktR, NumPktR * mul / div);
895 mprintf("Total Multicast Packets: %7d (avg%5d/min)\n", TotPkt, TotPkt * mul / div);
897 mprintf("Total New Service Probes: %7d (avg%5d/min)\n", NumProbes, NumProbes * mul / div);
898 mprintf("Total Goodbye Announcements: %7d (avg%5d/min)\n", NumGoodbyes, NumGoodbyes * mul / div);
899 mprintf("Total Query Questions: %7d (avg%5d/min)\n", NumQuestions, NumQuestions * mul / di
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/open_ssl/bn/
H A Dbn_lcl.h275 #define mul(r,a,w,c) { \ macro
303 #define mul(r,a,w,c) { \ macro
383 #define mul(r,a,bl,bh,c) { \ macro
H A Dbn_asm.c123 mul(rp[0],ap[0],w,c1);
124 mul(rp[1],ap[1],w,c1);
125 mul(rp[2],ap[2],w,c1);
126 mul(rp[3],ap[3],w,c1);
131 mul(rp[0],ap[0],w,c1); if (--num == 0) return c1;
132 mul(rp[1],ap[1],w,c1); if (--num == 0) return c1;
133 mul(rp[2],ap[2],w,c1);
200 mul(rp[0],ap[0],bl,bh,carry);
202 mul(rp[1],ap[1],bl,bh,carry);
204 mul(r
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/calc/
H A Dcalc-stat.el171 (math-reduce-many-vecs 'calcFunc-mul 'calcFunc-vprod vecs 1))
313 (let* ((sqrwts (calcFunc-map '(var mul var-mul) wts wts))
341 (let* ((sqrwts (calcFunc-map '(var mul var-mul) wts wts))
366 (math-mul len (1- len)))))))))))
397 (let ((x (calcFunc-reduce '(var mul math-mul) flat)))
416 (setq mean (math-mul-float (math-add-float a b) '(float 5 -1))
417 b (math-sqrt-float (math-mul
[all...]
/macosx-10.9.5/swig-10/Lib/python/
H A Dpyopers.swg118 %pybinopermaybecall(mul);
/macosx-10.9.5/ruby-104/ruby/ext/date/
H A Ddate_strftime.c25 #define mul(x,y) (rb_funcall((x), '*', 1, (y))) macro
293 subsec = mul(subsec, INT2FIX(1000000000));
300 subsec = mul(subsec, INT2FIX(n));
/macosx-10.9.5/vim-53/runtime/keymap/
H A Darabic_utf-8.vim64 O <char-0x00d7> " (215) - ASCII suppl -- mul
/macosx-10.9.5/dtrace-118.1/cmd/
H A Ddtrace_1.c1477 dtrace_optval_t j = 0, mul = 10; local
1491 for (; (INT64_C(1) << mul) <= nsize; j++, mul += 10)
1494 if (!(nsize & ((INT64_C(1) << (mul - 10)) - 1))) {
1496 (long long)nsize >> (mul - 10), " kmgtpe"[j]);
1587 dtrace_optval_t j = 0, mul = 10; local
1601 for (; (INT64_C(1) << mul) <= nsize; j++, mul += 10)
1604 if (!(nsize & ((INT64_C(1) << (mul - 10)) - 1))) {
1606 (long long)nsize >> (mul
[all...]
/macosx-10.9.5/tcl-102/tk/tk/library/
H A Dmkpsenc.tcl1182 dup mul exch dup mul add sqrt
1187 exch div mul
1216 5 index div dup 0 lt {1 sub} if cvi 5 index mul 4 1 roll
1217 6 index div dup 0 lt {1 sub} if cvi 6 index mul 3 2 roll
1305 lineLength xoffset mul
1306 strings length 1 sub spacing mul height add yoffset mul translate
1312 justify lineLength mul baseline neg translate
1320 justify neg mul
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/library/
H A Dmkpsenc.tcl1182 dup mul exch dup mul add sqrt
1187 exch div mul
1216 5 index div dup 0 lt {1 sub} if cvi 5 index mul 4 1 roll
1217 6 index div dup 0 lt {1 sub} if cvi 6 index mul 3 2 roll
1305 lineLength xoffset mul
1306 strings length 1 sub spacing mul height add yoffset mul translate
1312 justify lineLength mul baseline neg translate
1320 justify neg mul
[all...]
/macosx-10.9.5/CPANInternal-140/Crypt-Rijndael/
H A D_rijndael.c281 mul(UINT8 a, UINT8 b) function
295 c[j][i] = mul(0xe, (a[j] >> i*8) & 0xff)
296 ^ mul(0xb, (a[j] >> ((i+1)%4)*8) & 0xff)
297 ^ mul(0xd, (a[j] >> ((i+2)%4)*8) & 0xff)
298 ^ mul(0x9, (a[j] >> ((i+3)%4)*8) & 0xff);
/macosx-10.9.5/CPANInternal-140/Crypt-Rijndael-1.10/
H A D_rijndael.c281 mul(UINT8 a, UINT8 b) function
295 c[j][i] = mul(0xe, (a[j] >> i*8) & 0xff)
296 ^ mul(0xb, (a[j] >> ((i+1)%4)*8) & 0xff)
297 ^ mul(0xd, (a[j] >> ((i+2)%4)*8) & 0xff)
298 ^ mul(0x9, (a[j] >> ((i+3)%4)*8) & 0xff);
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/math/
H A Dbignum.tcl335 proc ::math::bignum::mul {a b} {
390 set mul [expr {wide($t0)*$t1+$t2+$car}]
391 set car [expr {$mul >> $::math::bignum::atombits}]
392 set mul [expr {$mul & $::math::bignum::atommask}]
393 lset r [expr {$i+$j-2}] $mul
719 set r [::math::bignum::mul $r $b]
722 set b [::math::bignum::mul $b $b]
724 set r [::math::bignum::mul $r $b]
743 set r [::math::bignum::mod [::math::bignum::mul
[all...]

Completed in 193 milliseconds

123