/third_party/protobuf/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/ |
H A D | descriptor_test.py | 600 message_type = file_descriptor_proto.message_type.add() 602 field = message_type.field.add()
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | DescriptorMessageInfoFactory.java | 202 component.messages.add(node.descriptor); in dfs() 381 fieldsToCheckIsInitialized.add(fd.getNumber()); in convertProto2()
|
H A D | GeneratedMessage.java | 113 * The returned Map is modifialbe so that the caller can add additional 1152 * e.g. "get", "set", and "add" -- but for extensions. The extensions are 1860 result.add(singularFromReflectionType(element)); in fromReflectionType() 1908 result.add(singularToReflectionType(element)); in toReflectionType() 2429 getMethodOrDie(builderClass, "add" + camelCaseName, type); in RepeatedFieldAccessor() 2564 result.add(getRepeated(message, i)); in get() 2574 result.add(getRepeated(builder, i)); in get() 2624 getMutableMapField(builder).getMutableList().add((Message) value); in addRepeated() 2764 getMethodOrDie(builderClass, "add" + camelCaseName + "Value", int.class); in RepeatedEnumFieldAccessor() 2784 newList.add(getRepeate in get() [all...] |
/third_party/vk-gl-cts/scripts/ |
H A D | make_release.py | 164 # Build file objects, add to used set 166 usedFiles.add(file) 360 archive.add(dstBasePath, arcname=releaseName)
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelineMultisampleResolveRenderAreaTests.cpp | 466 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); in initPrograms() 481 programCollection.glslSources.add("frag") << glu::FragmentSource(frg.str()); in initPrograms()
|
H A D | vktPipelineMultisampleImageTests.cpp | 946 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); 967 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str()); 1086 programCollection.glslSources.add("sample_vert") << glu::VertexSource(src.str()); 1134 programCollection.glslSources.add("sample_frag") << glu::FragmentSource(src.str()); 1370 programCollection.glslSources.add("comp") << glu::ComputeSource(src.str()); 1677 programCollection.glslSources.add("sample_vert") << glu::VertexSource(src.str()); 1708 programCollection.glslSources.add("sample_frag") << glu::FragmentSource(src.str());
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
H A D | vktRenderPassDepthStencilWriteConditionsTests.cpp | 544 programCollection.spirvAsmSources.add("frag") << fragmentSrc.str().c_str(); in initPrograms() 545 programCollection.glslSources.add("vert") << glu::VertexSource(vertexSrc.str()); in initPrograms()
|
H A D | vktRenderPassFragmentDensityMapTests.cpp | 486 // add color image in createRenderPassProduceSubsampledImage() 505 // add resolve image when we use more than one sample per fragment in createRenderPassProduceSubsampledImage() 523 // add color image copy ( when render_copy is used ) in createRenderPassProduceSubsampledImage() 541 // add density map in createRenderPassProduceSubsampledImage() 561 // for multisampled scenario we need to add resolve attachment in createRenderPassProduceSubsampledImage() 1219 sourceCollections.glslSources.add("vert") << glu::VertexSource( in initPrograms() 1235 sourceCollections.glslSources.add("frag_produce_subsampled") << glu::FragmentSource( in initPrograms() 1248 sourceCollections.glslSources.add("frag_update_subsampled") << glu::FragmentSource( in initPrograms() 1263 sourceCollections.glslSources.add("frag_copy_subsampled") << glu::FragmentSource( in initPrograms() 1277 sourceCollections.glslSources.add("frag_copy_subsampled_m in initPrograms() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/subgroups/ |
H A D | vktSubgroupsVoteTests.cpp | 246 programCollection.glslSources.add("vert") << glu::VertexSource(vertex) << buildOptions; in initFrameBufferProgramsFrag() 278 programCollection.glslSources.add("fragment") << glu::FragmentSource(fragmentSource.str())<< buildOptions; in initFrameBufferProgramsFrag()
|
/third_party/ffmpeg/libavcodec/ |
H A D | hevcdsp_template.c | 132 #define SCALE(dst, x) (dst) = av_clip_int16(((x) + add) >> shift) 153 int add = 1 << (shift - 1); in transform_4x4_luma() local 162 add = 1 << (shift - 1); in transform_4x4_luma() 246 int add = 1 << (shift - 1); \ 258 add = 1 << (shift - 1); \ 270 int add = 1 << (shift - 1); \ 271 int coeff = (((coeffs[0] + 1) >> 1) + add) >> shift; \
|
H A D | adpcm.c | 357 int delta, pred, step, add; in adpcm_agm_expand_nibble() local 362 add = (delta * 2 + 1) * step; in adpcm_agm_expand_nibble() 363 if (add < 0) in adpcm_agm_expand_nibble() 364 add = add + 7; in adpcm_agm_expand_nibble() 367 pred = av_clip(pred + (add >> 3), -32767, 32767); in adpcm_agm_expand_nibble() 369 pred = av_clip(pred - (add >> 3), -32767, 32767); in adpcm_agm_expand_nibble() 2309 /* Note: Do not forget to add new entries to the Makefile as well. */
|
/third_party/musl/porting/liteos_m/kernel/src/regex/ |
H A D | regcomp.c | 1336 /* Regset is not empty, so add a tag before the in tre_add_tags() 1422 /* Regset is not empty, so add a tag here. */ in tre_add_tags() 1493 /* Regset is not empty, so add a tag here. */ in tre_add_tags() 2584 /* Don't add duplicates. */ in tre_make_trans() 2697 int i, add = 0; in regcomp() local 2822 add = 0; in regcomp() 2825 offs[i] = add; in regcomp() 2826 add += counts[i] + 1; in regcomp() 2829 transitions = xcalloc((unsigned)add + 1, sizeof(*transitions)); in regcomp() 2833 tnfa->num_transitions = add; in regcomp() [all...] |
/third_party/musl/porting/liteos_m_iccarm/kernel/src/regex/ |
H A D | regcomp.c | 1337 /* Regset is not empty, so add a tag before the in tre_add_tags() 1423 /* Regset is not empty, so add a tag here. */ in tre_add_tags() 1494 /* Regset is not empty, so add a tag here. */ in tre_add_tags() 2585 /* Don't add duplicates. */ in tre_make_trans() 2698 int i, add = 0; in regcomp() local 2823 add = 0; in regcomp() 2826 offs[i] = add; in regcomp() 2827 add += counts[i] + 1; in regcomp() 2830 transitions = xcalloc((unsigned)add + 1, sizeof(*transitions)); in regcomp() 2834 tnfa->num_transitions = add; in regcomp() [all...] |
/third_party/musl/porting/uniproton/kernel/src/regex/ |
H A D | regcomp.c | 1336 /* Regset is not empty, so add a tag before the in tre_add_tags() 1422 /* Regset is not empty, so add a tag here. */ in tre_add_tags() 1493 /* Regset is not empty, so add a tag here. */ in tre_add_tags() 2584 /* Don't add duplicates. */ in tre_make_trans() 2697 int i, add = 0; in regcomp() local 2822 add = 0; in regcomp() 2825 offs[i] = add; in regcomp() 2826 add += counts[i] + 1; in regcomp() 2829 transitions = xcalloc((unsigned)add + 1, sizeof(*transitions)); in regcomp() 2833 tnfa->num_transitions = add; in regcomp() [all...] |
/third_party/musl/src/regex/ |
H A D | regcomp.c | 1336 /* Regset is not empty, so add a tag before the in tre_add_tags() 1422 /* Regset is not empty, so add a tag here. */ in tre_add_tags() 1493 /* Regset is not empty, so add a tag here. */ in tre_add_tags() 2584 /* Don't add duplicates. */ in tre_make_trans() 2697 int i, add = 0; in regcomp() local 2822 add = 0; in regcomp() 2825 offs[i] = add; in regcomp() 2826 add += counts[i] + 1; in regcomp() 2829 transitions = xcalloc((unsigned)add + 1, sizeof(*transitions)); in regcomp() 2833 tnfa->num_transitions = add; in regcomp() [all...] |
/third_party/node/deps/openssl/openssl/ |
H A D | Configure | 52 # --config add the given configuration file, which will be read after 1483 # If threads still aren't disabled, add a C macro to ensure the source 1773 ? add($si->{$_})->($target{$_}) 2588 # If we depend on a header file or a perl module, add an inclusion of 2763 # they end up in where applicable. Then, add build rules for those 2934 return sub { add($opts{default} || (), 2946 return sub { add(@stuff)->(); } 2956 return sub { add($disabled{threads} ? () : @flags)->(); } 2961 return sub { add($disabled{shared} ? () : @flags)->(); } 3010 sub add { subroutine [all...] |
/third_party/python/Lib/ |
H A D | inspect.py | 556 # add any DynamicClassAttributes to the list of names if object is a class; 588 processed.add(key) 724 processed.add(name) 1630 unbound_names.add(name) 2056 # Unless we add a new parameter type we never 2128 add = text.append 2166 add(', ') 2167 add(string) 2169 add(' ') 3255 # rendered an '*args'-like parameter before, so add [all...] |
/third_party/openssl/ |
H A D | Configure | 52 # --config add the given configuration file, which will be read after 1480 # If threads still aren't disabled, add a C macro to ensure the source 1770 ? add($si->{$_})->($target{$_}) 2583 # If we depend on a header file or a perl module, add an inclusion of 2758 # they end up in where applicable. Then, add build rules for those 2929 return sub { add($opts{default} || (), 2941 return sub { add(@stuff)->(); } 2951 return sub { add($disabled{threads} ? () : @flags)->(); } 2956 return sub { add($disabled{shared} ? () : @flags)->(); } 3005 sub add { subroutine [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineMultisampleImageTests.cpp | 950 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); 971 programCollection.glslSources.add("frag") << glu::FragmentSource(src.str()); 1095 programCollection.glslSources.add("sample_vert") << glu::VertexSource(src.str()); 1143 programCollection.glslSources.add("sample_frag") << glu::FragmentSource(src.str()); 1382 programCollection.glslSources.add("comp") << glu::ComputeSource(src.str()); 1689 programCollection.glslSources.add("sample_vert") << glu::VertexSource(src.str()); 1720 programCollection.glslSources.add("sample_frag") << glu::FragmentSource(src.str());
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
H A D | vktRenderPassFragmentDensityMapTests.cpp | 490 // add color image in createRenderPassProduceSubsampledImage() 509 // add resolve image when we use more than one sample per fragment in createRenderPassProduceSubsampledImage() 527 // add color image copy ( when render_copy is used ) in createRenderPassProduceSubsampledImage() 545 // add density map in createRenderPassProduceSubsampledImage() 565 // for multisampled scenario we need to add resolve attachment in createRenderPassProduceSubsampledImage() 1263 sourceCollections.glslSources.add("vert") << glu::VertexSource(tcu::StringTemplate(vertSourceTemplate).specialize(parameters)); in initPrograms() 1265 sourceCollections.glslSources.add("frag_produce_subsampled") << glu::FragmentSource( in initPrograms() 1278 sourceCollections.glslSources.add("frag_update_subsampled") << glu::FragmentSource( in initPrograms() 1293 sourceCollections.glslSources.add("frag_copy_subsampled") << glu::FragmentSource( in initPrograms() 1307 sourceCollections.glslSources.add("frag_copy_subsampled_m in initPrograms() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/ |
H A D | vktTessellationInvarianceTests.cpp | 259 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); in addDefaultPrograms() 283 programCollection.glslSources.add("tesc") << glu::TessellationControlSource(src.str()); in addDefaultPrograms() 357 programCollection.glslSources.add(getProgramName("tese", *windingIter, *usePointModeIter)) << glu::TessellationEvaluationSource(src.str()); in addDefaultPrograms() 409 programCollection.glslSources.add(getProgramName("geom", *usePointModeIter, writePointSize)) << glu::GeometrySource(src.str()); in addDefaultPrograms() 1963 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); in initPrograms() 1987 programCollection.glslSources.add("tesc") << glu::TessellationControlSource(src.str()); in initPrograms() 2040 programCollection.glslSources.add(getProgramName("tese", writePointSize)) << glu::TessellationEvaluationSource(src.str()); in initPrograms() 2065 // We may get more invocations than expected, so add some more space (arbitrary number). in test()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/fragment_shading_rate/ |
H A D | vktAttachmentRateTests.cpp | 994 // find proper set in map and add value to it after doing verification with existing items in verifyUsingAtomicChecks() 2240 programCollection.glslSources.add("comp") << glu::ComputeSource(compStream.str()); in initPrograms() 2265 programCollection.glslSources.add("vert0") << glu::VertexSource(vertTemplate.specialize(specializationMap)); in initPrograms() 2269 programCollection.glslSources.add("vert1") << glu::VertexSource(vertTemplate.specialize(specializationMap)); in initPrograms() 2273 programCollection.glslSources.add("vert") << glu::VertexSource(vertTemplate.specialize(specializationMap)); in initPrograms() 2281 programCollection.glslSources.add("vert_setup") << glu::VertexSource(vertTemplate.specialize(specializationMap)); in initPrograms() 2291 programCollection.glslSources.add("frag_setup") << glu::FragmentSource(fragStream.str()); in initPrograms() 2306 programCollection.glslSources.add("frag") << glu::FragmentSource(frag); in initPrograms()
|
/third_party/skia/third_party/externals/libpng/ |
H A D | png.c | 1388 * In the last equation color-z is (1 - color-x - color-y) so we can add all in png_XYZ_from_xy() 1882 * coefficients of (6968,23435,2366), which are reduced (because they add up in png_colorspace_set_sRGB() 2205 /* First scan all the tags in the table and add bits to the icc_info value in png_icc_check_tag_table() 2494 int add = 0; in png_colorspace_set_rgb_coefficients() local 2497 add = -1; in png_colorspace_set_rgb_coefficients() 2499 add = 1; in png_colorspace_set_rgb_coefficients() 2501 if (add != 0) in png_colorspace_set_rgb_coefficients() 2504 g += add; in png_colorspace_set_rgb_coefficients() 2506 r += add; in png_colorspace_set_rgb_coefficients() 2508 b += add; in png_colorspace_set_rgb_coefficients() [all...] |
/third_party/python/Lib/test/ |
H A D | test_weakref.py | 1987 def add(x,y,z): function 1994 f = weakref.finalize(a, add, 67, 43, z=89) 1996 self.assertEqual(f.peek(), (a, add, (67,43), {'z':89})) 2006 f = weakref.finalize(a, add, 67, 43, 89) 2007 self.assertEqual(f.peek(), (a, add, (67,43,89), {})) 2008 self.assertEqual(f.detach(), (a, add, (67,43,89), {})) 2017 f = weakref.finalize(a, add, x=67, y=43, z=89)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | HexagonFrameLowering.cpp | 544 // In such case, we need to add the callee-saved registers as live-ins in emitPrologue() 700 // sure that we don't add an extra one. in insertEpilogueInBlock() 716 // otherwise just add deallocframe. The function could be returning via a in insertEpilogueInBlock() 824 // We don't want to add unnecessary live-ins to the restore block: since in updateExitPaths() 1471 // (1) For each callee-saved register, add that register and all of its in assignCalleeSavedSpillSlots() 1614 BuildMI(B, It, DL, HII.get(TargetOpcode::COPY), TmpR).add(MI->getOperand(1)); in expandCopy() 2190 RL.add(LastStore[FI], LastLoad[FI], false, false); in optimizeSpillSlots() 2192 RL.add(IndexType::Entry, LastLoad[FI], false, false); in optimizeSpillSlots() 2208 RL.add(LS, LL, false, false); in optimizeSpillSlots() 2210 RL.add(IndexTyp in optimizeSpillSlots() [all...] |