Searched refs:alpha (Results 51 - 75 of 561) sorted by relevance

1234567891011>>

/macosx-10.9.5/groff-38/groff/font/devps/generate/
H A Dlgreekmap4 alpha *a
/macosx-10.9.5/pdisk-9/
H A Dutil.c136 enum {development = 0x20, alpha = 0x40, beta = 0x60, final = 0x80, /* or */ release = 0x80}; enumerator in enum:__anon11716
140 case alpha: stage = 'a'; break;
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DCoordinateSystem.py34 # alpha is 22.5 degrees and beta is 15 degrees.
35 alpha = math.pi/8
48 # skewing the x-axis by alpha radians and the y-axis by beta radians.
49 skew = CGAffineTransformMake(1, math.tan(alpha), math.tan(beta), 1, 0, 0)
59 # Set the fill color again but with a partially transparent alpha.
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DCoordinateSystem.py34 # alpha is 22.5 degrees and beta is 15 degrees.
35 alpha = math.pi/8
48 # skewing the x-axis by alpha radians and the y-axis by beta radians.
49 skew = CGAffineTransformMake(1, math.tan(alpha), math.tan(beta), 1, 0, 0)
59 # Set the fill color again but with a partially transparent alpha.
/macosx-10.9.5/tcl-102/tcl_ext/quicktimetcl/quicktimetcl/
H A DQuickTimeTcl.r26 #define RELEASE_LEVEL alpha /* alpha, beta, or final */
/macosx-10.9.5/tcl-102/tcl_ext/tclvfs/tclvfs/examples/
H A DsimpleExamples.tcl35 puts "Mounting ftp://ftp.ucsd.edu/pub/alpha/ ..."
36 vfs::ftp::Mount ftp://ftp.ucsd.edu/pub/alpha/ localmount
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libpng/contrib/pngminus/
H A Dpng2pnm.sh16 # -- gray with alpha-channel
19 # -- color with alpha-channel
20 ./png2pnm -noraw -alpha basn6a08.pgm ../pngsuite/basn6a08.png basn6a08.ppm
21 ./png2pnm -noraw -alpha basn6a16.pgm ../pngsuite/basn6a16.png basn6a16.ppm
36 # -- gray with alpha-channel
39 # -- color with alpha-channel
40 ./png2pnm -noraw -alpha rawn6a08.pgm ../pngsuite/basn6a08.png rawn6a08.ppm
41 ./png2pnm -noraw -alpha rawn6a16.pgm ../pngsuite/basn6a16.png rawn6a16.ppm
H A Dpng2pnm.c54 BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file, BOOL raw, BOOL alpha);
66 BOOL alpha = FALSE; local
82 alpha = TRUE;
87 fprintf (stderr, "Error: can not create alpha-channel file %s\n", argv[argi]);
144 if (png2pnm (fp_rd, fp_wr, fp_al, raw, alpha) == FALSE)
155 /* close alpha file */
156 if (alpha)
180 fprintf (stderr, " -a[lpha] <file>.pgm write PNG alpha channel as pgm-file\n");
188 BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file, BOOL raw, BOOL alpha) argument
258 /* transform transparency maps into full alpha
[all...]
H A Dpnm2png.c52 BOOL pnm2png (FILE *pnm_file, FILE *png_file, FILE *alpha_file, BOOL interlace, BOOL alpha);
67 BOOL alpha = FALSE; local
80 alpha = TRUE;
85 fprintf (stderr, "Error: alpha-channel file %s does not exist\n",
143 if (pnm2png (fp_rd, fp_wr, fp_al, interlace, alpha) == FALSE)
154 /* close alpha file */
155 if (alpha)
178 fprintf (stderr, " -a[lpha] <file>.pgm read PNG alpha channel as pgm-file\n");
186 BOOL pnm2png (FILE *pnm_file, FILE *png_file, FILE *alpha_file, BOOL interlace, BOOL alpha) argument
272 /* read header of PGM file with alpha channe
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DUserAgentSupport.js244 * @param {number} alpha
248 WebInspector.UserAgentSupport.DeviceOrientation = function(alpha, beta, gamma)
250 this.alpha = alpha;
272 return new WebInspector.UserAgentSupport.DeviceOrientation(jsonObject.alpha, jsonObject.beta, jsonObject.gamma);
299 var alpha = isAlphaValid ? parseFloat(alphaString) : -1;
303 return new WebInspector.UserAgentSupport.DeviceOrientation(alpha, beta, gamma);
376 PageAgent.setDeviceOrientationOverride(deviceOrientation.alpha, deviceOrientation.beta, deviceOrientation.gamma);
H A DColor.js409 _rgbaToHSLA: function(rgba, alpha)
412 hsl.push(alpha);
418 * @param {number} alpha
421 _hslaToRGBA: function(hsla, alpha)
424 rgb.push(alpha);
439 this.alpha = set[0][3];
498 this.rgba[3] = this.alpha = this._clamp(this.rgba[3], 0, 1);
499 this.hsla = this._rgbaToHSLA(this.rgba, this.alpha);
503 this.hsla[3] = this.alpha = this._clamp(this.hsla[3], 0, 1);
504 this.rgba = this._hslaToRGBA(this.hsla, this.alpha);
[all...]
/macosx-10.9.5/Chess-310.5/sjeng/
H A Dttable.c114 void QStoreTT(int score, int alpha, int beta, int best) argument
122 if (score <= alpha)
138 void StoreTT(int score, int alpha, int beta, int best, int threat, int depth) argument
149 ( ((DP_TTable[index].Type == UPPER) && (score > alpha))
150 || ((score > alpha) && (score < beta))
156 if (score <= alpha)
187 if (score <= alpha)
246 int ProbeTT(int *score, int alpha, int beta, int *best, int *threat, int *donull, int depth) argument
332 int QProbeTT(int *score, int alpha, int beta, int *best) argument
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebKitSupport/
H A DDefaultTapHighlight.cpp57 void DefaultTapHighlight::draw(const Platform::IntRectRegion& region, int red, int green, int blue, int alpha, bool hideAfterScroll, bool isStartOfSelection) argument
62 m_color = Color(red, green, blue, std::min(128, alpha));
69 if (!m_color.alpha()) {
143 Color darker = Color(m_color.red(), m_color.green(), m_color.blue()); // Get rid of alpha.
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/gpu/mac/
H A DDrawingBufferMac.mm44 AlphaRequirement alpha)
46 , m_alpha(alpha)
/macosx-10.9.5/WebCore-7537.78.1/platform/image-decoders/bmp/
H A DBMPImageReader.h233 // For images without alpha, return alpha of 0xff.
249 unsigned alpha)
251 m_buffer->setRGBA(m_coord.x(), m_coord.y(), red, green, blue, alpha);
263 unsigned alpha)
266 setRGBA(red, green, blue, alpha);
340 // Variables that track whether we've seen pixels with alpha values != 0
246 setRGBA(unsigned red, unsigned green, unsigned blue, unsigned alpha) argument
259 fillRGBA(int endCoord, unsigned red, unsigned green, unsigned blue, unsigned alpha) argument
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGAnimatedColor.cpp95 float animatedAlpha = animatedColor.alpha();
96 m_animationElement->animateAdditiveNumber(percentage, repeatCount, fromColor.alpha(), toColor.alpha(), toAtEndOfDurationColor.alpha(), animatedAlpha);
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DDeviceOrientationClientBlackBerry.cpp72 m_currentOrientation = DeviceOrientationData::create(true, event->alpha, true, event->beta, true, event->gamma);
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/bits/
H A Dctype_inline.h68 *__vec = __maskrune (*__low, upper | lower | alpha | digit | xdigit
74 if (this->is(alpha, *__low)) __m |= alpha;
137 *__vec = __maskrune (*__lo, upper | lower | alpha | digit | xdigit
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DFilterEffect.cpp211 // Iterate over each pixel, checking alpha and adjusting color components if necessary
215 // Clamp each component to alpha, and increment the pixel location
221 // Increment for alpha
374 int alpha = sourceComponent[3]; local
375 if (alpha) {
376 destinationComponent[0] = static_cast<int>(sourceComponent[0]) * 255 / alpha;
377 destinationComponent[1] = static_cast<int>(sourceComponent[1]) * 255 / alpha;
378 destinationComponent[2] = static_cast<int>(sourceComponent[2]) * 255 / alpha;
384 destinationComponent[3] = alpha;
408 int alpha local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DNSScrollerImpDetails.h80 - (void)drawKnobSlotInRect:(NSRect)slotRect highlight:(BOOL)flag alpha:(CGFloat)alpha;
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/test/ObjC/
H A DDOMTestTypedefs.mm155 - (void)setShadow:(float)width height:(float)height blur:(float)blur color:(NSString *)color alpha:(float)alpha
158 IMPL->setShadow(width, height, blur, color, alpha);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/gstreamer/
H A DVideoSinkGStreamer.cpp200 // Cairo's ARGB has pre-multiplied alpha while GStreamer's doesn't.
235 unsigned short alpha = source[3]; local
236 destination[0] = (source[0] * alpha + 128) / 255;
237 destination[1] = (source[1] * alpha + 128) / 255;
238 destination[2] = (source[2] * alpha + 128) / 255;
239 destination[3] = alpha;
241 unsigned short alpha = source[0];
242 destination[0] = alpha;
243 destination[1] = (source[1] * alpha + 128) / 255;
244 destination[2] = (source[2] * alpha
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/canvas/
H A DCanvasRenderingContext2D.idl96 void setAlpha([Default=Undefined] optional float alpha);
111 void setStrokeColor([StrictTypeChecking] DOMString color, optional float alpha);
112 void setStrokeColor(float grayLevel, optional float alpha);
116 void setFillColor([StrictTypeChecking] DOMString color, optional float alpha);
117 void setFillColor(float grayLevel, optional float alpha);
140 void setShadow(float width, float height, float blur, [StrictTypeChecking] optional DOMString color, optional float alpha);
141 void setShadow(float width, float height, float blur, float grayLevel, optional float alpha);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cairo/
H A DPlatformContextCairo.cpp144 static void drawPatternToCairoContext(cairo_t* cr, cairo_pattern_t* pattern, const FloatRect& destRect, float alpha) argument
150 if (alpha < 1) {
152 cairo_paint_with_alpha(cr, alpha);
243 static inline void reduceSourceByAlpha(cairo_t* cr, float alpha) argument
245 if (alpha >= 1)
249 cairo_paint_with_alpha(cr, alpha);
263 setSourceRGBAFromColor(cr, colorWithOverrideAlpha(color.rgb(), color.alpha() / 255.f * globalAlpha));
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/math/
H A Dclassic_polyns.tcl88 # Return the nth degree Laguerre polynomial with parameter alpha
91 # alpha The parameter for the polynomial
96 proc ::math::special::laguerre {alpha n} {
97 if { ! [string is double -strict $alpha] } {
105 set pn [polynomial [list [expr {1.0-$alpha}] -1.0]]
113 set bn [expr {(2.0*$degree+$alpha+1)/($degree+1.0)}]
114 set cn [expr {($degree+$alpha)/($degree+1.0)}]
180 puts "Laguerre (alpha=0):"
184 puts "Laguerre (alpha=1):"

Completed in 204 milliseconds

1234567891011>>