Home
last modified time | relevance | path

Searched refs:map2 (Results 1 - 25 of 34) sorted by relevance

12

/third_party/mesa3d/src/mesa/vbo/
H A Dvbo_exec_eval.c45 assert(attr < ARRAY_SIZE(exec->eval.map2)); in clear_active_eval2()
46 exec->eval.map2[attr].map = NULL; in clear_active_eval2()
62 assert(attr < ARRAY_SIZE(exec->eval.map2)); in set_active_eval2()
63 if (!exec->eval.map2[attr].map) { in set_active_eval2()
64 exec->eval.map2[attr].map = map; in set_active_eval2()
65 exec->eval.map2[attr].sz = dim; in set_active_eval2()
179 struct gl_2d_map *map = exec->eval.map2[attr].map; in vbo_exec_do_EvalCoord2f()
191 exec->eval.map2[attr].sz, in vbo_exec_do_EvalCoord2f()
202 if (exec->eval.map2[0].map) { in vbo_exec_do_EvalCoord2f()
203 struct gl_2d_map *map = exec->eval.map2[ in vbo_exec_do_EvalCoord2f()
[all...]
H A Dvbo.h143 struct vbo_exec_eval2_map map2[VERT_ATTRIB_MAX]; member
H A Dvbo_exec_api.c749 if (exec->eval.map2[i].map) in _mesa_EvalCoord2f()
750 if (exec->vtx.attr[i].active_size != exec->eval.map2[i].sz) in _mesa_EvalCoord2f()
751 vbo_exec_fixup_vertex(ctx, i, exec->eval.map2[i].sz, GL_FLOAT); in _mesa_EvalCoord2f()
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Collections/
H A DMapFieldTest.cs110 var map2 = new MapField<string, string>(); in EqualityIsOrderInsensitive()
111 map2.Add("b", "v2"); in EqualityIsOrderInsensitive()
112 map2.Add("a", "v1"); in EqualityIsOrderInsensitive()
114 EqualityTester.AssertEquality(map1, map2); in EqualityIsOrderInsensitive()
124 var map2 = new MapField<string, string>(); in EqualityIsKeySensitive()
125 map2.Add("third key", "v1"); in EqualityIsKeySensitive()
126 map2.Add("fourth key", "v2"); in EqualityIsKeySensitive()
128 EqualityTester.AssertInequality(map1, map2); in EqualityIsKeySensitive()
149 var map2 = new MapField<string, string>(); in EqualityIsValueSensitive()
150 map2 in EqualityIsValueSensitive()
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf.Test/Collections/
H A DMapFieldTest.cs111 var map2 = new MapField<string, string>(); in EqualityIsOrderInsensitive()
112 map2.Add("b", "v2"); in EqualityIsOrderInsensitive()
113 map2.Add("a", "v1"); in EqualityIsOrderInsensitive()
115 EqualityTester.AssertEquality(map1, map2); in EqualityIsOrderInsensitive()
125 var map2 = new MapField<string, string>(); in EqualityIsKeySensitive()
126 map2.Add("third key", "v1"); in EqualityIsKeySensitive()
127 map2.Add("fourth key", "v2"); in EqualityIsKeySensitive()
129 EqualityTester.AssertInequality(map1, map2); in EqualityIsKeySensitive()
150 var map2 = new MapField<string, string>(); in EqualityIsValueSensitive()
151 map2 in EqualityIsValueSensitive()
[all...]
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_hue_sat_map.cpp262 const dng_hue_sat_map &map2, in Interpolate()
285 if (!map2.IsValid ()) in Interpolate()
287 DNG_REPORT ("map2 is not valid"); in Interpolate()
293 return new dng_hue_sat_map (map2); in Interpolate()
299 if (!map1.IsValid () || !map2.IsValid ()) in Interpolate()
302 DNG_REPORT ("map1 or map2 is not valid"); in Interpolate()
310 if (map1.fHueDivisions != map2.fHueDivisions || in Interpolate()
311 map1.fSatDivisions != map2.fSatDivisions || in Interpolate()
312 map1.fValDivisions != map2.fValDivisions) in Interpolate()
315 DNG_REPORT ("map1 and map2 hav in Interpolate()
261 Interpolate(const dng_hue_sat_map &map1, const dng_hue_sat_map &map2, real64 weight1) Interpolate() argument
[all...]
H A Ddng_hue_sat_map.h223 /// from the specified tables, with the specified weight. map1 and map2 must
227 const dng_hue_sat_map &map2,
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/
H A DUnicodeMapTest.java332 Map<Integer, String> map2 = new HashMap<Integer, String>(); in TestUnicodeMapRandom()
343 map2.put(start, value); in TestUnicodeMapRandom()
344 check(map1, map2, counter); in TestUnicodeMapRandom()
346 checkNext(map1, map2, LIMIT); in TestUnicodeMapRandom()
355 Map<Integer, String> map2 = new HashMap<Integer, String>(); in TestUnicodeMapGeneralCategory()
358 map2 = new TreeMap<Integer,String>(); in TestUnicodeMapGeneralCategory()
364 map2.put(cp, value); in TestUnicodeMapGeneralCategory()
377 checkNext(map1, map2, Integer.MAX_VALUE); in TestUnicodeMapGeneralCategory()
380 check(map1, map2, -1); in TestUnicodeMapGeneralCategory()
383 Set<String> values2 = new TreeSet<String>(map2 in TestUnicodeMapGeneralCategory()
422 checkNext(UnicodeMap<String> map1, Map<Integer,String> map2, int limit) checkNext() argument
450 check(UnicodeMap<String> map1, Map<Integer,String> map2, int counter) check() argument
[all...]
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DUnicodeMapTest.java329 Map<Integer, String> map2 = new HashMap<Integer, String>(); in TestUnicodeMapRandom()
340 map2.put(start, value); in TestUnicodeMapRandom()
341 check(map1, map2, counter); in TestUnicodeMapRandom()
343 checkNext(map1, map2, LIMIT); in TestUnicodeMapRandom()
352 Map<Integer, String> map2 = new HashMap<Integer, String>(); in TestUnicodeMapGeneralCategory()
355 map2 = new TreeMap<Integer,String>(); in TestUnicodeMapGeneralCategory()
361 map2.put(cp, value); in TestUnicodeMapGeneralCategory()
374 checkNext(map1, map2, Integer.MAX_VALUE); in TestUnicodeMapGeneralCategory()
377 check(map1, map2, -1); in TestUnicodeMapGeneralCategory()
380 Set<String> values2 = new TreeSet<String>(map2 in TestUnicodeMapGeneralCategory()
419 checkNext(UnicodeMap<String> map1, Map<Integer,String> map2, int limit) checkNext() argument
447 check(UnicodeMap<String> map1, Map<Integer,String> map2, int counter) check() argument
[all...]
/third_party/typescript/tests/baselines/reference/
H A DoperatorsAndIntersectionTypes.js17 let map2: { [x: number]: string } = {};
19 map2[serialNo] = "hello"; // Can index with tagged number
44 var map2 = {};
46 map2[serialNo] = "hello"; // Can index with tagged number
H A DcontextualSignatureInstantiation1.js6 declare function map2<S extends { length: number }, T>(f: (x: S) => T): (a: S[]) => T[];
8 var r100 = map2(e2); // type arg inference should fail for S since a generic lambda is not inferentially typed. Falls back to { length: number }
14 var r100 = map2(e2); // type arg inference should fail for S since a generic lambda is not inferentially typed. Falls back to { length: number }
/third_party/pulseaudio/src/tests/
H A Dchannelmap-test.c15 pa_channel_map map, map2; in START_TEST() local
33 pa_channel_map_parse(&map2, cm); in START_TEST()
35 fail_unless(pa_channel_map_equal(&map, &map2)); in START_TEST()
37 pa_channel_map_parse(&map2, "left,test"); in START_TEST()
/third_party/libphonenumber/tools/java/common/test/com/google/i18n/phonenumbers/
H A DMetadataFilterTest.java755 TreeMap<String, TreeSet<String>> map2 = new TreeMap<String, TreeSet<String>>(); in testComputeComplement_allAndNothing()
757 assertEquals(MetadataFilter.computeComplement(map1), map2); in testComputeComplement_allAndNothing()
758 assertEquals(MetadataFilter.computeComplement(map2), map1); in testComputeComplement_allAndNothing()
780 TreeMap<String, TreeSet<String>> map2 = new TreeMap<String, TreeSet<String>>(); in testComputeComplement_inBetween()
781 map2.put("sharedCost", new TreeSet<String>(MetadataFilter.excludableChildFields)); in testComputeComplement_inBetween()
782 map2.put("personalNumber", new TreeSet<String>(MetadataFilter.excludableChildFields)); in testComputeComplement_inBetween()
783 map2.put("voip", new TreeSet<String>(MetadataFilter.excludableChildFields)); in testComputeComplement_inBetween()
784 map2.put("pager", new TreeSet<String>(MetadataFilter.excludableChildFields)); in testComputeComplement_inBetween()
785 map2.put("uan", new TreeSet<String>(MetadataFilter.excludableChildFields)); in testComputeComplement_inBetween()
786 map2 in testComputeComplement_inBetween()
[all...]
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DSmallSortedMapTest.java103 SmallSortedMap<Integer, Integer> map2 = SmallSortedMap.newInstanceForTest(4); in runPutAndGetTest()
110 assertNull(map2.put(i, i + 1)); in runPutAndGetTest()
119 assertEquals(Math.min(4, numElements), map2.getNumArrayEntries()); in runPutAndGetTest()
126 allMaps.add(map2); in runPutAndGetTest()
137 assertEquals(map1, map2); in runPutAndGetTest()
138 assertEquals(map2, map3); in runPutAndGetTest()
/third_party/skia/third_party/externals/freetype/src/psnames/
H A Dpsmodule.c186 PS_UniMap* map2 = (PS_UniMap*)b; in compare_uni_maps() local
188 FT_UInt32 unicode2 = BASE_GLYPH( map2->unicode ); in compare_uni_maps()
194 if ( map1->unicode > map2->unicode ) in compare_uni_maps()
196 else if ( map1->unicode < map2->unicode ) in compare_uni_maps()
/third_party/icu/icu4c/source/test/intltest/
H A Dpluralmaptest.cpp131 PluralMapForPluralMapTest map2; in TestIterate() local
133 current = map2.next(index); in TestIterate()
136 current = map2.next(index); in TestIterate()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_test_image_copy_region.c98 uint8_t *map1, *map2; in set_random_pixels_for_2_textures() local
111 map2 = pipe_texture_map_3d(ctx, tex2, level_or_sample, PIPE_MAP_WRITE, 0, 0, 0, width, height, in set_random_pixels_for_2_textures()
113 assert(map1 && map2); in set_random_pixels_for_2_textures()
119 uint64_t *ptr2 = (uint64_t *)(map2 + t2->layer_stride * z + t2->stride * y); in set_random_pixels_for_2_textures()
176 uint8_t *map1, *map2; in compare_gpu_textures() local
185 map2 = pipe_texture_map_3d(ctx, tex2, level, PIPE_MAP_READ, 0, 0, 0, width, height, in compare_gpu_textures()
187 assert(map1 && map2); in compare_gpu_textures()
193 uint64_t *ptr2 = (uint64_t *)(map2 + t2->layer_stride * z + t2->stride * y); in compare_gpu_textures()
/third_party/ffmpeg/libavutil/
H A Dbase64.c35 static const uint8_t map2[256] = variable
75 bits = map2[in[i]]; \
/third_party/protobuf/src/google/protobuf/util/
H A Dmessage_differencer_unittest.cc3206 Map<std::string, std::string>& map2 = in TEST_F() local
3208 map2["key3"] = "0"; in TEST_F()
3209 map2["key2"] = "2"; in TEST_F()
3210 map2["key1"] = "1"; in TEST_F()
3222 Map<std::string, std::string>& map2 = in TEST_F() local
3224 map2["key4"] = "2"; in TEST_F()
3225 map2["key5"] = "3"; in TEST_F()
3226 map2["key6"] = "1"; in TEST_F()
3253 unittest::TestMap map2; in TEST_F() local
3263 "map_int32_foreign_message { key: 1 value { c: 2 }}", &map2)); in TEST_F()
3275 unittest::TestMap map2; TEST_F() local
[all...]
/third_party/node/test/parallel/
H A Dtest-util-isDeepStrictEqual.js371 const map2 = new Map([[1, '1']]);
372 assert.strictEqual(util.isDeepStrictEqual(map1, map2), false);
H A Dtest-assert-deep.js520 const map2 = new Map([[1, '1']]);
521 assert.deepEqual(map1, map2);
523 () => assert.deepStrictEqual(map1, map2),
/third_party/mesa3d/src/mesa/main/
H A Deval.c386 map2( GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, in map2() function
474 map2(target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, in _mesa_Map2f()
485 map2(target, (GLfloat) u1, (GLfloat) u2, ustride, uorder, in _mesa_Map2d()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DTrieMapTest.java321 Map<String, Integer> map2 = new TreeMap<String, Integer>(map); in timeBuilding()
332 Map<String, Integer> map2 = new HashMap<String, Integer>(map); in timeBuilding()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DTrieMapTest.java318 Map<String, Integer> map2 = new TreeMap<String, Integer>(map); in timeBuilding()
329 Map<String, Integer> map2 = new HashMap<String, Integer>(map); in timeBuilding()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/
H A DvktMemoryMappingTests.cpp1069 MemoryMapping* mapRandom (const DeviceInterface& vkd, VkDevice device, de::Random& rng, bool map2);
1070 void unmap (bool map2);
1121 MemoryMapping* MemoryObject::mapRandom (const DeviceInterface& vkd, VkDevice device, de::Random& rng, bool map2)
1129 mapMemoryWrapper(vkd, device, *m_memory, offset, size, &ptr, map2);
1136 void MemoryObject::unmap (bool map2)
1138 unmapMemoryWrapper(m_vkd, m_device, *m_memory, map2);

Completed in 25 milliseconds

12