/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/ |
TextureGeneratorMagic.java | 54 public void compute(float[] xyz, float turbulence) { 55 xyz[1] = -(float) Math.cos(xyz[0] - xyz[1] + xyz[2]) * turbulence; 60 public void compute(float[] xyz, float turbulence) { 61 xyz[0] = (float) Math.cos(xyz[0] - xyz[1] - xyz[2]) * turbulence 125 float xyz[] = new float[3], turb; local [all...] |
/external/clang/test/CodeGen/ |
debug-dead-local-var.c | 5 // local variable xyz. 8 struct X { int a; int b; } xyz; local
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/res/raw/ |
shader2v.glsl | 16 mat3 model3 = mat3(UNI_model[0].xyz, UNI_model[1].xyz, UNI_model[2].xyz); 19 varWorldPos = worldPos.xyz;
|
/frameworks/rs/scriptc/ |
rs_math.rsh | 137 float len = length(left->xyz); 139 len = length(right->xyz); 141 len = length(top->xyz); 143 len = length(bottom->xyz); 145 len = length(near->xyz); 147 len = length(far->xyz); 167 float distToCenter = dot(left->xyz, sphere->xyz) + left->w; 171 distToCenter = dot(right->xyz, sphere->xyz) + right->w [all...] |
/prebuilts/sdk/renderscript/include/ |
rs_math.rsh | 137 float len = length(left->xyz); 139 len = length(right->xyz); 141 len = length(top->xyz); 143 len = length(bottom->xyz); 145 len = length(near->xyz); 147 len = length(far->xyz); 167 float distToCenter = dot(left->xyz, sphere->xyz) + left->w; 171 distToCenter = dot(right->xyz, sphere->xyz) + right->w [all...] |
/external/clang/test/Sema/ |
mips16_attr_allowed.c | 16 void foo32a() __attribute__((nomips16(xyz))) ; // expected-error {{attribute takes no arguments}} 17 void __attribute__((mips16(xyz))) foo16a(); // expected-error {{attribute takes no arguments}}
|
ext_vector_components.c | 25 vec3 = vec4.xyz; // legal, shorten
|
/frameworks/rs/java/tests/SampleTest/src/com/android/rs/sample/ |
sample.rs | 40 out->xyz = convert_uchar3(rsSample(sourceAlloc, allocSampler, uv*2.0f).xyz);
|
/external/clang/test/Parser/ |
declarators.c | 48 struct xyz { int y; }; struct 50 xyz b; // expected-error {{must use 'struct' tag to refer to type 'xyz'}} 54 // We should recover 'b' by parsing it with a valid type of "struct xyz", which 59 struct xyz test8() { return a; } // a should be be marked invalid, no diag.
|
/dalvik/tests/049-show-object/src/ |
Main.java | 15 int xyz = 27; local
|
/external/clang/test/SemaCXX/ |
address-of.cpp | 35 void (*xyz)(void) = &xpto; variable
|
/external/jmonkeyengine/engine/src/core-effects/Common/MatDefs/Water/ |
simple_water.vert | 71 viewLightDir.xyz=temp.xyz*tbnMat; 75 viewCamDir.xyz =temp.xyz*tbnMat;
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/ |
global.js | 41 // /xyz/g.global 42 testcases[count++] = new TestCase ( SECTION, "/xyz/g.global", 43 true, /xyz/g.global); 45 // /xyz/.global 46 testcases[count++] = new TestCase ( SECTION, "/xyz/.global", 47 false, /xyz/.global);
|
source.js | 41 // /xyz/g.source 42 testcases[count++] = new TestCase ( SECTION, "/xyz/g.source", 43 "xyz", /xyz/g.source); 45 // /xyz/.source 46 testcases[count++] = new TestCase ( SECTION, "/xyz/.source", 47 "xyz", /xyz/.source); 57 // (new RegExp('xyz')).source 58 testcases[count++] = new TestCase ( SECTION, "(new RegExp('xyz')).source" [all...] |
ignoreCase.js | 41 // /xyz/i.ignoreCase 42 testcases[count++] = new TestCase ( SECTION, "/xyz/i.ignoreCase", 43 true, /xyz/i.ignoreCase); 45 // /xyz/.ignoreCase 46 testcases[count++] = new TestCase ( SECTION, "/xyz/.ignoreCase", 47 false, /xyz/.ignoreCase); 69 // (new RegExp('xyz','i')).ignoreCase 70 testcases[count++] = new TestCase ( SECTION, "(new RegExp('xyz','i')).ignoreCase", 71 true, (new RegExp('xyz','i')).ignoreCase); 73 // (new RegExp('xyz')).ignoreCas [all...] |
/development/samples/RenderScript/Levels/src/com/android/rs/levels/ |
levels.rs | 37 out->xyz = convert_uchar3(pixel);
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
threshold.fs | 84 blurredPixel += i.xyz * gaussian[gi++]; 90 blurredPixel += i.xyz * gaussian[gi++]; 94 out.xyz = convert_uchar3(clamp(blurredPixel, 0.f, 255.f));
|
levels.rsh | 32 out.xyz = convert_uchar3(pixel);
|
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
threshold.fs | 84 blurredPixel += i.xyz * gaussian[gi++]; 90 blurredPixel += i.xyz * gaussian[gi++]; 94 out.xyz = convert_uchar3(clamp(blurredPixel, 0.f, 255.f));
|
levels.rsh | 32 out.xyz = convert_uchar3(pixel);
|
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
threshold.fs | 84 blurredPixel += i.xyz * gaussian[gi++]; 90 blurredPixel += i.xyz * gaussian[gi++]; 94 out.xyz = convert_uchar3(clamp(blurredPixel, 0.f, 255.f));
|
levels.rsh | 32 out.xyz = convert_uchar3(pixel);
|
/external/webkit/LayoutTests/storage/domstorage/script-tests/ |
complex-keys.js | 59 evalAndLog("storage[undefined] = 'xyz'"); 60 shouldBeEqualToString("storage.getItem('undefined')", "xyz"); 61 shouldBeEqualToString("storage.getItem(undefined)", "xyz"); 62 shouldBeEqualToString("storage['undefined']", "xyz"); 63 shouldBeEqualToString("storage[undefined]", "xyz");
|
/external/webkit/LayoutTests/storage/domstorage/events/script-tests/ |
documentURI.js | 37 evalAndLog("storage.foo = 'xyz'");
|
/external/webkit/Tools/Scripts/ |
update-webkit-dependency | 50 * If filename is xyz.zip and the contents of the zipfile are xyz/abc/x" then prefix = "abc"
|