HomeSort by relevance Sort by last modified time
    Searched defs:Alpha (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/swiftshader/third_party/LLVM/lib/Target/Alpha/
Alpha.h 1 //===-- Alpha.h - Top-level interface for Alpha representation --*- C++ -*-===//
11 // Alpha back-end.
22 namespace Alpha {
AlphaRelocations.h 1 //===- AlphaRelocations.h - Alpha Code Relocations --------------*- C++ -*-===//
10 // This file defines the Alpha target-specific relocation types.
20 namespace Alpha {
  /development/vndk/tools/vtable-dumper/tests/
test1.cpp 1 class Alpha {
4 virtual ~Alpha() {};
9 class Beta : public Alpha {
27 void Alpha::getData(int *src, int *dst, int data) {}
  /external/google-tv-pairing-protocol/cpp/src/polo/pairing/
polochallengeresponse.h 27 typedef std::vector<uint8_t> Alpha, Gamma, Nonce;
40 // Computes the alpha value based on the given nonce.
41 virtual Alpha* GetAlpha(const Nonce& nonce) const;
  /external/skia/src/gpu/effects/
GrSRGBEffect.h 20 enum class Alpha {
28 static std::unique_ptr<GrFragmentProcessor> Make(Mode mode, Alpha alpha) {
29 return std::unique_ptr<GrFragmentProcessor>(new GrSRGBEffect(mode, alpha));
35 Alpha alpha() const { return fAlpha; } function in class:GrSRGBEffect
40 GrSRGBEffect(Mode mode, Alpha);
49 Alpha fAlpha;
  /external/skqp/src/gpu/effects/
GrSRGBEffect.h 20 enum class Alpha {
28 static std::unique_ptr<GrFragmentProcessor> Make(Mode mode, Alpha alpha) {
29 return std::unique_ptr<GrFragmentProcessor>(new GrSRGBEffect(mode, alpha));
35 Alpha alpha() const { return fAlpha; } function in class:GrSRGBEffect
40 GrSRGBEffect(Mode mode, Alpha);
49 Alpha fAlpha;
  /external/skia/tests/
SkPEGTest.cpp 17 struct Alpha {
109 const auto match = Alpha::Match(gTests[i].fInput);
188 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match("")));
189 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match("\t")));
190 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match(" ")));
191 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("a")));
192 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("3")));
193 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("a ")));
194 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("3 ")));
195 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match(" a ")))
    [all...]
  /external/skqp/tests/
SkPEGTest.cpp 17 struct Alpha {
109 const auto match = Alpha::Match(gTests[i].fInput);
188 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match("")));
189 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match("\t")));
190 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match(" ")));
191 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("a")));
192 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("3")));
193 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("a ")));
194 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("3 ")));
195 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match(" a ")))
    [all...]
  /external/aac/libSBRdec/src/
psdec.cpp 332 FIXP_DBL Alpha, Beta;
370 Alpha =
373 /* Alpha and Beta are now both scaled by 2 shifts right */
382 inline_fixp_cos_sin(Beta + Alpha, Beta - Alpha, 2, trigData);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program_pair.h 52 /* For rgb and alpha instructions when arg[n].Source = RC_PAIR_PRESUB_SRC, then
54 * {RGB,Alpha}.Src[RC_PAIR_PRESUB_SRC].File will be set to RC_FILE_PRESUB.
87 struct rc_pair_sub_instruction Alpha;
103 unsigned int rgb, unsigned int alpha,
  /external/skia/include/private/
SkEncodedInfo.h 18 enum Alpha {
32 * This sometimes results in redundant Alpha and Color information.
70 static SkEncodedInfo Make(Color color, Alpha alpha, int bitsPerComponent) {
79 SkASSERT(kOpaque_Alpha == alpha);
82 SkASSERT(kOpaque_Alpha != alpha);
90 SkASSERT(kOpaque_Alpha == alpha);
96 SkASSERT(kOpaque_Alpha == alpha);
100 SkASSERT(kOpaque_Alpha != alpha);
105 SkASSERT(kOpaque_Alpha != alpha);
123 auto alpha = kOpaque_Alpha == fAlpha ? kOpaque_SkAlphaType local
129 Alpha alpha() const { return fAlpha; } function in struct:SkEncodedInfo
    [all...]
  /external/skqp/include/private/
SkEncodedInfo.h 18 enum Alpha {
32 * This sometimes results in redundant Alpha and Color information.
70 static SkEncodedInfo Make(Color color, Alpha alpha, int bitsPerComponent) {
79 SkASSERT(kOpaque_Alpha == alpha);
82 SkASSERT(kOpaque_Alpha != alpha);
90 SkASSERT(kOpaque_Alpha == alpha);
96 SkASSERT(kOpaque_Alpha == alpha);
100 SkASSERT(kOpaque_Alpha != alpha);
105 SkASSERT(kOpaque_Alpha != alpha);
123 auto alpha = kOpaque_Alpha == fAlpha ? kOpaque_SkAlphaType local
129 Alpha alpha() const { return fAlpha; } function in struct:SkEncodedInfo
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
Mixer.h 36 LVM_FLOAT Alpha; /* Time constant. Set by calling application. \
72 LVM_INT32 Alpha; /* Time constant. Set by calling application. Can be changed at any time */
  /frameworks/av/media/libeffects/lvm/lib/Reverb/src/
