Home
last modified time | relevance | path

Searched refs:value (Results 9551 - 9575 of 23098) sorted by relevance

1...<<381382383384385386387388389390>>...924

/third_party/mesa3d/src/intel/isl/
H A Disl_priv.h119 isl_round_up_to_power_of_two(uint32_t value) in isl_round_up_to_power_of_two() argument
121 if (value <= 1) in isl_round_up_to_power_of_two()
122 return value; in isl_round_up_to_power_of_two()
124 return 1 << (32 - __builtin_clz(value - 1)); in isl_round_up_to_power_of_two()
/third_party/node/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/
H A Dsigstore_trustroot.js2 Object.defineProperty(exports, "__esModule", { value: true });
101 function isSet(value) {
102 return value !== null && value !== undefined;
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Ddtptngen.h198 * value is overridden. Otherwise, the previous value is retained. In either
211 * @return conflicting status. The value could be UDATPG_NO_CONFLICT,
231 * (era). So if that value is, say "{0}, {1}" then the final resulting
240 * @param value pattern, such as "{0}, {1}"
243 void setAppendItemFormat(UDateTimePatternField field, const UnicodeString& value);
263 * @param value name of the field
266 void setAppendItemName(UDateTimePatternField field, const UnicodeString& value);
525 * The decimal value is used in formatting fractions of seconds. If the
644 void setFieldDisplayName(UDateTimePatternField field, UDateTimePGDisplayWidth width, const UnicodeString& value);
[all...]
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_rast.h85 * the fragment shader, such as blend color and alpha ref value.
255 uint64_t value; member
330 lp_rast_arg_clearzs( uint64_t value, uint64_t mask ) in lp_rast_arg_clearzs() argument
333 arg.clear_zstencil.value = value; in lp_rast_arg_clearzs()
/third_party/icu/icu4c/source/tools/gencfu/
H A Dgencfu.cpp165 confFileName = options[3].value; in main()
166 outFileName = options[5].value; in main()
169 u_setDataDirectory(options[6].value); in main()
176 outDir = options[7].value; in main()
/third_party/icu/icu4c/source/test/intltest/
H A Dwindttst.cpp119 DWORD value = 0; in testLocales() local
144 GetLocaleInfoW(lcidRecords[i].lcid, LOCALE_RETURN_NUMBER|LOCALE_ICALENDARTYPE, (LPWSTR)&value, sizeof(value)/sizeof(WCHAR)); in testLocales()
146 calType = value; in testLocales()
/third_party/ltp/testcases/kernel/mem/vma/
H A Dvma04.c75 static void assertion(char *expected, char *value, char *name);
187 static void assertion(char *expected, char *value, char *name) in assertion() argument
189 if (strcmp(expected, value) == 0) in assertion()
193 name, expected, value); in assertion()
/third_party/node/deps/v8/src/extensions/
H A Dstatistics-extension.cc42 double value, const char* name) { in AddNumber()
46 v8::Number::New(isolate, value)) in AddNumber()
53 int64_t value, in AddNumber64()
58 v8::Number::New(isolate, static_cast<double>(value))) in AddNumber64()
41 AddNumber(v8::Isolate* isolate, v8::Local<v8::Object> object, double value, const char* name) AddNumber() argument
51 AddNumber64(v8::Isolate* isolate, v8::Local<v8::Object> object, int64_t value, const char* name) AddNumber64() argument
/third_party/node/deps/openssl/openssl/crypto/dsa/
H A Ddsa_pmeth.c187 const char *type, const char *value) in pkey_dsa_ctrl_str()
191 nbits = atoi(value); in pkey_dsa_ctrl_str()
195 int qbits = atoi(value); in pkey_dsa_ctrl_str()
199 const EVP_MD *md = EVP_get_digestbyname(value); in pkey_dsa_ctrl_str()
186 pkey_dsa_ctrl_str(EVP_PKEY_CTX *ctx, const char *type, const char *value) pkey_dsa_ctrl_str() argument
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dv3_akid.c89 * keyid: use the issuers subject keyid, the value 'always' means its is
124 if (cnf->value && strcmp(cnf->value, "always") == 0) in v2i_AUTHORITY_KEYID()
128 if (cnf->value && strcmp(cnf->value, "always") == 0) in v2i_AUTHORITY_KEYID()
/third_party/node/deps/openssl/openssl/crypto/pkcs12/
H A Dp12_npas.c157 if ((p8 = PKCS8_decrypt(bag->value.shkeybag, oldpass, -1)) == NULL) in newpass_bag()
159 X509_SIG_get0(bag->value.shkeybag, &shalg, NULL); in newpass_bag()
169 X509_SIG_free(bag->value.shkeybag); in newpass_bag()
170 bag->value.shkeybag = p8new; in newpass_bag()
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/Config/
H A DQuery.pm44 in keyed pair form, i.e. a series of C<< key => value >> pairs. Available
97 these end product names, and its value being a reference to an array of
129 # value
142 these configuration data names, and its value being a reference to the value
170 push @messages, "'$_' value not a $conds{$_} reference"
/third_party/libphonenumber/javascript/i18n/phonenumbers/
H A Ddemo.js45 var phoneNumber = $('phoneNumber').value;
46 var regionCode = $('defaultCountry').value.toUpperCase();
47 var carrierCode = $('carrierCode').value;
174 $('output').value = output.toString();
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/
H A DCsvParser.java170 // Quoted value, maybe parse and unescape multiple lines here. in parseRow()
176 "unterminated quoted value: %s", buffer); in parseRow()
203 // Empty unquoted empty value (e.g. "foo,,bar"). in parseRow()
207 // Non-empty unquoted value. in parseRow()
212 String value = line.substring(start, maybeTrimTrailingWhitespace(line, pos)); in parseRow()
213 checkArgument(value.indexOf(QUOTE) == -1, in parseRow()
214 "quotes cannot appear in unquoted values: %s", value); in parseRow()
215 row.add(value); in parseRow()
218 // We hit end-of-line at the end of a value, so just return (no trailing empty value) in parseRow()
[all...]
/third_party/rust/crates/libc/src/unix/linux_like/android/b32/
H A Dmod.rs108 pub struct pthread_mutex_t { value: ::c_int }
110 pub struct pthread_cond_t { value: ::c_int }
207 pub const PTHREAD_MUTEX_INITIALIZER: pthread_mutex_t = pthread_mutex_t { value: 0 };
208 pub const PTHREAD_COND_INITIALIZER: pthread_cond_t = pthread_cond_t { value: 0 };
/third_party/openssl/util/perl/OpenSSL/Config/
H A DQuery.pm44 in keyed pair form, i.e. a series of C<< key => value >> pairs. Available
97 these end product names, and its value being a reference to an array of
129 # value
142 these configuration data names, and its value being a reference to the value
170 push @messages, "'$_' value not a $conds{$_} reference"
/third_party/python/Lib/multiprocessing/
H A Dsharedctypes.py164 def set%s(self, value):
167 self._obj.%s = value
213 value = make_property('value') variable in Synchronized
225 def __setitem__(self, i, value):
227 self._obj[i] = value
239 value = make_property('value') variable in SynchronizedString
/third_party/openssl/crypto/dsa/
H A Ddsa_pmeth.c187 const char *type, const char *value) in pkey_dsa_ctrl_str()
191 nbits = atoi(value); in pkey_dsa_ctrl_str()
195 int qbits = atoi(value); in pkey_dsa_ctrl_str()
199 const EVP_MD *md = EVP_get_digestbyname(value); in pkey_dsa_ctrl_str()
186 pkey_dsa_ctrl_str(EVP_PKEY_CTX *ctx, const char *type, const char *value) pkey_dsa_ctrl_str() argument
/third_party/openssl/crypto/pkcs12/
H A Dp12_npas.c157 if ((p8 = PKCS8_decrypt(bag->value.shkeybag, oldpass, -1)) == NULL) in newpass_bag()
159 X509_SIG_get0(bag->value.shkeybag, &shalg, NULL); in newpass_bag()
169 X509_SIG_free(bag->value.shkeybag); in newpass_bag()
170 bag->value.shkeybag = p8new; in newpass_bag()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DError.h32 ErrorStreamBase &operator<<(T value) in operator <<() argument
34 mErrorStream << value; in operator <<() local
162 // Result signals if calling code should continue running or early exit. A value of Stop can
190 inline bool IsError(bool value) in IsError() argument
192 return !value; in IsError()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cGlSpirvTests.hpp219 GLuint value; member
221 ValidationOutputStruct() : x(0), y(0), z(0), value(0) in ValidationOutputStruct()
225 ValidationOutputStruct(GLubyte _x, GLubyte _y, GLuint _value) : x(_x), y(_y), z(0), value(_value) in ValidationOutputStruct()
229 ValidationOutputStruct(GLubyte _x, GLubyte _y, GLubyte _z, GLuint _value) : x(_x), y(_y), z(_z), value(_value) in ValidationOutputStruct()
/third_party/skia/third_party/externals/spirv-tools/test/fuzz/
H A Dfuzzer_replayer_test.cpp1618 std::vector<uint32_t>&& indices, uint32_t value) {
1623 *fact.mutable_constant_word()->Add() = value;
1629 // Reinterpret the bits of |value| as a 32-bit unsigned int
1630 uint32_t FloatBitsAsUint(float value) {
1632 memcpy(&result, &value, sizeof(float));
1728 // Do some fuzzer runs, starting from an initial seed of 0 (seed value chosen
1735 // Do some fuzzer runs, starting from an initial seed of 10 (seed value chosen
1747 // Do some fuzzer runs, starting from an initial seed of 94 (seed value chosen
1761 // Do some fuzzer runs, starting from an initial seed of 14 (seed value chosen
1767 // Do some fuzzer runs, starting from an initial seed of 29 (seed value chose
[all...]
/third_party/skia/third_party/externals/spirv-tools/test/
H A Dtext_to_binary.type_declaration_test.cpp42 Eq(MakeInstruction(SpvOpTypeImage, {1, 2, GetParam().value(), 2, 3, 0, 4, in TEST_P()
80 GetParam().value()}))); in TEST_P()
149 SpvImageFormatRgba8, GetParam().value()}))); in TEST_P()
174 Eq(MakeInstruction(SpvOpTypePipe, {1, GetParam().value()}))); in TEST_P()
/third_party/skia/third_party/externals/angle2/src/libGLESv2/
H A Dglobal_state.cpp27 static_assert(std::is_trivially_destructible<decltype(g_Mutex)>::value,
31 static_assert(std::is_trivially_destructible<decltype(g_LastContext)>::value,
34 void SetContextToAndroidOpenGLTLSSlot(gl::Context *value) in SetContextToAndroidOpenGLTLSSlot() argument
39 ANGLE_ANDROID_GET_GL_TLS()[angle::kAndroidOpenGLTlsSlot] = static_cast<void *>(value); in SetContextToAndroidOpenGLTLSSlot()
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
H A DEGLBlobCacheTest.cpp52 void SetBlob(const void *key, EGLsizeiANDROID keySize, const void *value, EGLsizeiANDROID valueSize) in SetBlob() argument
58 memcpy(valueVec.data(), value, valueSize); in SetBlob()
67 void *value, in GetBlob()
82 memcpy(value, entry->second.data(), entry->second.size()); in GetBlob()
65 GetBlob(const void *key, EGLsizeiANDROID keySize, void *value, EGLsizeiANDROID valueSize) GetBlob() argument

Completed in 21 milliseconds

1...<<381382383384385386387388389390>>...924