Home
last modified time | relevance | path

Searched refs:ic (Results 1 – 25 of 230) sorted by relevance

12345678910

/external/mesa3d/src/mesa/state_tracker/
Dst_atom_pixeltransfer.c147 GLuint ic = 0; in get_pixel_transfer_program() local
161 _mesa_init_instructions(inst + ic, 1); in get_pixel_transfer_program()
162 inst[ic].Opcode = OPCODE_TEX; in get_pixel_transfer_program()
163 inst[ic].DstReg.File = PROGRAM_TEMPORARY; in get_pixel_transfer_program()
164 inst[ic].DstReg.Index = colorTemp; in get_pixel_transfer_program()
165 inst[ic].SrcReg[0].File = PROGRAM_INPUT; in get_pixel_transfer_program()
166 inst[ic].SrcReg[0].Index = FRAG_ATTRIB_TEX0; in get_pixel_transfer_program()
167 inst[ic].TexSrcUnit = 0; in get_pixel_transfer_program()
168 inst[ic].TexSrcTarget = TEXTURE_2D_INDEX; in get_pixel_transfer_program()
169 ic++; in get_pixel_transfer_program()
[all …]
/external/valgrind/none/tests/s390x/
Dinsert.stdout.exp1 ic 0000000000000000 <- 0000000000000000 = 0000000000000000
2 ic 0000000000000001 <- 0000000000000000 = 0000000000000000
3 ic 000000000000FFFF <- 0000000000000000 = 000000000000FF00
4 ic 0000000000007FFF <- 0000000000000000 = 0000000000007F00
5 ic 0000000000008000 <- 0000000000000000 = 0000000000008000
6 ic 00000000FFFFFFFF <- 0000000000000000 = 00000000FFFFFF00
7 ic 0000000080000000 <- 0000000000000000 = 0000000080000000
8 ic 000000007FFFFFFF <- 0000000000000000 = 000000007FFFFF00
9 ic AAAAAAAAAAAAAAAA <- 0000000000000000 = AAAAAAAAAAAAAA00
10 ic 8000000000000000 <- 0000000000000000 = 8000000000000000
[all …]
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.rotate/
Drotate.pass.cpp55 int ic[] = {0, 1, 2}; in test() local
56 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test()
57 r = std::rotate(Iter(ic), Iter(ic), Iter(ic+sc)); in test()
58 assert(base(r) == ic+sc); in test()
59 assert(ic[0] == 0); in test()
60 assert(ic[1] == 1); in test()
61 assert(ic[2] == 2); in test()
62 r = std::rotate(Iter(ic), Iter(ic+1), Iter(ic+sc)); in test()
63 assert(base(r) == ic+2); in test()
64 assert(ic[0] == 1); in test()
[all …]
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/
Dsearch_n.pass.cpp60 int ic[] = {0, 0, 0}; in test() local
61 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test()
62 assert(std::search_n(Iter(ic), Iter(ic+sc), 0, 0) == Iter(ic)); in test()
63 assert(std::search_n(Iter(ic), Iter(ic+sc), 1, 0) == Iter(ic)); in test()
64 assert(std::search_n(Iter(ic), Iter(ic+sc), 2, 0) == Iter(ic)); in test()
65 assert(std::search_n(Iter(ic), Iter(ic+sc), 3, 0) == Iter(ic)); in test()
66 assert(std::search_n(Iter(ic), Iter(ic+sc), 4, 0) == Iter(ic+sc)); in test()
69 std::search_n(Iter(ic), Iter(ic+sc), UserDefinedIntegral<unsigned>(0), 0); in test()
Dsearch_n_pred.pass.cpp126 int ic[] = {0, 0, 0}; in test() local
127 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test()
128 assert(std::search_n(Iter(ic), Iter(ic+sc), 0, 0, count_equal()) == Iter(ic)); in test()
131 assert(std::search_n(Iter(ic), Iter(ic+sc), 1, 0, count_equal()) == Iter(ic)); in test()
134 assert(std::search_n(Iter(ic), Iter(ic+sc), 2, 0, count_equal()) == Iter(ic)); in test()
137 assert(std::search_n(Iter(ic), Iter(ic+sc), 3, 0, count_equal()) == Iter(ic)); in test()
140 assert(std::search_n(Iter(ic), Iter(ic+sc), 4, 0, count_equal()) == Iter(ic+sc)); in test()
145 std::search_n(Iter(ic), Iter(ic+sc), UserDefinedIntegral<unsigned>(4), 0, count_equal()); in test()
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
Dp7.cpp13 void test_capture_constness(int i, const int ic) { in test_capture_constness() argument
14 (void)[i,ic] ()->void { in test_capture_constness()
16 float &fr2 = check_const_int(ic); in test_capture_constness()
21 float &fr2 = check_const_int(ic); in test_capture_constness()
24 (void)[i,ic] () mutable ->void { in test_capture_constness()
26 float &fr = check_const_int(ic); in test_capture_constness()
31 float &fr = check_const_int(ic); in test_capture_constness()
34 (void)[&i,&ic] ()->void { in test_capture_constness()
36 float &fr = check_const_int(ic); in test_capture_constness()
41 float &fr = check_const_int(ic); in test_capture_constness()
/external/jmonkeyengine/engine/src/core/com/jme3/material/
DRenderState.java363 InputCapsule ic = im.getCapsule(this); in read() local
364 pointSprite = ic.readBoolean("pointSprite", false); in read()
365 wireframe = ic.readBoolean("wireframe", false); in read()
366 cullMode = ic.readEnum("cullMode", FaceCullMode.class, FaceCullMode.Back); in read()
367 depthWrite = ic.readBoolean("depthWrite", true); in read()
368 depthTest = ic.readBoolean("depthTest", true); in read()
369 colorWrite = ic.readBoolean("colorWrite", true); in read()
370 blendMode = ic.readEnum("blendMode", BlendMode.class, BlendMode.Off); in read()
371 alphaTest = ic.readBoolean("alphaTest", false); in read()
372 alphaFallOff = ic.readFloat("alphaFallOff", 0); in read()
[all …]
DTechniqueDef.java384 InputCapsule ic = im.getCapsule(this); in read() local
385 name = ic.readString("name", null); in read()
386 vertName = ic.readString("vertName", null); in read()
387 fragName = ic.readString("fragName", null); in read()
388 shaderLang = ic.readString("shaderLang", null); in read()
389 presetDefines = (DefineList) ic.readSavable("presetDefines", null); in read()
390 lightMode = ic.readEnum("lightMode", LightMode.class, LightMode.Disable); in read()
391 shadowMode = ic.readEnum("shadowMode", ShadowMode.class, ShadowMode.Disable); in read()
392 renderState = (RenderState) ic.readSavable("renderState", null); in read()
393 usesShaders = ic.readBoolean("usesShaders", false); in read()
/external/libcxx/test/std/algorithms/alg.sorting/alg.merge/
Dmerge.pass.cpp34 int* ic = new int[2*N]; in test() local
40 InIter2(ib), InIter2(ib+N), OutIter(ic)); in test()
41 assert(base(r) == ic+2*N); in test()
42 assert(ic[0] == 0); in test()
43 assert(ic[2*N-1] == 2*N-1); in test()
44 assert(std::is_sorted(ic, ic+2*N)); in test()
45 delete [] ic; in test()
53 int* ic = new int[2*N]; in test() local
55 ic[i] = i; in test()
56 std::random_shuffle(ic, ic+2*N); in test()
[all …]
Dmerge_comp.pass.cpp38 int* ic = new int[2*N]; in test() local
47 InIter2(ib), InIter2(ib+N), OutIter(ic), pred); in test()
48 assert(base(r) == ic+2*N); in test()
49 assert(ic[0] == 2*N-1); in test()
50 assert(ic[2*N-1] == 0); in test()
51 assert(std::is_sorted(ic, ic+2*N, std::greater<int>())); in test()
53 delete [] ic; in test()
61 int* ic = new int[2*N]; in test() local
63 ic[i] = i; in test()
64 std::random_shuffle(ic, ic+2*N); in test()
[all …]
/external/v8/
DAndroid.v8common.mk145 src/ic/access-compiler.cc \
146 src/ic/call-optimization.cc \
147 src/ic/handler-compiler.cc \
148 src/ic/ic-compiler.cc \
149 src/ic/ic-state.cc \
150 src/ic/ic.cc \
151 src/ic/stub-cache.cc \
235 src/ic/arm/access-compiler-arm.cc \
236 src/ic/arm/handler-compiler-arm.cc \
237 src/ic/arm/ic-arm.cc \
[all …]
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.reverse/
Dreverse.pass.cpp39 int ic[] = {0, 1, 2}; in test() local
40 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test()
41 std::reverse(Iter(ic), Iter(ic+sc)); in test()
42 assert(ic[0] == 2); in test()
43 assert(ic[1] == 1); in test()
44 assert(ic[2] == 0); in test()
/external/jmonkeyengine/engine/src/core/com/jme3/font/
DBitmapCharacter.java182 InputCapsule ic = im.getCapsule(this); in read() local
183 c = (char) ic.readInt("c", 0); in read()
184 x = ic.readInt("x", 0); in read()
185 y = ic.readInt("y", 0); in read()
186 width = ic.readInt("width", 0); in read()
187 height = ic.readInt("height", 0); in read()
188 xOffset = ic.readInt("xOffset", 0); in read()
189 yOffset = ic.readInt("yOffset", 0); in read()
190 xAdvance = ic.readInt("xAdvance", 0); in read()
192 int[] seconds = ic.readIntArray("seconds", null); in read()
[all …]
DBitmapCharacterSet.java89 InputCapsule ic = im.getCapsule(this); in read() local
90 lineHeight = ic.readInt("lineHeight", 0); in read()
91 base = ic.readInt("base", 0); in read()
92 renderedSize = ic.readInt("renderedSize", 0); in read()
93 width = ic.readInt("width", 0); in read()
94 height = ic.readInt("height", 0); in read()
95 pageSize = ic.readInt("pageSize", 0); in read()
96 int[] styles = ic.readIntArray("styles", null); in read()
99 characters.put(style, readCharset(ic, style)); in read()
103 private IntMap<BitmapCharacter> readCharset(InputCapsule ic, int style) throws IOException { in readCharset() argument
[all …]
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.find.first.of/
Dfind_first_of.pass.cpp33 int ic[] = {7}; in main() local
36 forward_iterator<const int*>(ic), in main()
37 forward_iterator<const int*>(ic + 1)) == in main()
41 forward_iterator<const int*>(ic), in main()
42 forward_iterator<const int*>(ic)) == in main()
46 forward_iterator<const int*>(ic), in main()
47 forward_iterator<const int*>(ic+1)) == in main()
Dfind_first_of_pred.pass.cpp36 int ic[] = {7}; in main() local
39 forward_iterator<const int*>(ic), in main()
40 forward_iterator<const int*>(ic + 1), in main()
45 forward_iterator<const int*>(ic), in main()
46 forward_iterator<const int*>(ic), in main()
51 forward_iterator<const int*>(ic), in main()
52 forward_iterator<const int*>(ic+1), in main()
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/
Dunique.pass.cpp43 int ic[] = {0, 0}; in test() local
44 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test()
45 r = std::unique(Iter(ic), Iter(ic+sc)); in test()
46 assert(base(r) == ic + 1); in test()
47 assert(ic[0] == 0); in test()
116 Ptr ic[2]; in test1() local
117 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test1()
118 r = std::unique(Iter(ic), Iter(ic+sc)); in test1()
119 assert(base(r) == ic + 1); in test1()
120 assert(ic[0] == 0); in test1()
Dunique_pred.pass.cpp57 int ic[] = {0, 0}; in test() local
58 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test()
60 r = std::unique(Iter(ic), Iter(ic+sc), count_equal()); in test()
61 assert(base(r) == ic + 1); in test()
62 assert(ic[0] == 0); in test()
146 Ptr ic[2]; in test1() local
147 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test1()
149 r = std::unique(Iter(ic), Iter(ic+sc), count_equal()); in test1()
150 assert(base(r) == ic + 1); in test1()
151 assert(ic[0] == 0); in test1()
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
DAudioNode.java758 InputCapsule ic = im.getCapsule(this); in read() local
763 if (ic.getSavableVersion(AudioNode.class) == 0){ in read()
764 audioKey = (AudioKey) ic.readSavable("key", null); in read()
766 audioKey = (AudioKey) ic.readSavable("audio_key", null); in read()
769 loop = ic.readBoolean("looping", false); in read()
770 volume = ic.readFloat("volume", 1); in read()
771 pitch = ic.readFloat("pitch", 1); in read()
772 timeOffset = ic.readFloat("time_offset", 0); in read()
773 dryFilter = (Filter) ic.readSavable("dry_filter", null); in read()
775 velocity = (Vector3f) ic.readSavable("velocity", null); in read()
[all …]
/external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
DWaterFilter.java349 InputCapsule ic = im.getCapsule(this); in read() local
350 speed = ic.readFloat("speed", 1f); in read()
351 lightDirection = (Vector3f) ic.readSavable("lightDirection", new Vector3f(0, -1, 0)); in read()
352 lightColor = (ColorRGBA) ic.readSavable("lightColor", ColorRGBA.White); in read()
353 waterHeight = ic.readFloat("waterHeight", 0.0f); in read()
354 …waterColor = (ColorRGBA) ic.readSavable("waterColor", new ColorRGBA(0.0078f, 0.3176f, 0.5f, 1.0f)); in read()
355 …deepWaterColor = (ColorRGBA) ic.readSavable("deepWaterColor", new ColorRGBA(0.0039f, 0.00196f, 0.1… in read()
357 … colorExtinction = (Vector3f) ic.readSavable("colorExtinction", new Vector3f(5.0f, 20.0f, 30.0f)); in read()
358 waterTransparency = ic.readFloat("waterTransparency", 0.1f); in read()
359 maxAmplitude = ic.readFloat("maxAmplitude", 1.5f); in read()
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
DUserData.java133 InputCapsule ic = im.getCapsule(this); in read() local
134 type = ic.readByte("type", (byte) 0); in read()
138 value = ic.readInt("intVal", 0); in read()
141 value = ic.readFloat("floatVal", 0f); in read()
144 value = ic.readBoolean("boolVal", false); in read()
147 value = ic.readString("strVal", null); in read()
150 value = ic.readLong("longVal", 0l); in read()
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
DUniform.java119 InputCapsule ic = im.getCapsule(this); in read() local
120 varType = ic.readEnum("varType", VarType.class, null); in read()
121 binding = ic.readEnum("binding", UniformBinding.class, null); in read()
124 value = ic.readBoolean("valueBoolean", false); in read()
127 value = ic.readFloat("valueFloat", 0); in read()
130 value = ic.readFloatBuffer("valueFloatArray", null); in read()
133 value = ic.readInt("valueInt", 0); in read()
136 multiData = ic.readFloatBuffer("valueMatrix3", null); in read()
140 multiData = ic.readFloatBuffer("valueMatrix4", null); in read()
144 value = ic.readSavable("valueVector2", null); in read()
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/effect/
DParticleEmitter.java1126 InputCapsule ic = im.getCapsule(this); in read() local
1127 shape = (EmitterShape) ic.readSavable("shape", DEFAULT_SHAPE); in read()
1134 meshType = ic.readEnum("meshType", ParticleMesh.Type.class, ParticleMesh.Type.Triangle); in read()
1135 int numParticles = ic.readInt("numParticles", 0); in read()
1138 enabled = ic.readBoolean("enabled", true); in read()
1139 particlesPerSec = ic.readFloat("particlesPerSec", 0); in read()
1140 lowLife = ic.readFloat("lowLife", 0); in read()
1141 highLife = ic.readFloat("highLife", 0); in read()
1142 gravity = (Vector3f) ic.readSavable("gravity", null); in read()
1143 imagesX = ic.readInt("imagesX", 1); in read()
[all …]
/external/toybox/toys/pending/
Diconv.c30 void *ic;
52 if (iconv(TT.ic, &in, &inleft, &out, &outleft) == -1
70 TT.ic = iconv_open(TT.to ? TT.to : "utf8", TT.from ? TT.from : "utf8"); in iconv_main()
71 if (TT.ic == (iconv_t)-1) error_exit("bad encoding"); in iconv_main()
73 if (CFG_TOYBOX_FREE) iconv_close(TT.ic); in iconv_main()
/external/jmonkeyengine/engine/src/blender/com/jme3/asset/
DBlenderKey.java371 InputCapsule ic = e.getCapsule(this); in read() local
372 fps = ic.readInt("fps", DEFAULT_FPS); in read()
373 generatedTextureWidth = ic.readInt("generated-texture-width", 20); in read()
374 generatedTextureHeight = ic.readInt("generated-texture-height", 20); in read()
375 generatedTextureDepth = ic.readInt("generated-texture-depth", 20); in read()
376 featuresToLoad = ic.readInt("features-to-load", FeaturesToLoad.ALL); in read()
377 loadUnlinkedAssets = ic.readBoolean("load-unlinked-assets", false); in read()
378 assetRootPath = ic.readString("asset-root-path", null); in read()
379 fixUpAxis = ic.readBoolean("fix-up-axis", true); in read()
380 usedWorld = ic.readString("used-world", null); in read()
[all …]

12345678910