Home
last modified time | relevance | path

Searched refs:values (Results 451 - 475 of 2446) sorted by relevance

1...<<11121314151617181920>>...98

/third_party/node/deps/v8/src/objects/
H A Doption-utils.cc50 std::vector<const char*> values, in GetStringOption()
73 // 2. d. if values is not undefined, then in GetStringOption()
74 if (values.size() > 0) { in GetStringOption()
75 // 2. d. i. If values does not contain an element equal to value, in GetStringOption()
77 for (size_t i = 0; i < values.size(); i++) { in GetStringOption()
78 if (strcmp(values.at(i), value_cstr.get()) == 0) { in GetStringOption()
48 GetStringOption(Isolate* isolate, Handle<JSReceiver> options, const char* property, std::vector<const char*> values, const char* method_name, std::unique_ptr<char[]>* result) GetStringOption() argument
/third_party/node/deps/v8/src/interpreter/
H A Dbytecode-traits.h68 template <int... values>
74 template <int value, int... values>
75 struct SumHelper<value, values...> {
76 static const int kValue = value + SumHelper<values...>::kValue;
/third_party/python/Lib/test/support/
H A Dthreading_helper.py32 values = _thread._count(), threading._dangling
33 if values == original_values:
39 dangling_threads = values[1]
41 f"{values[0] - original_values[0]} threads "
42 f"(count: {values[0]}, "
49 values = None
/third_party/vk-gl-cts/external/amber/src/samples/
H A Dimage_diff.cc139 std::vector<amber::Value> values; in LoadPngToBuffer() local
140 values.resize(image.size()); in LoadPngToBuffer()
142 values[i].SetIntValue(image[i]); in LoadPngToBuffer()
145 buffer->SetData(values); in LoadPngToBuffer()
/third_party/skia/third_party/externals/tint/src/resolver/
H A Dresolver_validation.cc1320 // the same group and binding values, when considered as a pair of in ValidateEntryPoint()
1321 // values. in ValidateEntryPoint()
1520 if (auto values = arg->ConstantValue()) { in ValidateTextureIntrinsicFunction()
1521 // Assert that the constant values are of the expected type. in ValidateTextureIntrinsicFunction()
1522 if (!values.Type()->IsAnyOf<sem::I32, sem::Vector>() || in ValidateTextureIntrinsicFunction()
1523 !values.ElementType()->Is<sem::I32>()) { in ValidateTextureIntrinsicFunction()
1543 for (size_t i = 0; i < values.Elements().size(); i++) { in ValidateTextureIntrinsicFunction()
1544 auto value = values.Elements()[i].i32; in ValidateTextureIntrinsicFunction()
1728 auto& values = ctor->args; in ValidateArrayConstructorOrCast() local
1730 for (auto* value : values) { in ValidateArrayConstructorOrCast()
1768 auto& values = ctor->args; ValidateVectorConstructorOrCast() local
1846 auto& values = ctor->args; ValidateMatrixConstructorOrCast() local
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dwire_format_lite.h178 // positioned immediately after the tag. Skipped values are simply
184 // positioned immediately after the tag. Skipped values are recorded to a
189 // Reads and ignores a message from the input. Skipped values are simply
194 // Reads and ignores a message from the input. Skipped values are recorded
241 // we ZigZag-encode the values.
260 // Reads repeated primitive values, with optimizations for repeats.
297 // Read a packed enum field. If the is_valid function is not NULL, values for
301 RepeatedField<int>* values);
303 // Read a packed enum field. If the is_valid function is not NULL, values for
307 io::CodedOutputStream* unknown_fields_stream, RepeatedField<int>* values);
1049 ReadRepeatedPrimitive( int, uint32 tag, io::CodedInputStream* input, RepeatedField<CType>* values) ReadRepeatedPrimitive() argument
1065 ReadRepeatedFixedSizePrimitive( int tag_size, uint32 tag, io::CodedInputStream* input, RepeatedField<CType>* values) ReadRepeatedFixedSizePrimitive() argument
1140 ReadPackedPrimitive(io::CodedInputStream* input, RepeatedField<CType>* values) ReadPackedPrimitive() argument
1155 ReadPackedFixedSizePrimitive( io::CodedInputStream* input, RepeatedField<CType>* values) ReadPackedFixedSizePrimitive() argument
1236 ReadPackedPrimitiveNoInline(io::CodedInputStream* input, RepeatedField<CType>* values) ReadPackedPrimitiveNoInline() argument
[all...]
/base/telephony/core_service/services/sim/src/
H A Doperator_config_loader.cpp104 DataShare::DataShareValuesBucket values; in InsertOpkeyToSimDb() local
109 values.Put(SimData::OPKEY, opkeyObj); in InsertOpkeyToSimDb()
110 values.Put(SimData::MCC, mccObj); in InsertOpkeyToSimDb()
111 values.Put(SimData::MNC, mncObj); in InsertOpkeyToSimDb()
112 values.Put(SimData::IMSI, imsiObj); in InsertOpkeyToSimDb()
124 result = helper->Update(simUri, predicates, values); in InsertOpkeyToSimDb()
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/mapper/
H A DAbstractPathValueMapperTest.java213 assertThat(e).hasMessageThat().contains("explicit aliases must be singleton values"); in testAliases_explicitAliasesAreSingletonOnly()
251 FakeMapper addUngroupedResult(String path, String... values) { in addUngroupedResult() argument
253 return addResult(FakeResult.of(path, index, false, values)); in addUngroupedResult()
256 FakeMapper addGroupedResult(String path, String... values) { in addGroupedResult() argument
258 return addResult(FakeResult.of(path, index, true, values)); in addGroupedResult()
271 private static RbValue[] singletonValues(String... values) { in singletonValues() argument
272 return Arrays.stream(values).map(RbValue::of).toArray(RbValue[]::new); in singletonValues()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_shaderlib_tgsi.c128 struct ureg_src *values = NULL; in si_create_dma_compute_shader() local
132 values = malloc(num_mem_ops * sizeof(struct ureg_src)); in si_create_dma_compute_shader()
156 values[i] = ureg_src(ureg_DECL_temporary(ureg)); in si_create_dma_compute_shader()
158 ureg_writemask(ureg_dst(values[i]), u_bit_consecutive(0, inst_dwords[i])); in si_create_dma_compute_shader()
171 struct ureg_src srcs[] = {ureg_src(store_addr), is_copy ? values[d] : value}; in si_create_dma_compute_shader()
186 free(values); in si_create_dma_compute_shader()
205 * 1: read previously accumulated values
206 * 2: write accumulated values for chaining
H A Dsi_shader_llvm_tess.c195 LLVMValueRef values[4]; in lshs_lds_load() local
198 values[chan] = lshs_lds_load(ctx, type, chan, dw_addr); in lshs_lds_load()
200 return ac_build_gather_values(&ctx->ac, values, 4); in lshs_lds_load()
455 LLVMValueRef values[2]; in si_llvm_tcs_build_end() local
459 values[0] = rel_patch_id; in si_llvm_tcs_build_end()
460 values[1] = LLVMGetUndef(ctx->ac.i32); in si_llvm_tcs_build_end()
461 rel_patch_id = ac_build_phi(&ctx->ac, ctx->ac.i32, 2, values, blocks); in si_llvm_tcs_build_end()
463 values[0] = tf_lds_offset; in si_llvm_tcs_build_end()
464 values[1] = LLVMGetUndef(ctx->ac.i32); in si_llvm_tcs_build_end()
465 tf_lds_offset = ac_build_phi(&ctx->ac, ctx->ac.i32, 2, values, block in si_llvm_tcs_build_end()
[all...]
/third_party/node/test/pummel/
H A Dtest-policy-integrity-worker-commonjs.js28 const values = [];
32 values.push(`${algo}-${h.digest('base64')}`);
37 values.push(`${algo}-${h.digest('base64')}`);
39 return values;
242 const { [config]: values, ...otherConfigs } = configurations;
243 return values.flatMap((value) => {
H A Dtest-policy-integrity-worker-module.js28 const values = [];
32 values.push(`${algo}-${h.digest('base64')}`);
37 values.push(`${algo}-${h.digest('base64')}`);
39 return values;
242 const { [config]: values, ...otherConfigs } = configurations;
243 return values.flatMap((value) => {
H A Dtest-policy-integrity-dep.js28 const values = [];
32 values.push(`${algo}-${h.digest('base64')}`);
37 values.push(`${algo}-${h.digest('base64')}`);
39 return values;
225 const { [config]: values, ...otherConfigs } = configurations;
226 return values.flatMap((value) => {
H A Dtest-policy-integrity-parent-commonjs.js28 const values = [];
32 values.push(`${algo}-${h.digest('base64')}`);
37 values.push(`${algo}-${h.digest('base64')}`);
39 return values;
225 const { [config]: values, ...otherConfigs } = configurations;
226 return values.flatMap((value) => {
H A Dtest-policy-integrity-parent-module.js28 const values = [];
32 values.push(`${algo}-${h.digest('base64')}`);
37 values.push(`${algo}-${h.digest('base64')}`);
39 return values;
225 const { [config]: values, ...otherConfigs } = configurations;
226 return values.flatMap((value) => {
H A Dtest-policy-integrity-parent-no-package-json.js28 const values = [];
32 values.push(`${algo}-${h.digest('base64')}`);
37 values.push(`${algo}-${h.digest('base64')}`);
39 return values;
225 const { [config]: values, ...otherConfigs } = configurations;
226 return values.flatMap((value) => {
H A Dtest-policy-integrity-worker-no-package-json.js28 const values = [];
32 values.push(`${algo}-${h.digest('base64')}`);
37 values.push(`${algo}-${h.digest('base64')}`);
39 return values;
242 const { [config]: values, ...otherConfigs } = configurations;
243 return values.flatMap((value) => {
/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_atom_constbuf.c151 * into gl_program_parameter_list. The easiest way to get their values in st_upload_constants()
156 uint32_t values[MAX_INLINABLE_UNIFORMS]; in st_upload_constants() local
168 values[i] = constbuf[prog->info.inlinable_uniform_dw_offsets[i]].u; in st_upload_constants()
173 values); in st_upload_constants()
191 uint32_t values[MAX_INLINABLE_UNIFORMS]; in st_upload_constants() local
195 values[i] = constbuf[prog->info.inlinable_uniform_dw_offsets[i]].u; in st_upload_constants()
199 values); in st_upload_constants()
/third_party/node/deps/npm/node_modules/npmlog/lib/
H A Dlog.js162 var values = {}
164 values.section = name
169 values.subsection = last.prefix
177 values.logline = logline
179 values.completed = completed || this.tracker.completed()
180 this.gauge.show(values)
/third_party/libinput/tools/
H A Dlibinput-replay.py128 values = fetch(evdev, "absinfo")[code]
130 minimum=values[0],
131 maximum=values[1],
132 fuzz=values[2],
133 flat=values[3],
134 resolution=values[4],
/third_party/node/deps/undici/src/lib/fetch/
H A Dheaders.js214 // 2. Return the values of all headers in list whose name
231 for (const { name, value } of this[kHeadersMap].values()) {
415 // 2. Return the values of all headers in this’s header list whose name is
447 // 1. Let values be a list of all values of headers in list whose name
450 // 2. For each value of values:
484 () => [...this[kHeadersSortedMap].values()],
490 values () {
500 () => [...this[kHeadersSortedMap].values()],
516 () => [...this[kHeadersSortedMap].values()],
[all...]
/third_party/pulseaudio/src/modules/oss/
H A Doss-util.c272 volume->values[0] = PA_CLAMP_VOLUME(((vol & 0xFF) * PA_VOLUME_NORM) / 100); in pa_oss_get_volume()
275 volume->values[1] = PA_CLAMP_VOLUME((((vol >> 8) & 0xFF) * PA_VOLUME_NORM) / 100); in pa_oss_get_volume()
286 l = volume->values[0] > PA_VOLUME_NORM ? PA_VOLUME_NORM : volume->values[0]; in pa_oss_set_volume()
291 r = volume->values[1] > PA_VOLUME_NORM ? PA_VOLUME_NORM : volume->values[1]; in pa_oss_set_volume()
/third_party/typescript/tests/baselines/reference/
H A DuseObjectValuesAndEntries3.js4 for (var x of Object.values(o)) {
12 for (var x of Object.values(o)) {
H A DuseObjectValuesAndEntries4.js4 for (var x of Object.values(o)) {
12 for (var x of Object.values(o)) {
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dinlined_vector.h86 // Useful to avoid compiler warnings when memcpy() is used for T values
399 void Initialize(ValueAdapter values, size_type new_size);
402 void Assign(ValueAdapter values, size_type new_size);
405 void Resize(ValueAdapter values, size_type new_size);
408 iterator Insert(const_iterator pos, ValueAdapter values,
534 auto values = IteratorValueAdapter<const_pointer>(src); in InitFrom() local
535 inlined_vector_internal::ConstructElements(GetAllocPtr(), dst, &values, n); in InitFrom() local
542 auto Storage<T, N, A>::Initialize(ValueAdapter values, size_type new_size)
562 &values, new_size); variable
572 auto Storage<T, N, A>::Assign(ValueAdapter values, size_typ
598 GetAllocPtr(), construct_loop.data(), &values, construct_loop.size()); global() variable
738 GetAllocPtr(), insert_construction.data(), &values, global() variable
[all...]

Completed in 19 milliseconds

1...<<11121314151617181920>>...98