Home
last modified time | relevance | path

Searched refs:doubles (Results 1 - 15 of 15) sorted by relevance

/third_party/protobuf/csharp/src/Google.Protobuf.Test/Collections/
H A DProtobufEqualityComparersTest.cs42 private static readonly double[] doubles = field in Google.Protobuf.Collections.ProtobufEqualityComparersTest
79 ValidateEqualityComparer(BitwiseDoubleEqualityComparer, doubles); in DoubleComparisons()
85 ValidateEqualityComparer(BitwiseNullableDoubleEqualityComparer, doubles.Select(d => (double?) d).Concat(new double?[] { null })); in NullableDoubleComparisons()
91 ValidateEqualityComparer(BitwiseSingleEqualityComparer, doubles.Select(d => (float) d)); in SingleComparisons()
97 ValidateEqualityComparer(BitwiseNullableSingleEqualityComparer, doubles.Select(d => (float?) d).Concat(new float?[] { null })); in NullableSingleComparisons()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/
H A Dconvert_test.cc683 std::vector<double> doubles = {0.0, in TEST_F() local
700 doubles.push_back(0.99999999999999989); in TEST_F()
703 doubles.push_back(std::numeric_limits<double>::denorm_min()); in TEST_F()
704 doubles.push_back(-std::numeric_limits<double>::denorm_min()); in TEST_F()
712 doubles.push_back(sign * std::ldexp(base, exp)); in TEST_F()
729 doubles.push_back(std::ldexp(all_ones_mantissa, exp)); in TEST_F()
731 skip_verify.insert(doubles.back()); in TEST_F()
746 std::sort(doubles.begin(), doubles.end()); in TEST_F()
747 doubles in TEST_F()
1074 std::vector<long double> doubles = { TEST_F() local
[all...]
/third_party/mesa3d/src/mesa/vbo/
H A Dvbo_private.h252 const GLboolean doubles = vbo_attrtype_to_double_flag(type); in _vbo_set_attrib_format() local
254 if (doubles) in _vbo_set_attrib_format()
257 GL_FALSE, integer, doubles, offset); in _vbo_set_attrib_format()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
H A DStackContainerTests.cpp122 StackVector<double, 1> doubles; in TEST() local
123 doubles->push_back(0.0); in TEST()
124 EXPECT_ALIGNED(&doubles[0], alignof(double)); in TEST()
/third_party/mesa3d/src/mesa/main/
H A Dvarray.h49 GLboolean doubles);
80 GLboolean integer, GLboolean doubles,
H A Dvarray.c480 bool normalized, bool integer, bool doubles) in vertex_format_to_pipe_format()
485 /* Raw doubles use 64_UINT. */ in vertex_format_to_pipe_format()
486 if (doubles) in vertex_format_to_pipe_format()
549 GLboolean doubles) in _mesa_set_vertex_format()
557 vertex_format->Doubles = doubles; in _mesa_set_vertex_format()
562 doubles); in _mesa_set_vertex_format()
642 * \param doubles Double values not reduced to floats
651 GLboolean integer, GLboolean doubles, in _mesa_update_array_format()
661 normalized, integer, doubles); in _mesa_update_array_format()
690 * \param doubles Doubl
479 vertex_format_to_pipe_format(GLubyte size, GLenum16 type, GLenum16 format, bool normalized, bool integer, bool doubles) vertex_format_to_pipe_format() argument
546 _mesa_set_vertex_format(struct gl_vertex_format *vertex_format, GLubyte size, GLenum16 type, GLenum16 format, GLboolean normalized, GLboolean integer, GLboolean doubles) _mesa_set_vertex_format() argument
647 _mesa_update_array_format(struct gl_context *ctx, struct gl_vertex_array_object *vao, gl_vert_attrib attrib, GLint size, GLenum type, GLenum format, GLboolean normalized, GLboolean integer, GLboolean doubles, GLuint relativeOffset) _mesa_update_array_format() argument
695 validate_array_format(struct gl_context *ctx, const char *func, struct gl_vertex_array_object *vao, GLuint attrib, GLbitfield legalTypesMask, GLint sizeMin, GLint sizeMax, GLint size, GLenum type, bool normalized, bool integer, bool doubles, GLuint relativeOffset, GLenum format) validate_array_format() argument
819 validate_array(struct gl_context *ctx, const char *func, struct gl_vertex_array_object *vao, struct gl_buffer_object *obj, GLuint attrib, GLbitfield legalTypesMask, GLint sizeMin, GLint sizeMax, GLint size, GLenum type, GLsizei stride, GLboolean normalized, GLboolean integer, GLboolean doubles, const GLvoid *ptr) validate_array() argument
877 validate_array_and_format(struct gl_context *ctx, const char *func, struct gl_vertex_array_object *vao, struct gl_buffer_object *obj, GLuint attrib, GLbitfield legalTypes, GLint sizeMin, GLint sizeMax, GLint size, GLenum type, GLsizei stride, GLboolean normalized, GLboolean integer, GLboolean doubles, GLenum format, const GLvoid *ptr) validate_array_and_format() argument
912 update_array(struct gl_context *ctx, struct gl_vertex_array_object *vao, struct gl_buffer_object *obj, GLuint attrib, GLenum format, GLint sizeMax, GLint size, GLenum type, GLsizei stride, GLboolean normalized, GLboolean integer, GLboolean doubles, const GLvoid *ptr) update_array() argument
3373 vertex_attrib_format(GLuint attribIndex, GLint size, GLenum type, GLboolean normalized, GLboolean integer, GLboolean doubles, GLbitfield legalTypes, GLsizei sizeMax, GLuint relativeOffset, const char *func) vertex_attrib_format() argument
3466 vertex_array_attrib_format(GLuint vaobj, bool isExtDsa, GLuint attribIndex, GLint size, GLenum type, GLboolean normalized, GLboolean integer, GLboolean doubles, GLbitfield legalTypes, GLsizei sizeMax, GLuint relativeOffset, const char *func) vertex_array_attrib_format() argument
[all...]
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Dcompound-sizes.c59 static double doubles[84]; variable
86 compound-sizes.c:59:25: double static [toplevel] doubles[84]: compound size 672, alignment 8
/third_party/icu/tools/colprobe/
H A Dcolprobe.cpp897 // Create and compare doubles: in detectContractions()
917 // Show the sorted doubles, for debugging in detectContractions()
1025 Line *doubles = new Line[size*10]; in detectExpansions() local
1059 // construct the doubles in detectExpansions()
1061 doubles[newSize].suffix = current->expansionAfter[i]-1; in detectExpansions()
1062 doubles[newSize++].setToConcat(*(gLines+current->expansionPrefixes[i]), *(gLines+current->expansionAfter[i]-1)); in detectExpansions()
1063 doubles[newSize].suffix = current->expansionAfter[i]; in detectExpansions()
1064 doubles[newSize++].setToConcat(*(gLines+current->expansionPrefixes[i]), *(gLines+current->expansionAfter[i])); in detectExpansions()
1067 doubles[newSize++] = *current; in detectExpansions()
1068 setArray(sorter, doubles, newSiz in detectExpansions()
[all...]
/third_party/mesa3d/src/microsoft/compiler/
H A Ddxil_module.h135 unsigned doubles : 1, member
H A Ddxil_dump.c154 PRINT_FEAT(doubles); in dump_features()
H A Dnir_to_dxil.c1460 if (ctx->mod.feats.doubles) in get_module_flags()
1724 ctx->mod.feats.doubles = true; in store_dest()
1783 assert(nir_src_bit_size(*src) != 64 || ctx->mod.feats.doubles); in get_src()
2180 ctx->mod.feats.doubles = 1; in emit_b2f64()
/third_party/node/deps/openssl/openssl/
H A DConfigure2259 my @doubles = ();
2262 push @doubles, $l if defined $unified_info{libraries}->{$l};
2265 join(" ", @doubles), "\n"
2266 if @doubles;
/third_party/openssl/
H A DConfigure2254 my @doubles = ();
2257 push @doubles, $l if defined $unified_info{libraries}->{$l};
2260 join(" ", @doubles), "\n"
2261 if @doubles;
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DNumberFormatTest.java3054 String[] doubles = { in TestParseReturnType()
3089 for (int i = 0; i < doubles.length; i++) { in TestParseReturnType()
3091 Number n = nf.parse(doubles[i]); in TestParseReturnType()
3096 errln("parse of '" + doubles[i] + "' threw exception: " + e); in TestParseReturnType()
3119 for (int i = 0; i < doubles.length; i++) { in TestParseReturnType()
3121 Number n = nf.parse(doubles[i]); in TestParseReturnType()
3126 errln("parse of '" + doubles[i] + "' threw exception: " + e); in TestParseReturnType()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DNumberFormatTest.java3051 String[] doubles = { in TestParseReturnType()
3086 for (int i = 0; i < doubles.length; i++) { in TestParseReturnType()
3088 Number n = nf.parse(doubles[i]); in TestParseReturnType()
3093 errln("parse of '" + doubles[i] + "' threw exception: " + e); in TestParseReturnType()
3116 for (int i = 0; i < doubles.length; i++) { in TestParseReturnType()
3118 Number n = nf.parse(doubles[i]); in TestParseReturnType()
3123 errln("parse of '" + doubles[i] + "' threw exception: " + e); in TestParseReturnType()

Completed in 53 milliseconds