HomeSort by relevance Sort by last modified time
    Searched refs:setVar (Results 1 - 9 of 9) sorted by null

  /frameworks/rs/cpp/
Script.h 42 void setVar(uint32_t index, const void *, size_t len) const;
43 void setVar(uint32_t index, sp<const BaseObj> o) const;
50 void setVar(uint32_t index, float v) const {
51 setVar(index, &v, sizeof(v));
53 void setVar(uint32_t index, double v) const {
54 setVar(index, &v, sizeof(v));
56 void setVar(uint32_t index, int32_t v) const {
57 setVar(index, &v, sizeof(v));
59 void setVar(uint32_t index, int64_t v) const {
60 setVar(index, &v, sizeof(v))
    [all...]
Script.cpp 55 void Script::setVar(uint32_t index, sp<const BaseObj> o) const {
59 void Script::setVar(uint32_t index, const void *v, size_t len) const {
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ScriptTest.java 40 S.setVar(4, 9.0f); // floatTest
41 S.setVar(5, 9.0); // doubleTest
42 S.setVar(6, 7); // charTest
43 S.setVar(7, 300); // shortTest
44 S.setVar(8, 20000); // intTest
45 S.setVar(9, 20000000000l); // longTest
46 S.setVar(11, true); // boolTest
50 S.setVar(12, fp); // structTest
54 S.setVar(13, a); // allocationTest
  /frameworks/rs/tests/
ScriptC_mono.h 35 setVar(0, v);
47 setVar(2, v);
  /frameworks/base/graphics/java/android/renderscript/
Script.java 101 public void setVar(int index, float v) {
111 public void setVar(int index, double v) {
121 public void setVar(int index, int v) {
131 public void setVar(int index, long v) {
141 public void setVar(int index, boolean v) {
151 public void setVar(int index, BaseObj o) {
161 public void setVar(int index, FieldPacker v) {
173 public void setVar(int index, FieldPacker v, Element e, int[] dims) {
  /frameworks/rs/
rsScript.cpp 58 void Script::setVar(uint32_t slot, const void *val, size_t len) {
59 //ALOGE("setVar %i %p %i", slot, val, len);
61 ALOGE("Script::setVar unable to set allocation, invalid slot index");
67 void Script::setVar(uint32_t slot, const void *val, size_t len, Element *e,
70 ALOGE("Script::setVar unable to set allocation, invalid slot index");
150 s->setVar(slot, &value, sizeof(value));
161 s->setVar(slot, &value, sizeof(value));
166 s->setVar(slot, &value, sizeof(value));
171 s->setVar(slot, &value, sizeof(value));
176 s->setVar(slot, data, len)
    [all...]
rsScript.h 71 void setVar(uint32_t slot, const void *val, size_t len);
72 void setVar(uint32_t slot, const void *val, size_t len, Element *e,
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/14/
android.jar 

Completed in 1265 milliseconds