Searched refs:mag (Results 1 - 24 of 24) sorted by relevance

/macosx-10.9.5/groff-38/groff/font/devdvi/generate/
H A DCompileFonts10 virmf "&cm \\mode=$mode; mag=$s/10; batchmode; input $f" >/dev/null
11 mag=`expr $s \* $dpi / 10`
12 gftopk $f.${mag}gf >/dev/null
13 rm $f.${mag}gf
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/GlobalObject/
H A D15.1.2.5-2.js131 for ( var mag = 1; Math.pow(16,mag) <= n ; mag++ ) {
135 for ( index = 0, mag -= 1; mag > 0; index++, mag-- ) {
136 hex[index] = Math.floor( n / Math.pow(16,mag) );
137 n -= Math.pow(16,mag) * Math.floor( n/Math.pow(16,mag) );
H A D15.1.2.5-3.js154 for ( var mag = 1; Math.pow(16,mag) <= n ; mag++ ) {
158 for ( index = 0, mag -= 1; mag > 0; index++, mag-- ) {
159 hex[index] = Math.floor( n / Math.pow(16,mag) );
160 n -= Math.pow(16,mag) * Math.floor( n/Math.pow(16,mag) );
H A D15.1.2.4.js153 for ( var mag = 1; Math.pow(16,mag) <= n ; mag++ ) {
157 for ( index = 0, mag -= 1; mag > 0; index++, mag-- ) {
158 hex[index] = Math.floor( n / Math.pow(16,mag) );
159 n -= Math.pow(16,mag) * Math.floor( n/Math.pow(16,mag) );
H A D15.1.2.5-1.js153 for ( var mag = 1; Math.pow(16,mag) <= n ; mag++ ) {
157 for ( index = 0, mag -= 1; mag > 0; index++, mag-- ) {
158 hex[index] = Math.floor( n / Math.pow(16,mag) );
159 n -= Math.pow(16,mag) * Math.floor( n/Math.pow(16,mag) );
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/FieldGraph/
H A DCGraphModel.py21 mag = self.fieldValue(0)
23 maxMag = max(maxMag, mag)
24 path.moveToPoint_(polarToRect((mag, 0)))
27 mag = self.fieldValue(r)
28 maxMag = max(maxMag, mag)
29 path.lineToPoint_(polarToRect((mag, r)))
60 mag = hypot(phix, phiy)
62 return mag
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/FieldGraph/
H A DCGraphModel.py21 mag = self.fieldValue(0)
23 maxMag = max(maxMag, mag)
24 path.moveToPoint_(polarToRect((mag, 0)))
27 mag = self.fieldValue(r)
28 maxMag = max(maxMag, mag)
29 path.lineToPoint_(polarToRect((mag, r)))
60 mag = hypot(phix, phiy)
62 return mag
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/support/devel/sak/util/
H A Dcolor.tcl14 foreach n {cya yel whi mag red rst} {
36 sda_bgmagenta mag
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/support/devel/sak/util/
H A Dcolor.tcl14 foreach n {cya yel whi mag red rst} {
36 sda_bgmagenta mag
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/MyViewer/
H A DWinCtrl.rb39 @mag = nil # float mag;
45 @mag = 1.0
67 [ File.basename(@filename.to_s), sz.width.to_i, sz.height.to_i, @mag * 100.0 ]
78 @mag *= 0.5
/macosx-10.9.5/WebCore-7537.78.1/platform/audio/
H A DFFTFrame.cpp130 double mag = pow(10.0, 0.05 * magdb); local
169 std::complex<double> c = std::polar(mag, phaseAccum);
192 double mag = abs(c); local
204 aveSum += mag * deltaPhase;
205 weightSum += mag;
239 double mag = abs(c); local
244 std::complex<double> c2 = std::polar(mag, phase);
263 double mag = sqrt(realP[i] * realP[i] + imagP[i] * imagP[i]); local
266 LOG(WebAudio, "[%d] (%f %f)\n", i, mag, phase);
/macosx-10.9.5/ruby-104/ruby/benchmark/
H A Dbm_so_nbody.rb31 mag = dt / (distance * distance * distance)
32 b_mass_mag, b2_mass_mag = @mass * mag, b2.mass * mag
/macosx-10.9.5/CPANInternal-140/DateTime-Locale/lib/DateTime/Locale/
H A Dit_CH.pm237 mag
282 mag
H A Dit_IT.pm169 mag
214 mag
H A Dit.pm92 my $month_format_abbreviated = [ "gen", "feb", "mar", "apr", "mag", "giu", "lug", "ago", "set", "ott", "nov", "dic" ];
450 mag
495 mag
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDSystem/
H A DIOHIPointing.cpp693 IOFixed64 mag; local
698 mag.fromIntFloor(llsqrt((deltaX * deltaX + deltaY * deltaY).as64()));
700 IOFixed64 mult = PACurvesGetAccelerationMultiplier(mag, *_paraAccelParams, *_paraAccelSecondaryParams);
2151 SInt32 mag;
2161 // mag is (x^2 + y^2)^0.5 and converted to fixed point
2162 mag = (lsqrt(*axis1p * *axis1p + *axis2p * *axis2p)) << 16;
2163 if (mag == 0)
2169 mag > segment->devUnits;
2173 segment->intercept + IOFixedMultiply( mag, segment->slope ),
2174 mag );
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/libtommath/mtest/
H A Dmpi.c1356 int mag; local
1376 if((mag = s_mp_cmp(a, m)) > 0) {
1385 } else if(mag < 0) {
1817 int mag; local
1819 if((mag = s_mp_cmp(a, b)) == MP_EQ)
1823 return mag;
1825 return -mag;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DAPInt.cpp1400 struct ms mag;
1427 mag.m = q2 + 1;
1428 if (d.isNegative()) mag.m = -mag.m; // resulting magic number
1429 mag.s = p - d.getBitWidth(); // resulting shift
1430 return mag;
/macosx-10.9.5/emacs-92/emacs/lisp/term/
H A Dtty-colors.el866 (let ((mag (sqrt (* 3 (+ (* r r) (* g g) (* b b))))))
867 (if (< mag 1) 0 (acos (/ (+ r g b) mag)))))
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dmf.vim110 syn keyword mfMacro loggingall lowres lowres_fix mag magstep makebox makegrid
H A Dinitex.vim242 \ '\\\%(day\|mag\|maxdeadcycles\|month\|time\|year\)\>'
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Darchive.c372 _bfd_generic_read_ar_hdr_mag (bfd *abfd, const char *mag)
390 && (mag == NULL
391 || strncmp (hdr.ar_fmag, mag, 2) != 0))
369 _bfd_generic_read_ar_hdr_mag(bfd *abfd, const char *mag) argument
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/support/devel/sak/test/
H A Drun.tcl137 =| "~~ [mag]ERR ${msg}[rst]"
139 puts $logext [mag]$msg[rst]
156 puts $logext "#Errors [mag][format %6d $err][rst]"
534 =| "~~ [mag]$st[rst] T $t P $p S $s F $f"
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/support/devel/sak/test/
H A Drun.tcl133 =| "~~ [mag]ERR ${msg}[rst]"
135 puts $logext [mag]$msg[rst]
152 puts $logext "#Errors [mag][format %6d $err][rst]"
465 =| "~~ [mag]$st[rst] T $t P $p S $s F $f"

Completed in 369 milliseconds