/third_party/protobuf/js/experimental/runtime/kernel/ |
H A D | kernel.js | 88 * methods and return an Iterable containing those converted values. 125 * read function and return an Array containing those converted values. This is 145 * read function and return an Array containing those converted values. This is 290 * @param {!Iterable<!InternalMessage>} values 292 function writeRepeatedMessage(writer, fieldNumber, values) { 293 for (const value of values) { 302 * @param {!Array<!InternalMessage>} values 304 function writeRepeatedGroup(writer, fieldNumber, values) { 305 for (const value of values) { 606 * Note: Since g.m.Long does not support unsigned int64 values w [all...] |
H A D | writer.js | 477 * Writes repeated boolean values to the buffer as unpacked varints. 479 * @param {!Array<boolean>} values 481 writeRepeatedBool(fieldNumber, values) { 482 values.forEach(val => this.writeBool(fieldNumber, val)); 486 * Writes repeated boolean values to the buffer as packed varints. 488 * @param {!Array<boolean>} values 490 writePackedBool(fieldNumber, values) { 492 fieldNumber, values, val => this.writeBoolValue_(val), 1); 496 * Writes repeated double values to the buffer as unpacked fixed64. 498 * @param {!Array<number>} values [all...] |
/third_party/vk-gl-cts/external/amber/src/src/vulkan/ |
H A D | vertex_buffer_test.cc | 149 Result SetData(uint8_t location, Format* format, std::vector<Value> values) { in SetData() argument 152 buffer->SetData(std::move(values)); in SetData() 171 std::vector<Value> values(4); in TEST_F() 172 values[0].SetIntValue(55); in TEST_F() 173 values[1].SetIntValue(3); in TEST_F() 174 values[2].SetIntValue(27); in TEST_F() 175 values[3].SetIntValue(255); in TEST_F() 180 Result r = SetData(0, &fmt, values); in TEST_F() 190 std::vector<Value> values(4); in TEST_F() 191 values[ in TEST_F() [all...] |
/third_party/skia/third_party/externals/tint/src/ast/ |
H A D | workgroup_decoration_test.cc | 28 auto values = d->Values(); in TEST_F() local 30 ASSERT_TRUE(values[0]->Is<ast::IntLiteralExpression>()); in TEST_F() 31 EXPECT_EQ(values[0]->As<ast::IntLiteralExpression>()->ValueAsU32(), 2u); in TEST_F() 33 EXPECT_EQ(values[1], nullptr); in TEST_F() 34 EXPECT_EQ(values[2], nullptr); in TEST_F() 38 auto values = d->Values(); in TEST_F() local 40 ASSERT_TRUE(values[0]->Is<ast::IntLiteralExpression>()); in TEST_F() 41 EXPECT_EQ(values[0]->As<ast::IntLiteralExpression>()->ValueAsU32(), 2u); in TEST_F() 43 ASSERT_TRUE(values[1]->Is<ast::IntLiteralExpression>()); in TEST_F() 44 EXPECT_EQ(values[ in TEST_F() 51 auto values = d->Values(); TEST_F() local 65 auto values = d->Values(); TEST_F() local [all...] |
/third_party/mesa3d/.gitlab-ci/b2c/ |
H A D | generate_b2c.py | 61 values = {} variable 62 values['ci_job_id'] = args.ci_job_id 63 values['container_cmd'] = args.container_cmd 64 values['initramfs_url'] = args.initramfs_url 65 values['job_success_regex'] = args.job_success_regex 66 values['job_warn_regex'] = args.job_warn_regex 67 values['kernel_url'] = args.kernel_url 68 values['log_level'] = args.log_level 69 values['poweroff_delay'] = args.poweroff_delay 70 values['session_end_rege [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/numeric/ |
H A D | int128_benchmark.cc | 39 std::vector<std::pair<T, T>> values; in GetRandomClass128SampleUniformDivisor() local 42 values.reserve(kSampleSize); in GetRandomClass128SampleUniformDivisor() 46 values.emplace_back(std::max(a, b), std::max(T(2), std::min(a, b))); in GetRandomClass128SampleUniformDivisor() 48 return values; in GetRandomClass128SampleUniformDivisor() 53 auto values = GetRandomClass128SampleUniformDivisor<T>(); in BM_DivideClass128UniformDivisor() local 54 while (state.KeepRunningBatch(values.size())) { in BM_DivideClass128UniformDivisor() 55 for (const auto& pair : values) { in BM_DivideClass128UniformDivisor() 65 auto values = GetRandomClass128SampleUniformDivisor<T>(); in BM_RemainderClass128UniformDivisor() local 66 while (state.KeepRunningBatch(values.size())) { in BM_RemainderClass128UniformDivisor() 67 for (const auto& pair : values) { in BM_RemainderClass128UniformDivisor() 79 std::vector<std::pair<T, H>> values; GetRandomClass128SampleSmallDivisor() local 93 auto values = GetRandomClass128SampleSmallDivisor<T>(); BM_DivideClass128SmallDivisor() local 105 auto values = GetRandomClass128SampleSmallDivisor<T>(); BM_RemainderClass128SmallDivisor() local 116 std::vector<std::pair<absl::uint128, absl::uint128>> values; GetRandomClass128Sample() local 129 auto values = GetRandomClass128Sample(); BM_MultiplyClass128() local 139 auto values = GetRandomClass128Sample(); BM_AddClass128() local 170 std::vector<std::pair<T, T>> values; GetRandomIntrinsic128SampleUniformDivisor() local 185 auto values = GetRandomIntrinsic128SampleUniformDivisor<T>(); BM_DivideIntrinsic128UniformDivisor() local 197 auto values = GetRandomIntrinsic128SampleUniformDivisor<T>(); BM_RemainderIntrinsic128UniformDivisor() local 211 std::vector<std::pair<T, H>> values; GetRandomIntrinsic128SampleSmallDivisor() local 226 auto values = GetRandomIntrinsic128SampleSmallDivisor<T>(); BM_DivideIntrinsic128SmallDivisor() local 238 auto values = GetRandomIntrinsic128SampleSmallDivisor<T>(); BM_RemainderIntrinsic128SmallDivisor() local 250 std::vector<std::pair<unsigned __int128, unsigned __int128>> values; GetRandomIntrinsic128Sample() local 261 auto values = GetRandomIntrinsic128Sample(); BM_MultiplyIntrinsic128() local 271 auto values = GetRandomIntrinsic128Sample(); BM_AddIntrinsic128() local [all...] |
/third_party/vk-gl-cts/external/amber/src/src/ |
H A D | verifier_test.cc | 678 std::vector<Value> values; in TEST_F() local 679 values.emplace_back(); in TEST_F() 680 values.back().SetIntValue(13); in TEST_F() 681 probe_ssbo.SetValues(std::move(values)); in TEST_F() 704 std::vector<Value> values; in TEST_F() local 705 values.resize(3); in TEST_F() 706 values[0].SetIntValue(2); in TEST_F() 707 values[1].SetIntValue(0); in TEST_F() 708 values[2].SetIntValue(10); in TEST_F() 709 probe_ssbo.SetValues(std::move(values)); in TEST_F() 731 std::vector<Value> values; TEST_F() local 762 std::vector<Value> values; TEST_F() local 788 std::vector<Value> values; TEST_F() local 816 std::vector<Value> values; TEST_F() local 847 std::vector<Value> values; TEST_F() local 873 std::vector<Value> values; TEST_F() local 901 std::vector<Value> values; TEST_F() local 932 std::vector<Value> values; TEST_F() local 958 std::vector<Value> values; TEST_F() local 986 std::vector<Value> values; TEST_F() local 1017 std::vector<Value> values; TEST_F() local 1051 std::vector<Value> values; TEST_F() local 1088 std::vector<Value> values; TEST_F() local 1122 std::vector<Value> values; TEST_F() local 1159 std::vector<Value> values; TEST_F() local 1189 std::vector<Value> values; TEST_F() local 1217 std::vector<Value> values; TEST_F() local 1247 std::vector<Value> values; TEST_F() local 1275 std::vector<Value> values; TEST_F() local 1305 std::vector<Value> values; TEST_F() local 1333 std::vector<Value> values; TEST_F() local 1363 std::vector<Value> values; TEST_F() local 1391 std::vector<Value> values; TEST_F() local 1421 std::vector<Value> values; TEST_F() local 1449 std::vector<Value> values; TEST_F() local 1509 std::vector<Value> values; TEST_F() local 1539 std::vector<Value> values; TEST_F() local 1571 std::vector<Value> values; TEST_F() local 1588 std::vector<Value> values; TEST_F() local 1605 std::vector<Value> values; TEST_F() local [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | unordered_map_lookup_test.h | 34 std::vector<T> values; in TYPED_TEST_P() 35 std::generate_n(std::back_inserter(values), 10, in TYPED_TEST_P() 37 TypeParam m(values.begin(), values.end()); in TYPED_TEST_P() 38 for (const auto& p : values) { in TYPED_TEST_P() 47 std::vector<T> values; in TYPED_TEST_P() 48 std::generate_n(std::back_inserter(values), 10, in TYPED_TEST_P() 51 for (const auto& p : values) { in TYPED_TEST_P() 56 for (const auto& p : values) in TYPED_TEST_P() 62 std::vector<T> values; in TYPED_TEST_P() [all...] |
H A D | unordered_set_modifiers_test.h | 34 std::vector<T> values; in TYPED_TEST_P() 35 std::generate_n(std::back_inserter(values), 10, in TYPED_TEST_P() 37 TypeParam m(values.begin(), values.end()); in TYPED_TEST_P() 38 ASSERT_THAT(keys(m), ::testing::UnorderedElementsAreArray(values)); in TYPED_TEST_P() 69 std::vector<T> values; in TYPED_TEST_P() 70 std::generate_n(std::back_inserter(values), 10, in TYPED_TEST_P() 73 m.insert(values.begin(), values.end()); in TYPED_TEST_P() 74 ASSERT_THAT(keys(m), ::testing::UnorderedElementsAreArray(values)); in TYPED_TEST_P() 95 std::vector<T> values; TYPED_TEST_P() local [all...] |
H A D | unordered_set_lookup_test.h | 34 std::vector<T> values; in TYPED_TEST_P() 35 std::generate_n(std::back_inserter(values), 10, in TYPED_TEST_P() 38 for (const auto& v : values) in TYPED_TEST_P() 40 m.insert(values.begin(), values.end()); in TYPED_TEST_P() 41 for (const auto& v : values) in TYPED_TEST_P() 47 std::vector<T> values; in TYPED_TEST_P() 48 std::generate_n(std::back_inserter(values), 10, in TYPED_TEST_P() 51 for (const auto& v : values) in TYPED_TEST_P() 53 m.insert(values in TYPED_TEST_P() [all...] |
/third_party/node/deps/npm/node_modules/gauge/lib/ |
H A D | render-template.js | 8 function renderValueWithValues (values) { 10 return renderValue(item, values) 14 var renderTemplate = module.exports = function (width, template, values) { 15 var items = prepareItems(width, template, values) 16 var rendered = items.map(renderValueWithValues(values)).join('') 30 function hasPreOrPost (item, values) { 34 return values[preType(item)] || values[postType(item)] 39 var values = Object.create(parentValues) 43 if (values[pr [all...] |
/third_party/vk-gl-cts/scripts/khr_util/ |
H A D | gen_str_util.py | 29 def allValuesUndefined (definitions, values): 30 for value in values: 35 def anyValueDefined (definitions, values): 36 return not allValuesUndefined(definitions, values) 46 for groupName, values in enumGroups: 47 if anyValueDefined(definitions, values): 53 for groupName, values in bitfieldGroups: 54 if anyValueDefined(definitions, values): 60 for groupName, values in enumGroups: 61 if anyValueDefined(definitions, values) [all...] |
/third_party/node/benchmark/assert/ |
H A D | deepequal-set.js | 21 function benchmark(method, n, values, values2) { 22 const actual = new Set(values); 24 const deepCopy = JSON.parse(JSON.stringify(values2 ? values2 : values)); 38 const values = array.map((_, i) => `str_${i}`); 39 benchmark(strict ? deepStrictEqual : deepEqual, n, values); 43 const values = array.map((_, i) => [`str_${i}`, null]); 44 benchmark(strict ? deepStrictEqual : deepEqual, n, values); 48 const values = array.map((_, i) => { 51 benchmark(strict ? deepStrictEqual : deepEqual, n, values); 55 const values [all...] |
H A D | deepequal-map.js | 21 function benchmark(method, n, values, values2) { 22 const actual = new Map(values); 24 const deepCopy = JSON.parse(JSON.stringify(values2 ? values2 : values)); 38 const values = array.map((_, i) => [`str_${i}`, 123]); 39 benchmark(strict ? deepStrictEqual : deepEqual, n, values); 43 const values = array.map((_, i) => [[`str_${i}`, 1], 123]); 44 benchmark(strict ? deepStrictEqual : deepEqual, n, values); 48 const values = array.map( 51 benchmark(strict ? deepStrictEqual : deepEqual, n, values); 55 const values [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | useObjectValuesAndEntries1.js | 4 for (var x of Object.values(o)) { 9 var values = Object.values(o); // number[] 12 var values1 = Object.values(1); // any[] 15 var values2 = Object.values({ a: true, b: 2 }); // (number|boolean)[] 18 var values3 = Object.values({}); // {}[] 22 var values4 = Object.values(a); // string[] 26 var values5 = Object.values(E); // any[] 31 var values6 = Object.values(i); // any[]
35 for (var _i = 0, _a = Object.values( [all...] |
/third_party/gn/src/gn/ |
H A D | function_filter_unittest.cc | 13 Value values(nullptr, Value::LIST); in TEST() 14 values.list_value().push_back(Value(nullptr, "foo.cc")); in TEST() 15 values.list_value().push_back(Value(nullptr, "foo.h")); in TEST() 16 values.list_value().push_back(Value(nullptr, "foo.proto")); in TEST() 22 std::vector<Value> args = {values, patterns}; in TEST() 39 Value values(nullptr, Value::LIST); in TEST() 40 values.list_value().push_back(Value(nullptr, "foo.cc")); in TEST() 41 values.list_value().push_back(Value(nullptr, "foo.h")); in TEST() 42 values.list_value().push_back(Value(nullptr, "foo.proto")); in TEST() 45 std::vector<Value> args = {values}; in TEST() [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
H A D | seed_material.cc | 88 bool ReadSeedMaterialFromOSEntropyImpl(absl::Span<uint32_t> values) { in ReadSeedMaterialFromOSEntropyImpl() argument 99 reinterpret_cast<UCHAR*>(values.data()), // buffer in ReadSeedMaterialFromOSEntropyImpl() 100 static_cast<ULONG>(sizeof(uint32_t) * values.size()), // bytes in ReadSeedMaterialFromOSEntropyImpl() 109 bool ReadSeedMaterialFromOSEntropyImpl(absl::Span<uint32_t> values) { 110 auto buffer = reinterpret_cast<uint8_t*>(values.data()); 111 size_t buffer_size = sizeof(uint32_t) * values.size(); 129 bool ReadSeedMaterialFromOSEntropyImpl(absl::Span<uint32_t> values) { 130 auto buffer = reinterpret_cast<uint8_t*>(values.data()); 131 size_t buffer_size = sizeof(uint32_t) * values.size(); 142 bool ReadSeedMaterialFromGetEntropy(absl::Span<uint32_t> values) { 205 ReadSeedMaterialFromOSEntropy(absl::Span<uint32_t> values) ReadSeedMaterialFromOSEntropy() argument [all...] |
/third_party/node/deps/v8/tools/ |
H A D | compare-table-gen.js | 9 var values = new Array(strings.length); 11 values[i] = eval(strings[i]); 15 for (var i = 0; i < values.length; i++) { 16 for (var j = 0; j < values.length; j++) { 17 var a = values[i]; 18 var b = values[j]; 27 for (var i = 0; i < values.length; i++) { 28 for (var j = 0; j < values.length; j++) { 49 print("var values = [" + strings + "];"); 56 for (var i = 0; i < values [all...] |
/third_party/mesa3d/src/broadcom/clif/ |
H A D | v3dx_dump.c | 81 struct V3DX(GL_SHADER_STATE) values; in clif_dump_packet() 82 V3DX(GL_SHADER_STATE_unpack)(cl, &values); in clif_dump_packet() 88 values.address); in clif_dump_packet() 91 values.number_of_attribute_arrays; in clif_dump_packet() 99 struct V3DX(GL_SHADER_STATE_INCLUDING_GS) values; in clif_dump_packet() 100 V3DX(GL_SHADER_STATE_INCLUDING_GS_unpack)(cl, &values); in clif_dump_packet() 106 values.address); in clif_dump_packet() 109 values.number_of_attribute_arrays; in clif_dump_packet() 118 struct V3DX(STORE_MULTI_SAMPLE_RESOLVED_TILE_COLOR_BUFFER_EXTENDED) values; in clif_dump_packet() 119 V3DX(STORE_MULTI_SAMPLE_RESOLVED_TILE_COLOR_BUFFER_EXTENDED_unpack)(cl, &values); in clif_dump_packet() [all...] |
/third_party/backends/backend/ |
H A D | gt68xx_high.c | 1022 * @param values AFE values 1026 gt68xx_afe_ccd_calc (GT68xx_Afe_Values * values, unsigned int *buffer) in gt68xx_afe_ccd_calc() argument 1040 SANE_UNFIX (values->start_black) * values->scan_dpi / MM_PER_INCH; in gt68xx_afe_ccd_calc() 1041 end_black = start_black + 1.0 * values->scan_dpi / MM_PER_INCH; /* 1 mm */ in gt68xx_afe_ccd_calc() 1044 start_white = end_black + 5.0 * values->scan_dpi / MM_PER_INCH; in gt68xx_afe_ccd_calc() 1045 end_white = values->calwidth; in gt68xx_afe_ccd_calc() 1049 values->scan_dpi, start_black, end_black, start_white, end_white); in gt68xx_afe_ccd_calc() 1077 values in gt68xx_afe_ccd_calc() 1093 gt68xx_afe_ccd_adjust_offset_gain(SANE_String_Const color_name, GT68xx_Afe_Values * values, unsigned int *buffer, SANE_Byte * offset, SANE_Byte * pga, SANE_Byte * old_offset, SANE_Byte * old_pga) gt68xx_afe_ccd_adjust_offset_gain() argument 1192 gt68xx_wait_lamp_stable(GT68xx_Scanner * scanner, GT68xx_Scan_Parameters * params, GT68xx_Scan_Request *request, unsigned int *buffer_pointers[3], GT68xx_Afe_Values *values, SANE_Bool dont_move) gt68xx_wait_lamp_stable() argument 1304 GT68xx_Afe_Values values; gt68xx_afe_ccd_auto() local 1492 gt68xx_afe_cis_calc_black(GT68xx_Afe_Values * values, unsigned int *black_buffer) gt68xx_afe_cis_calc_black() argument 1523 gt68xx_afe_cis_calc_white(GT68xx_Afe_Values * values, unsigned int *white_buffer) gt68xx_afe_cis_calc_white() argument 1556 gt68xx_afe_cis_adjust_gain_offset(SANE_String_Const color_name, GT68xx_Afe_Values * values, unsigned int *black_buffer, unsigned int *white_buffer, GT68xx_AFE_Parameters * afe, GT68xx_AFE_Parameters * old_afe) gt68xx_afe_cis_adjust_gain_offset() argument 1684 gt68xx_afe_cis_adjust_exposure(SANE_String_Const color_name, GT68xx_Afe_Values * values, unsigned int *white_buffer, SANE_Int border, SANE_Int * exposure_time) gt68xx_afe_cis_adjust_exposure() argument 1720 gt68xx_afe_cis_read_lines(GT68xx_Afe_Values * values, GT68xx_Scanner * scanner, SANE_Bool lamp, SANE_Bool first, unsigned int *r_buffer, unsigned int *g_buffer, unsigned int *b_buffer) gt68xx_afe_cis_read_lines() argument 1841 GT68xx_Afe_Values values; gt68xx_afe_cis_auto() local [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | pixel.c | 104 const GLfloat *values) in store_pixelmap() 118 ctx->PixelMaps.StoS.Map[i] = roundf(values[i]); in store_pixelmap() 125 ctx->PixelMaps.ItoI.Map[i] = values[i]; in store_pixelmap() 132 GLfloat val = CLAMP(values[i], 0.0F, 1.0F); in store_pixelmap() 177 _mesa_PixelMapfv( GLenum map, GLsizei mapsize, const GLfloat *values ) in _mesa_PixelMapfv() 198 GL_FLOAT, INT_MAX, values)) { in _mesa_PixelMapfv() 202 values = (const GLfloat *) _mesa_map_pbo_source(ctx, &ctx->Unpack, values); in _mesa_PixelMapfv() 203 if (!values) { in _mesa_PixelMapfv() 211 store_pixelmap(ctx, map, mapsize, values); in _mesa_PixelMapfv() 103 store_pixelmap(struct gl_context *ctx, GLenum map, GLsizei mapsize, const GLfloat *values) store_pixelmap() argument [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/ |
H A D | XMLRecordWriter.java | 61 public void boolArray(String name, boolean[] values) { in boolArray() argument 62 if (values != null) { in boolArray() 63 String[] stringValues = new String[values.length]; in boolArray() 64 for (int i = 0; i < values.length; ++i) { in boolArray() 65 stringValues[i] = String.valueOf(values[i]); in boolArray() 89 public void characterArray(String name, char[] values) { in characterArray() argument 90 if (values != null) { in characterArray() 91 String[] stringValues = new String[values.length]; in characterArray() 92 for (int i = 0; i < values.length; ++i) { in characterArray() 93 char value = values[ in characterArray() 112 namedIndexArray(String name, String[] names, byte[] values) namedIndexArray() argument 199 stringArray(String name, String[] values) stringArray() argument 214 stringTable(String name, String[][] values) stringTable() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/duration/impl/ |
H A D | XMLRecordWriter.java | 65 public void boolArray(String name, boolean[] values) { in boolArray() argument 66 if (values != null) { in boolArray() 67 String[] stringValues = new String[values.length]; in boolArray() 68 for (int i = 0; i < values.length; ++i) { in boolArray() 69 stringValues[i] = String.valueOf(values[i]); in boolArray() 93 public void characterArray(String name, char[] values) { in characterArray() argument 94 if (values != null) { in characterArray() 95 String[] stringValues = new String[values.length]; in characterArray() 96 for (int i = 0; i < values.length; ++i) { in characterArray() 97 char value = values[ in characterArray() 116 namedIndexArray(String name, String[] names, byte[] values) namedIndexArray() argument 203 stringArray(String name, String[] values) stringArray() argument 218 stringTable(String name, String[][] values) stringTable() argument [all...] |
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fShaderSharedVarTests.cpp | 185 // Setup input values. in iterate() 197 vector<float> values (numValues*scalarSize); in iterate() 199 for (int ndx = 0; ndx < (int)values.size(); ndx++) in iterate() 200 values[ndx] = float(minInt + (ndx % (maxInt-minInt+1))); in iterate() 206 if (scalarSize == 1) gl.uniform1fv(location, numValues, &values[0]); in iterate() 207 else if (scalarSize == 2) gl.uniform2fv(location, numValues, &values[0]); in iterate() 208 else if (scalarSize == 3) gl.uniform3fv(location, numValues, &values[0]); in iterate() 209 else if (scalarSize == 4) gl.uniform4fv(location, numValues, &values[0]); in iterate() 216 vector<int> values (numValues*scalarSize); in iterate() 218 for (int ndx = 0; ndx < (int)values in iterate() [all...] |
/third_party/backends/testsuite/sanei/ |
H A D | sanei_config_test.c | 51 0 /* no quantization : hard to do for float values ... */ 99 config.values = NULL; in inexistent_config() 153 config.values = NULL; in empty_config() 174 void *values[2]; in string_option() local 188 values[i] = modelname; in string_option() 201 values[i] = vendor; in string_option() 206 config.values = values; in string_option() 230 void *values[1]; in int_option() local 245 values[ in int_option() 273 void *values[1]; wrong_range_int_option() local 316 void *values[1]; word_array_option() local 362 void *values[1]; string_list_option() local 405 void *values[1]; wrong_string_list_option() local 450 void *values[9]; umax_pp() local 600 void *values[2]; wrong_bool_option() local 653 void *values[3]; bool_option() local 724 void *values[3]; fixed_option() local 795 void *values[1]; wrong_fixed_option() local 833 void *values[1]; snapscan() local [all...] |