Home
last modified time | relevance | path

Searched refs:values (Results 2076 - 2100 of 3163) sorted by relevance

1...<<81828384858687888990>>...127

/third_party/node/lib/internal/crypto/
H A Dwebidl.js308 function createEnumConverter(name, values) {
309 const E = new SafeSet(values);
/third_party/node/lib/internal/test_runner/
H A Dutils.js298 function formatLinesToRanges(values) {
299 return ArrayPrototypeMap(ArrayPrototypeReduce(values, (prev, current, index, array) => {
/third_party/node/tools/inspector_protocol/jinja2/
H A Dutils.py33 # special singleton representing missing values for the runtime
454 def values(self): member in LRUCache
455 """Return a list of all values."""
459 """Iterate over all values."""
460 return iter(self.values())
475 """Iterate over the values in the cache dict, oldest items
/third_party/mesa3d/src/mesa/main/
H A Dvdpau.c279 GLsizei *length, GLint *values) in _mesa_VDPAUGetSurfaceivNV()
304 values[0] = surf->state; in _mesa_VDPAUGetSurfaceivNV()
278 _mesa_VDPAUGetSurfaceivNV(GLintptr surface, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values) _mesa_VDPAUGetSurfaceivNV() argument
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_vec4_copy_propagation.cpp27 * Implements tracking of values copied between registers, and
67 is_channel_updated(vec4_instruction *inst, src_reg *values[4], int ch) in is_channel_updated() argument
69 const src_reg *src = values[ch]; in is_channel_updated()
152 /* The result of bit-casting the component values of a vector float in try_constant_propagate()
395 * end up accessing the resulting values as signed integers in try_copy_propagate()
490 /* Copied values end up in GRFs, and we don't track reladdr in opt_copy_propagation()
517 /* Update our destination's current channel values. For a direct copy, in opt_copy_propagation()
/third_party/node/deps/v8/include/v8-include/
H A Dv8-object.h405 * array returned by this method contains the same values as would
426 * array returned by this method contains the same values as would
538 void* values[]);
618 * to the same values as the original object.
728 Local<Name>* names, Local<Value>* values,
/third_party/node/deps/v8/include/
H A Dv8-object.h397 * array returned by this method contains the same values as would
418 * array returned by this method contains the same values as would
526 void* values[]);
606 * to the same values as the original object.
705 Local<Name>* names, Local<Value>* values,
/third_party/mesa3d/src/util/
H A Ddriconf.h101 #define DRI_CONF_OPT_E(_name, def, min, max, _desc, values) { \
109 .enums = { values }, \
468 "If set to true, recompile shaders with integer or boolean constants when the values are known. Can cause stutter, but can increase slightly performance.")
/third_party/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/
H A DExampleNumbersTest.java195 for (PhoneNumberUtil.PhoneNumberType type : PhoneNumberUtil.PhoneNumberType.values()) { in testEveryTypeHasAnExampleNumber()
221 for (ShortNumberInfo.ShortNumberCost cost : ShortNumberInfo.ShortNumberCost.values()) { in testShortNumbersValidAndCorrectCost()
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/finitestatematcher/compiler/
H A DCompilerRegressionTest.java123 for (Result expectedResult : Result.values()) { in testExpectedMatch()
134 for (Result expectedResult : Result.values()) { in testExpectedFailure()
/third_party/python/Tools/i18n/
H A Dpygettext.py359 maybe_fstring.values):
490 isdocstring = any(v.values())
540 # for holding option values
/third_party/python/Tools/peg_generator/pegen/
H A Dpython_generator.py197 tokens: Set[str] = set(token.tok_name.values()),
224 for rule in self.all_rules.values():
H A Dgrammar.py54 for rule in self.rules.values():
62 yield from self.rules.values()
/third_party/protobuf/csharp/src/Google.Protobuf/
H A DJsonParser.cs201 throw new InvalidProtocolBufferException($"Multiple values specified for oneof {field.ContainingOneof.Name}"); in Merge()
281 // Map fields are always objects, even if the values are well-known types: ParseSingleValue handles those. in MergeMapField()
308 throw new InvalidProtocolBufferException("Map values must not be null"); in MergeMapField()
513 // The check for the property depth protects us from nested Any values which occur before the type URL in MergeAny()
787 /// Checks that any infinite/NaN values originated from the correct text.
789 /// way that Mono parses out-of-range values as infinity.
/third_party/python/Lib/http/
H A Dcookies.py54 Once you've created your Cookie, you can add values just as if it were
112 The SimpleCookie expects that all values should be standard strings.
114 the value to a string, when the values are set dictionary-style.
337 def update(self, values):
339 for key, val in dict(values).items():
529 map(Cookie.__setitem__, d.keys(), d.values())
602 SimpleCookie supports strings as cookie values. When setting
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory_model/
H A DvktMemoryModelSharedLayoutCase.cpp90 void generateValue (const SharedStructVarEntry& entry, de::Random& rnd, vector<string>& values) in generateValue() argument
135 values.push_back(generatedValue); in generateValue()
232 // Comparison functions use 32-bit values. Convert 8/16-bit scalar and vector types if necessary. in generateSharedMemoryWrites()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory_model/
H A DvktMemoryModelSharedLayoutCase.cpp90 void generateValue (const SharedStructVarEntry& entry, de::Random& rnd, vector<string>& values) in generateValue() argument
135 values.push_back(generatedValue); in generateValue()
232 // Comparison functions use 32-bit values. Convert 8/16-bit scalar and vector types if necessary. in generateSharedMemoryWrites()
/third_party/skia/third_party/externals/angle2/scripts/
H A Dgenerate_android_bp.py79 def write_blueprint(output, target_type, values):
99 for (key, value) in values.items():
318 # Find list values that are common to all ABIs
334 # Make sure there is an 'arch' entry to hold ABI-specific values
/third_party/vk-gl-cts/external/amber/src/src/amberscript/
H A Dparser_image_test.cc341 auto* values = buffer->GetValues<float>(); in TEST_F() local
347 EXPECT_FLOAT_EQ(result[i], values[i]); in TEST_F()
/third_party/vk-gl-cts/external/amber/src/src/
H A Dbuffer.cc28 T* ValuesAs(uint8_t* values) { in ValuesAs() argument
29 return reinterpret_cast<T*>(values); in ValuesAs()
111 return Result{"Buffers have different values. " + in IsEqual()
113 " values differed, first difference at byte " + in IsEqual()
114 std::to_string(first_different_index) + " values " + in IsEqual()
156 return Result{"Buffers have a different number of values"}; in CheckCompability()
236 // histograms have the same amount of earth. Sum the absolute values of the in CompareHistogramEMD()
279 // This divides by the needed input values, not the values per element. in RecalculateMaxSizeInBytes()
280 // The assumption being the values comin in RecalculateMaxSizeInBytes()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DvalidationEGL_autogen.h196 const EGLnsecsANDROID *values);
211 const EGLnsecsANDROID *values);
/third_party/skia/third_party/externals/angle2/src/libGLESv2/
H A Degl_ext_stubs_autogen.h111 EGLnsecsANDROID *values);
126 EGLnsecsANDROID *values);
/third_party/skia/src/gpu/
H A DGrGeometryProcessor.cpp341 float values[4] = {matrix.getScaleX(), matrix.getTranslateX(), in SetTransform() local
343 pdman.set4fv(uniform, 1, values); in SetTransform()
/third_party/skia/third_party/externals/swiftshader/tests/regres/cmd/export_to_sheets/
H A Dmain.go164 return cause.Wrap(err, "Couldn't map row values to column for sheet %v. Column headers: [%+v]", sheetName, columnHeaders)
194 // mapToList transforms the two maps into a single slice of values.
196 // values is a map of identifier to value.
197 func mapToList(indices map[string]int, values map[string]interface{}) ([]interface{}, error) {
199 for name, value := range values {
249 // fetchRow returns all the values in the given sheet's row.
259 // fetchColumn returns all the values in the given sheet's column.
/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/aarch32/
H A Djsimd.c151 /* The code is optimised for these values only */ in jsimd_can_rgb_ycc()
170 /* The code is optimised for these values only */ in jsimd_can_rgb_gray()
189 /* The code is optimised for these values only */ in jsimd_can_ycc_rgb()
208 /* The code is optimised for these values only */ in jsimd_can_ycc_rgb565()
348 /* The code is optimised for these values only */ in jsimd_can_h2v2_downsample()
367 /* The code is optimised for these values only */ in jsimd_can_h2v1_downsample()
404 /* The code is optimised for these values only */ in jsimd_can_h2v2_upsample()
421 /* The code is optimised for these values only */ in jsimd_can_h2v1_upsample()
453 /* The code is optimised for these values only */ in jsimd_can_h2v2_fancy_upsample()
470 /* The code is optimised for these values onl in jsimd_can_h2v1_fancy_upsample()
951 jsimd_encode_mcu_AC_first_prepare(const JCOEF *block, const int *jpeg_natural_order_start, int Sl, int Al, JCOEF *values, size_t *zerobits) jsimd_encode_mcu_AC_first_prepare() argument
[all...]

Completed in 20 milliseconds

1...<<81828384858687888990>>...127