LVREV_ApplyNewSettings.c 292 LVM_INT32 Alpha = (LVM_INT32)LVM_Mixer_TimeConstant(LVREV_ALLPASS_TC, LVM_GetFsFromTable(pPrivate->NewParams.SampleRate), 1);
299 pPrivate->Mixer_SGFeedback[i].Alpha = Alpha;
300 pPrivate->Mixer_SGFeedforward[i].Alpha = Alpha;
503 LVM_INT32 Alpha;
505 Alpha = (LVM_INT32)LVM_Mixer_TimeConstant(LVREV_FEEDBACKMIXER_TC, LVM_GetFsFromTable(pPrivate->NewParams.SampleRate), NumChannels);
506 pPrivate->FeedbackMixer[0].Alpha=Alpha;
507 pPrivate->FeedbackMixer[1].Alpha=Alpha
    [all...]
  /prebuilts/go/darwin-x86/src/image/color/
color.go 8 // Color can convert itself to alpha-premultiplied 16-bits per channel RGBA.
11 // RGBA returns the alpha-premultiplied red, green, blue and alpha values
16 // An alpha-premultiplied color component c has been scaled by alpha (a),
21 // RGBA represents a traditional 32-bit alpha-premultiplied color, having 8
22 // bits for each of red, green, blue and alpha.
24 // An alpha-premultiplied color component C has been scaled by alpha (A), so
42 // RGBA64 represents a 64-bit alpha-premultiplied color, having 16 bits fo
    [all...]
  /prebuilts/go/linux-x86/src/image/color/
color.go 8 // Color can convert itself to alpha-premultiplied 16-bits per channel RGBA.
11 // RGBA returns the alpha-premultiplied red, green, blue and alpha values
16 // An alpha-premultiplied color component c has been scaled by alpha (a),
21 // RGBA represents a traditional 32-bit alpha-premultiplied color, having 8
22 // bits for each of red, green, blue and alpha.
24 // An alpha-premultiplied color component C has been scaled by alpha (A), so
42 // RGBA64 represents a 64-bit alpha-premultiplied color, having 16 bits fo
    [all...]
  /frameworks/base/libs/hwui/
Glop.h 52 // Mesh has alpha embedded (to export to varying)
53 Alpha = 1 << 2,
  /prebuilts/go/darwin-x86/src/image/
image.go 481 // Alpha is an in-memory image whose At method returns color.Alpha values.
482 type Alpha struct {
483 // Pix holds the image's pixels, as alpha values. The pixel at
492 func (p *Alpha) ColorModel() color.Model { return color.AlphaModel }
494 func (p *Alpha) Bounds() Rectangle { return p.Rect }
496 func (p *Alpha) At(x, y int) color.Color {
500 func (p *Alpha) AlphaAt(x, y int) color.Alpha {
502 return color.Alpha{}
    [all...]
  /prebuilts/go/linux-x86/src/image/
image.go 481 // Alpha is an in-memory image whose At method returns color.Alpha values.
482 type Alpha struct {
483 // Pix holds the image's pixels, as alpha values. The pixel at
492 func (p *Alpha) ColorModel() color.Model { return color.AlphaModel }
494 func (p *Alpha) Bounds() Rectangle { return p.Rect }
496 func (p *Alpha) At(x, y int) color.Color {
500 func (p *Alpha) AlphaAt(x, y int) color.Alpha {
502 return color.Alpha{}
    [all...]
  /hardware/intel/img/psb_video/src/
psb_surface_ext.h 71 unsigned char Alpha;
  /external/clang/test/Misc/
diag-template-diffing.cpp 115 class Alpha{};
123 void set4(Alpha<int, int>);
128 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'Beta<void, void>' to 'Alpha<int, int>' for 1st argument
130 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'Beta<void, void>' to 'Alpha<int, int>' for 1st argument
132 // CHECK-ELIDE-TREE: candidate function not viable: no known conversion from 'Beta<void, void>' to 'Alpha<int, int>' for 1st argument
134 // CHECK-NOELIDE-TREE: candidate function not viable: no known conversion from 'Beta<void, void>' to 'Alpha<int, int>' for 1st argument
136 void set5(Alpha<Beta<Gamma<Delta<int, int>, int>, int>, int>);
138 set5(Alpha<Beta<Gamma<void, void>, double>, double>());
141 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'Alpha<Beta<Gamma<void, void>, double>, double>' to 'Alpha<Beta<Gamma<Delta<int, int>, int>, int>, int>' for 1st argumen
    [all...]
  /external/llvm/include/llvm/MC/
MCAsmInfo.h 34 Alpha, /// Windows Alpha
40 MIPS = Alpha,
206 /// on Alpha. Defaults to NULL.
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCAsmInfo.h 37 Alpha, /// Windows Alpha
43 MIPS = Alpha,
198 /// on Alpha. Defaults to nullptr.
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/MC/
MCAsmInfo.h 37 Alpha, /// Windows Alpha
43 MIPS = Alpha,
192 /// on Alpha. Defaults to nullptr.
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/MC/
MCAsmInfo.h 37 Alpha, /// Windows Alpha
43 MIPS = Alpha,
192 /// on Alpha. Defaults to nullptr.

Completed in 770 milliseconds

1 2 3