HomeSort by relevance Sort by last modified time
    Searched defs:sampler (Results 1 - 16 of 16) sorted by null

  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.h 108 SamplingTool* sampler() { return m_sampler.get(); } function in class:JSC::Interpreter
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
SamplerThunker.java 33 class SamplerThunker extends Sampler {
34 android.renderscript.Sampler mN;
44 static android.renderscript.Sampler.Value convertValue (Value v) {
47 return android.renderscript.Sampler.Value.NEAREST;
49 return android.renderscript.Sampler.Value.LINEAR;
51 return android.renderscript.Sampler.Value.LINEAR_MIP_LINEAR;
53 return android.renderscript.Sampler.Value.LINEAR_MIP_NEAREST;
55 return android.renderscript.Sampler.Value.WRAP;
57 return android.renderscript.Sampler.Value.CLAMP;
59 return android.renderscript.Sampler.Value.MIRRORED_REPEAT
140 SamplerThunker sampler = new SamplerThunker(0, mRS); local
    [all...]
Sampler.java 31 * Sampler object that defines how Allocations can be read as textures within a
35 * Any Allocation used with a Sampler must have been created with {@link
37 * Sampler on an {@link android.support.v8.renderscript.Allocation} that was not
42 public class Sampler extends BaseObj {
65 Sampler(int id, RenderScript rs) {
70 * @return minification setting for the sampler
77 * @return magnification setting for the sampler
84 * @return S wrapping mode for the sampler
91 * @return T wrapping mode for the sampler
98 * @return anisotropy setting for the sampler
344 Sampler sampler = new Sampler(id, mRS); local
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
SamplingProfiler.java 76 * A sampler is created every time profiling starts and cleared
80 private Sampler sampler; field in class:SamplingProfiler
280 if (sampler != null) {
283 sampler = new Sampler();
285 timer.scheduleAtFixedRate(sampler, 0, interval);
293 if (sampler == null) {
296 synchronized(sampler) {
297 sampler.stop = true
    [all...]
  /external/v8/src/
cpu-profiler.cc 223 // sampler writes w/o any sync to the queue, so if the processor
508 Sampler* sampler = reinterpret_cast<Sampler*>(isolate->logger()->ticker_); local
509 if (!sampler->IsActive()) {
510 sampler->Start();
513 sampler->IncreaseProfilingDepth();
549 Sampler* sampler = reinterpret_cast<Sampler*>(logger->ticker_) local
    [all...]
platform-freebsd.cc 667 class Sampler::PlatformData : public Malloced {
691 Sampler* sampler = isolate->logger()->sampler(); local
692 if (sampler == NULL || !sampler->IsActive()) return;
715 sampler->SampleStack(sample);
716 sampler->Tick(sample);
733 static void AddActiveSampler(Sampler* sampler) {
    [all...]
platform-solaris.cc 683 Sampler* sampler = isolate->logger()->sampler(); local
684 if (sampler == NULL || !sampler->IsActive()) return;
699 sampler->SampleStack(sample);
700 sampler->Tick(sample);
703 class Sampler::PlatformData : public Malloced {
743 static void AddActiveSampler(Sampler* sampler) {
    [all...]
log.cc 81 // This design minimizes the time spent in the sampler.
188 class Ticker: public Sampler {
191 Sampler(isolate, interval),
1679 Sampler* Logger::sampler() { function in class:v8::internal::Logger
    [all...]
platform-linux.cc 1036 Sampler* sampler = isolate->logger()->sampler(); local
1037 if (sampler == NULL || !sampler->IsActive()) return;
1071 sampler->SampleStack(sample);
1072 sampler->Tick(sample);
1076 class Sampler::PlatformData : public Malloced {
1117 static void AddActiveSampler(Sampler* sampler) {
    [all...]
platform-openbsd.cc 744 Sampler* sampler = isolate->logger()->sampler(); local
745 if (sampler == NULL || !sampler->IsActive()) return;
776 sampler->SampleStack(sample);
777 sampler->Tick(sample);
781 class Sampler::PlatformData : public Malloced {
822 static void AddActiveSampler(Sampler* sampler) {
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Sampler.java 31 * Sampler object that defines how Allocations can be read as textures within a
35 * Any Allocation used with a Sampler must have been created with {@link
36 * android.renderscript.Allocation#USAGE_GRAPHICS_TEXTURE}; using a Sampler on
40 public class Sampler extends BaseObj {
63 Sampler(int id, RenderScript rs) {
68 * @return minification setting for the sampler
75 * @return magnification setting for the sampler
82 * @return S wrapping mode for the sampler
89 * @return T wrapping mode for the sampler
96 * @return anisotropy setting for the sampler
352 Sampler sampler = new Sampler(id, mRS); local
    [all...]
  /frameworks/rs/
rs_hal.h 45 class Sampler;
262 bool (*init)(const Context *rsc, const Sampler *m);
263 void (*destroy)(const Context *rsc, const Sampler *m);
264 } sampler; member in struct:android::renderscript::__anon20276
  /external/llvm/lib/Target/R600/
AMDILPeepholeOptimizer.cpp 1065 Value *sampler = CI->getOperand(samplerIdx); local
    [all...]
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
ColladaParser.java 276 // This will find the actual texture node, which is sometimes hidden behind a sampler
281 // Check to see if the image file is hidden by a sampler surface link combo
282 Element sampler = mDom.getElementById(samplerName); local
283 if (sampler != null) {
284 NodeList nl = sampler.getElementsByTagName("source");
  /external/zxing/core/
core.jar 
  /prebuilts/sdk/renderscript/lib/
javalib.jar 

Completed in 528 milliseconds