Home
last modified time | relevance | path

Searched refs:value (Results 19126 - 19150 of 26757) sorted by relevance

1...<<761762763764765766767768769770>>...1071

/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/BootstrapMainStarter ...
/third_party/skia/third_party/externals/oboe/apps/fxlab/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/BootstrapMainStarter ...
/third_party/skia/third_party/externals/oboe/tests/UnitTestRunner/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/BootstrapMainStarter ...
/third_party/skia/src/sksl/ir/
H A DSkSLType.cpp820 // Iterate over every constant subexpression in the value.
833 // We don't need range checks for floats or booleans; any matched-type value is acceptable.
837 bool Type::checkForOutOfRangeLiteral(const Context& context, double value, int line) const {
840 if (value < this->minimumValue() || value > this->maximumValue()) {
841 // We found a value that can't fit in the type. Flag it as an error.
844 "': " + to_string((SKSL_INT)value));
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DAPFloat.h104 /// but has a known implicit (deterministic) value: 0 for the significands, 0
299 /// \brief A static helper to produce a copy of an APFloat value with its sign
339 /// Write out a hexadecimal representation of the floating point value to DST,
348 /// IEEE-754R isSignMinus: Returns true if and only if the current value is
354 /// IEEE-754R isNormal: Returns true if and only if the current value is normal.
356 /// This implies that the current value of the float is not zero, subnormal,
360 /// Returns true if and only if the current value is zero, subnormal, or
363 /// This means that the value is not infinite or NaN.
410 /// \brief Overload to compute a hash code for an APFloat value.
415 /// they equal or not? This hash value implementatio
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DError.h92 /// represented by a null pointer value.
112 /// A success value *can not* be dropped. For example, just calling 'foo(<...>)'
113 /// without testing the return value will raise a runtime error, even if foo
166 /// Create a success value. Prefer using 'Error::success()' for readability
173 /// Create a success value.
179 /// Move-construct an error value. The newly constructed error is considered
181 /// becomes a checked Success value, regardless of its original state.
187 /// Create an error value. Prefer using the 'make_error' function, but
197 /// Move-assign an error value. The current error must represent success, you
199 /// considered unchecked. The source error becomes a checked success value,
[all...]
/third_party/spirv-headers/tools/buildHeaders/
H A Dheader.cpp147 // If the enum value name would start with a sigit, prepend the enum name.
158 // Format value as mask or value
244 enums[e - spv::OperandSource]["Values"][name] = enumRow.value; in TPrinter()
256 entry["Values"][name] = enumRow.value; in TPrinter()
275 // Return a list of values sorted by enum value. The std::vector
276 // returned by value is okay in c++11 due to move semantics.
328 // Format value definitions in language specific way
530 if (seenValues.find(inst.value) != seenValues.end()) {
533 seenValues.insert(inst.value);
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dlocmap.cpp1260 uint32_t value = 0; in uprv_convertToLCID() local
1298 value = getHostID(&gPosixIDmap[idx], posixID, &myStatus); in uprv_convertToLCID()
1300 return value; in uprv_convertToLCID()
1303 fallbackValue = value; in uprv_convertToLCID()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
H A DELF.h361 #define ELF_RELOC(name, value) name = value,
564 ODK_FILL = 5, // Linker fill value
808 SHN_ABS = 0xfff1, // Symbol has absolute value; does not need relocation
1105 Elf32_Sword r_addend; // Compute value for relocatable field by adding this
1141 Elf64_Sxword r_addend; // Compute value for relocatable field by adding this.
1236 Elf32_Word d_val; // Integer value of entry.
1237 Elf32_Addr d_ptr; // Pointer value of entry.
1245 Elf64_Xword d_val; // Integer value of entry.
1246 Elf64_Addr d_ptr; // Pointer value o
[all...]
/third_party/python/Modules/clinic/
H A D_elementtree.c.h553 "set($self, key, value, /)\n"
562 PyObject *value);
569 PyObject *value; in _elementtree_Element_set() local
575 value = args[1]; in _elementtree_Element_set()
576 return_value = _elementtree_Element_set_impl(self, key, value); in _elementtree_Element_set()
/third_party/python/Objects/
H A Dcall.c1003 PyObject *key, *value; in _PyStack_UnpackDict() local
1005 while (PyDict_Next(kwargs, &pos, &key, &value)) { in _PyStack_UnpackDict()
1008 Py_INCREF(value); in _PyStack_UnpackDict()
1010 kwstack[i] = value; in _PyStack_UnpackDict()
1014 /* keys_are_strings has the value Py_TPFLAGS_UNICODE_SUBCLASS if that in _PyStack_UnpackDict()
H A Dtupleobject.c318 /* Tests have shown that it's not worth to cache the hash value, see
337 /* Add input length, mangled to keep the historical value of hash(()). */ in tuplehash()
552 value: object
557 Return first index of value.
559 Raises ValueError if the value is not present.
563 tuple_index_impl(PyTupleObject *self, PyObject *value, Py_ssize_t start, in tuple_index_impl() argument
581 int cmp = PyObject_RichCompareBool(self->ob_item[i], value, Py_EQ); in tuple_index_impl()
594 value: object
597 Return number of occurrences of value.
601 tuple_count(PyTupleObject *self, PyObject *value) in tuple_count() argument
[all...]
/third_party/python/Objects/clinic/
H A Dbytearrayobject.c.h300 " -1 (the default value) means replace all occurrences.\n"
376 " None (the default value) means split on ASCII whitespace characters\n"
380 " -1 (the default value) means no limit.");
473 " None (the default value) means split on ASCII whitespace characters\n"
477 " -1 (the default value) means no limit.\n"
556 " The index where the value is to be inserted.\n"
647 " -1 (the default value) means remove the last item.\n"
689 "remove($self, value, /)\n"
692 "Remove the first occurrence of a value in the bytearray.\n"
694 " value\
707 int value; bytearray_remove() local
[all...]
/third_party/protobuf/ruby/compatibility_tests/v3.0.0/tests/
H A Drepeated_field_test.rb630 value :Default, 0
631 value :A, 1
632 value :B, 2
633 value :C, 3
/third_party/protobuf/ruby/tests/
H A Drepeated_field_test.rb652 value :Default, 0
653 value :A, 1
654 value :B, 2
655 value :C, 3
/third_party/python/Lib/test/
H A Dtest_int.py286 int('0', -909) # An old magic value base from Python 2.
304 def __init__(self, value):
305 self.value = value
307 return self.value
/third_party/skia/modules/skplaintexteditor/src/
H A Deditor.cpp140 static size_t count_char(const StringSlice& string, char value) { in count_char() argument
142 for (char c : string) { if (c == value) { ++count; } } in count_char()
256 // returns smallest i such that list[i] > value. value > list[i-1]
259 static size_t find_first_larger(const std::vector<T>& list, T value) { in find_first_larger() argument
260 return (size_t)(std::upper_bound(list.begin(), list.end(), value) - list.begin()); in find_first_larger()
349 // list[f] > value. value > list[f-1] in move()
/third_party/rust/crates/nom/src/multi/
H A Dmod.rs18 /// amount. This reduces the risk of a bogus count value triggering a panic
401 Ok((tail, value)) => { in many_m_n()
407 res.push(value); in many_m_n()
661 /// * `init` A function returning the initial value.
736 /// * `init` A function returning the initial value.
822 /// * `init` A function returning the initial value.
877 Ok((tail, value)) => { in fold_many_m_n()
883 acc = fold(acc, value); in fold_many_m_n()
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
H A Dx509.rs524 value: *mut c_void, in X509_add1_ext_i2d()
534 value: *mut c_void, in X509_CRL_add1_ext_i2d()
548 value: *mut c_void, in X509_REVOKED_add1_ext_i2d()
717 value: *mut c_void, in X509_ATTRIBUTE_create()
/third_party/rust/crates/rustix/src/backend/linux_raw/net/
H A Dsyscalls.rs776 let mut value = MaybeUninit::<T>::uninit(); variables
782 &mut value,
791 Ok(value.assume_init())
795 let mut value = MaybeUninit::<T>::uninit(); variables
803 (&mut value).into(),
812 Ok(value.assume_init())
821 value: T, in setsockopt()
838 by_ref(&value), in setsockopt()
851 by_ref(&value), in setsockopt()
1240 fn from_bool(value
[all...]
/third_party/spirv-tools/source/opt/
H A Dscalar_analysis.cpp27 // value, such as a load.
202 int64_t value = 0; in AnalyzeConstant() local
217 value = int_constant->GetS32BitValue(); in AnalyzeConstant()
219 value = int_constant->GetU32BitValue(); in AnalyzeConstant()
222 return CreateConstant(value); in AnalyzeConstant()
249 // The phi should only have two incoming value pairs. in AnalyzePhiInstruction()
305 // If the value is coming from the preheader block then the value is the in AnalyzePhiInstruction()
306 // initial value of the phi. in AnalyzePhiInstruction()
529 // If we're dealing with a value unknow in operator ==()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dwmm_ac.c314 static int param_in_range(const char *name, long value, in param_in_range() argument
317 if (value < min_val || (max_val >= 0 && value > max_val)) { in param_in_range()
320 name, value, min_val, max_val); in param_in_range()
789 /* the struct also contains the type and value, so decrease it */ in wmm_ac_rx_action()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dwmm_ac.c314 static int param_in_range(const char *name, long value, in param_in_range() argument
317 if (value < min_val || (max_val >= 0 && value > max_val)) { in param_in_range()
320 name, value, min_val, max_val); in param_in_range()
789 /* the struct also contains the type and value, so decrease it */ in wmm_ac_rx_action()
/third_party/glfw/deps/glad/
H A Dgl.h1745 * 64 bit value that wraps back to 0 every 584 years. Time intervals
1753 * Dummy value used to pad enum types to 32 bits.
1911 typedef void (GLAD_API_PTR *PFNGLACCUMPROC)(GLenum op, GLfloat value);
1948 typedef void (GLAD_API_PTR *PFNGLCLEARBUFFERFVPROC)(GLenum buffer, GLint drawbuffer, const GLfloat * value);
1949 typedef void (GLAD_API_PTR *PFNGLCLEARBUFFERIVPROC)(GLenum buffer, GLint drawbuffer, const GLint * value);
1950 typedef void (GLAD_API_PTR *PFNGLCLEARBUFFERUIVPROC)(GLenum buffer, GLint drawbuffer, const GLuint * value);
2404 typedef void (GLAD_API_PTR *PFNGLSAMPLECOVERAGEPROC)(GLfloat value, GLboolean invert);
2405 typedef void (GLAD_API_PTR *PFNGLSAMPLECOVERAGEARBPROC)(GLfloat value, GLboolean invert);
2514 typedef void (GLAD_API_PTR *PFNGLUNIFORM1FVPROC)(GLint location, GLsizei count, const GLfloat * value);
2516 typedef void (GLAD_API_PTR *PFNGLUNIFORM1IVPROC)(GLint location, GLsizei count, const GLint * value);
[all...]
/kernel/linux/linux-5.10/drivers/scsi/bfa/
H A Dbfa_fcs_lport.c1936 memcpy(attr->value, &bfa_fcs_lport_get_nwwn(port), templen); in bfa_fcs_lport_fdmi_build_rhba_pyld()
1949 memcpy(attr->value, fcs_hba_attr->manufacturer, templen); in bfa_fcs_lport_fdmi_build_rhba_pyld()
1963 memcpy(attr->value, fcs_hba_attr->serial_num, templen); in bfa_fcs_lport_fdmi_build_rhba_pyld()
1977 memcpy(attr->value, fcs_hba_attr->model, templen); in bfa_fcs_lport_fdmi_build_rhba_pyld()
1991 memcpy(attr->value, fcs_hba_attr->model_desc, templen); in bfa_fcs_lport_fdmi_build_rhba_pyld()
2006 memcpy(attr->value, fcs_hba_attr->hw_version, templen); in bfa_fcs_lport_fdmi_build_rhba_pyld()
2021 memcpy(attr->value, fcs_hba_attr->driver_version, templen); in bfa_fcs_lport_fdmi_build_rhba_pyld()
2036 memcpy(attr->value, fcs_hba_attr->option_rom_ver, templen); in bfa_fcs_lport_fdmi_build_rhba_pyld()
2048 memcpy(attr->value, fcs_hba_attr->fw_version, templen); in bfa_fcs_lport_fdmi_build_rhba_pyld()
2063 memcpy(attr->value, fcs_hba_att in bfa_fcs_lport_fdmi_build_rhba_pyld()
[all...]

Completed in 70 milliseconds

1...<<761762763764765766767768769770>>...1071