Searched defs:Sampler (Results 1 - 25 of 34) sorted by relevance

12

/external/tensorflow/tensorflow/core/lib/monitoring/
H A Dsampler.h40 // SamplerCell stores each value of an Sampler.
103 // Sampler allocates storage and maintains a cell for each value. You can
110 class Sampler { class in namespace:tensorflow::monitoring
112 ~Sampler() {
120 // auto* sampler_with_label = Sampler<1>::New({"/tensorflow/sampler",
122 static Sampler* New(const MetricDef<MetricKind::kCumulative, HistogramProto,
134 Sampler(const MetricDef<MetricKind::kCumulative, HistogramProto, NumLabels>& function in class:tensorflow::monitoring::Sampler
168 TF_DISALLOW_COPY_AND_ASSIGN(Sampler);
184 Sampler<NumLabels>* Sampler<NumLabel
[all...]
H A Dmobile_sampler.h16 // Null implementation of the Sampler metric for mobile platforms.
71 // Sampler which has a null implementation.
73 class Sampler { class in namespace:tensorflow::monitoring
75 ~Sampler() {}
78 static Sampler* New(const MetricDef<MetricKind::kCumulative, HistogramProto,
81 return new Sampler<NumLabels>(std::move(buckets));
90 Sampler(std::unique_ptr<Buckets> buckets) : buckets_(std::move(buckets)) {} function in class:tensorflow::monitoring::Sampler
95 TF_DISALLOW_COPY_AND_ASSIGN(Sampler);
/external/mockito/src/test/java/org/mockitousage/misuse/
H A DSpyStubbingMisuseTest.java19 Sampler mpoo = mock(Sampler.class);
38 public class Sampler { class in class:SpyStubbingMisuseTest
40 Sampler(Strategy f) { method in class:SpyStubbingMisuseTest.Sampler
50 Sampler produce() {
51 return new Sampler(strategy);
/external/v8/src/libsampler/
H A Dsampler.h17 // Sampler
23 class Sampler { class in namespace:v8::sampler
28 // Initializes the Sampler support. Called once at VM startup.
33 explicit Sampler(Isolate* isolate);
34 virtual ~Sampler();
47 // Whether the sampling thread should use this Sampler for CPU profiling?
97 DISALLOW_IMPLICIT_CONSTRUCTORS(Sampler);
H A Dsampler.cc162 typedef std::vector<Sampler*> SamplerList;
209 class Sampler::PlatformData {
222 void AddSampler(Sampler* sampler) {
251 void RemoveSampler(Sampler* sampler) {
285 Sampler* sampler = samplers[i];
313 class Sampler::PlatformData {
550 void Sampler::SetUp() {
557 void Sampler::TearDown() {
563 Sampler::Sampler(Isolat function in class:v8::sampler::Sampler
[all...]
/external/autotest/client/site_tests/graphics_WebGLAquarium/
H A Dsampler.py54 class Sampler(object): class in inherits:object
89 raise RuntimeError('Sampler callback function is not set')
112 class ExynosSampler(Sampler):
113 """Sampler for Exynos platform."""
/external/swiftshader/src/Renderer/
H A DSampler.cpp15 #include "Sampler.hpp"
27 FilterType Sampler::maximumTextureFilterQuality = FILTER_LINEAR;
28 MipmapType Sampler::maximumMipmapFilterQuality = MIPMAP_POINT;
30 Sampler::State::State()
35 Sampler::Sampler() function in class:sw::Sampler
82 Sampler::~Sampler()
86 Sampler::State Sampler
[all...]
H A DSampler.hpp142 class Sampler class in namespace:sw
169 Sampler();
171 ~Sampler();
/external/deqp/framework/opengl/
H A DgluObjectWrapper.hpp139 typedef TypedObjectWrapper<OBJECTTYPE_SAMPLER> Sampler; typedef in namespace:glu
/external/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DR600MCCodeEmitter.cpp107 int64_t Sampler = MI.getOperand(14).getImm(); local
122 uint32_t Word2 = Sampler << 15 | SrcSelect[ELEMENT_X] << 20 |
/external/swiftshader/src/OpenGL/libGL/
H A DProgram.h180 struct Sampler struct in class:gl::Program
187 Sampler samplersPS[MAX_TEXTURE_IMAGE_UNITS];
188 Sampler samplersVS[MAX_VERTEX_TEXTURE_IMAGE_UNITS];
/external/swiftshader/src/OpenGL/libGLESv2/
H A DSampler.h15 // Sampler.h: Defines the es2::Sampler class
28 class Sampler : public gl::NamedObject class in namespace:es2
31 Sampler(GLuint name) : NamedObject(name) function in class:es2::Sampler
H A DProgram.h296 struct Sampler struct in class:es2::Program
303 Sampler samplersPS[MAX_TEXTURE_IMAGE_UNITS];
304 Sampler samplersVS[MAX_VERTEX_TEXTURE_IMAGE_UNITS];
/external/deqp/external/openglcts/modules/gles31/
H A Des31cTextureGatherTests.cpp774 return Sampler() + TextBody();
777 virtual std::string Sampler() function in class:glcts::__anon4191::GatherBase
1030 virtual std::string Sampler() function in class:glcts::__anon4191::PlainGatherInt2D
1059 virtual std::string Sampler() function in class:glcts::__anon4191::PlainGatherUint2D
1109 virtual std::string Sampler() function in class:glcts::__anon4191::PlainGatherDepth2D
1128 virtual std::string Sampler() function in class:glcts::__anon4191::PlainGatherFloat2DArray
1167 virtual std::string Sampler() function in class:glcts::__anon4191::PlainGatherInt2DArray
1206 virtual std::string Sampler() function in class:glcts::__anon4191::PlainGatherUint2DArray
1246 virtual std::string Sampler() function in class:glcts::__anon4191::PlainGatherDepth2DArray
1270 virtual std::string Sampler() function in class:glcts::__anon4191::PlainGatherFloatCube
1294 virtual std::string Sampler() function in class:glcts::__anon4191::PlainGatherIntCube
1333 virtual std::string Sampler() function in class:glcts::__anon4191::PlainGatherUintCube
1383 virtual std::string Sampler() function in class:glcts::__anon4191::PlainGatherDepthCube
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.h364 struct tgsi_sampler *Sampler; member in struct:tgsi_exec_machine
/external/vulkan-validation-layers/tests/
H A Dvktestbinding.h70 class Sampler;
597 class Sampler : public internal::NonDispHandle<VkSampler> { class in namespace:vk_testing
599 ~Sampler();
/external/caliper/lib/
H A Djava-allocation-instrumenter-2.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/monitoring/ com/google/monitoring/runtime/ ...
/external/deqp/external/openglcts/modules/gl/
H A Dgl4cTextureGatherTests.cpp896 return Sampler() + TextBody();
904 virtual std::string Sampler() function in class:gl4cts::__anon4156::GatherBase
1227 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherInt2DRgba
1294 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherUint2D
1346 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherDepth2D
1367 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherFloat2DArray
1388 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherUnorm2DArray
1463 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherInt2DArray
1533 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherUint2DArray
1575 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherDepth2DArray
1601 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherFloatCubeRgba
1627 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherFloatCubeRg
1663 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherUnormCube
1694 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherIntCubeRgba
1764 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherIntCubeRg
1834 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherUintCube
1915 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherDepthCube
1956 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherFloatCubeArray
1992 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherUnormCubeArray
2033 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherIntCubeArray
2113 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherUintCubeArray
2194 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherDepthCubeArray
2235 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherFloat2DRect
2266 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherUnorm2DRect
2297 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherInt2DRect
2367 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherUint2DRect
2438 virtual std::string Sampler() function in class:gl4cts::__anon4156::PlainGatherDepth2DRect
[all...]
/external/deqp/framework/common/
H A DtcuTexture.hpp179 class Sampler class in namespace:tcu
261 Sampler (WrapMode wrapS_, function in class:tcu::Sampler
288 Sampler (void) function in class:tcu::Sampler
353 Vec4 sample1D (const Sampler& sampler, Sampler::FilterMode filter, float s, int level) const;
354 Vec4 sample2D (const Sampler& sampler, Sampler::FilterMode filter, float s, float t, int depth) const;
355 Vec4 sample3D (const Sampler& sampler, Sampler::FilterMode filter, float s, float t, float r) const;
357 Vec4 sample1DOffset (const Sampler
[all...]
/external/pdfium/third_party/lcms/src/
H A Dcmslut.c750 cmsBool CMSEXPORT cmsStageSampleCLut16bit(cmsStage* mpe, cmsSAMPLER16 Sampler, void * Cargo, cmsUInt32Number dwFlags) argument
794 if (!Sampler(In, Out, Cargo))
812 cmsBool CMSEXPORT cmsStageSampleCLutFloat(cmsStage* mpe, cmsSAMPLERFLOAT Sampler, void * Cargo, cmsUInt32Number dwFlags) argument
850 if (!Sampler(In, Out, Cargo))
872 cmsSAMPLER16 Sampler, void * Cargo)
894 if (!Sampler(In, NULL, Cargo))
902 cmsSAMPLERFLOAT Sampler, void * Cargo)
924 if (!Sampler(In, NULL, Cargo))
871 cmsSliceSpace16(cmsUInt32Number nInputs, const cmsUInt32Number clutPoints[], cmsSAMPLER16 Sampler, void * Cargo) argument
901 cmsSliceSpaceFloat(cmsUInt32Number nInputs, const cmsUInt32Number clutPoints[], cmsSAMPLERFLOAT Sampler, void * Cargo) argument
/external/spirv-llvm/lib/SPIRV/
H A DSPIRVInternal.h296 const static char Sampler[] = "Sampler"; member in namespace:SPIRV::kSPIRVTypeName
307 const static char Sampler[] = "opencl.sampler_t"; member in namespace:SPIRV::kSPR2TypeName
318 const static char Sampler[] = "11ocl_sampler"; member in namespace:SPIRV::kMangledName
935 add(kSPIRVTypeName::Sampler, OpTypeSampler);
/external/mesa3d/src/gallium/state_trackers/nine/
H A Ddevice9.c2556 DWORD Sampler,
2560 user_assert(Sampler < This->caps.MaxSimultaneousTextures ||
2561 Sampler == D3DDMAPSAMPLER ||
2562 (Sampler >= D3DVERTEXTEXTURESAMPLER0 &&
2563 Sampler <= D3DVERTEXTEXTURESAMPLER3), D3DERR_INVALIDCALL);
2565 if (Sampler >= D3DDMAPSAMPLER)
2566 Sampler = Sampler - D3DDMAPSAMPLER + NINE_MAX_SAMPLERS_PS;
2568 *pValue = This->state.samp_advertised[Sampler][Type];
2574 DWORD Sampler,
2555 NineDevice9_GetSamplerState( struct NineDevice9 *This, DWORD Sampler, D3DSAMPLERSTATETYPE Type, DWORD *pValue ) argument
2573 NineDevice9_SetSamplerState( struct NineDevice9 *This, DWORD Sampler, D3DSAMPLERSTATETYPE Type, DWORD Value ) argument
[all...]
H A Dnine_lock.c1331 DWORD Sampler,
1337 r = NineDevice9_GetSamplerState(This, Sampler, Type, pValue);
1344 DWORD Sampler,
1350 r = NineDevice9_SetSamplerState(This, Sampler, Type, Value);
1330 LockDevice9_GetSamplerState( struct NineDevice9 *This, DWORD Sampler, D3DSAMPLERSTATETYPE Type, DWORD *pValue ) argument
1343 LockDevice9_SetSamplerState( struct NineDevice9 *This, DWORD Sampler, D3DSAMPLERSTATETYPE Type, DWORD Value ) argument
/external/mesa3d/include/CL/
H A Dcl.hpp2141 /*! \class Sampler
2142 * \brief Sampler interface for cl_sampler.
2144 class Sampler : public detail::Wrapper<cl_sampler> class in namespace:cl
2147 Sampler() { } function in class:cl::Sampler
2149 Sampler( function in class:cl::Sampler
2170 Sampler(const Sampler& sampler) : detail::Wrapper<cl_type>(sampler) { } function in class:cl::Sampler
2172 Sampler& operator = (const Sampler& rhs)
2202 __GET_INFO_HELPER_WITH_RETAIN(cl::Sampler)
[all...]
/external/mesa3d/src/mesa/main/
H A Dmtypes.h952 * Sampler object state. These objects are new with GL_ARB_sampler_objects
993 struct gl_sampler_object Sampler; member in struct:gl_texture_object
1144 struct gl_sampler_object *Sampler; member in struct:gl_texture_unit
2357 * \name Sampler tracking

Completed in 781 milliseconds

12