Home
last modified time | relevance | path

Searched refs:value (Results 3176 - 3200 of 27283) sorted by relevance

1...<<121122123124125126127128129130>>...1092

/third_party/node/deps/v8/src/zone/
H A Dzone-handle-set.h44 Address* const value = reinterpret_cast<Address*>(handle.address()); in insert() local
45 DCHECK(IsAligned(reinterpret_cast<Address>(value), kPointerAlignment)); in insert()
47 data_ = reinterpret_cast<Address>(value) | kSingletonTag; in insert()
49 if (singleton() == value) return; in insert()
51 if (singleton() < value) { in insert()
53 list->push_back(value); in insert()
55 list->push_back(value); in insert()
64 if (old_list->at(i) == value) return; in insert()
65 if (old_list->at(i) > value) break; in insert()
71 if (old_list->at(i) > value) brea in insert()
121 Handle<T> value = at(i); remove() local
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dbytestrie.cpp33 int32_t value; in readValue() local
35 value=leadByte-kMinOneByteValueLead; in readValue()
37 value=((leadByte-kMinTwoByteValueLead)<<8)|*pos; in readValue()
39 value=((leadByte-kMinThreeByteValueLead)<<16)|(pos[0]<<8)|pos[1]; in readValue()
41 value=(pos[0]<<16)|(pos[1]<<8)|pos[2]; in readValue()
43 value=(pos[0]<<24)|(pos[1]<<16)|(pos[2]<<8)|pos[3]; in readValue()
45 return value; in readValue()
107 // Leave the final value for getValue() to read. in branchNext()
110 // Use the non-final value as the jump delta. in branchNext()
172 // Skip intermediate value in nextImpl()
[all...]
/third_party/mesa3d/src/mesa/main/
H A Dmultisample.c45 _mesa_SampleCoverage(GLclampf value, GLboolean invert) in _mesa_SampleCoverage() argument
49 value = SATURATE(value); in _mesa_SampleCoverage()
52 ctx->Multisample.SampleCoverageValue == value) in _mesa_SampleCoverage()
57 ctx->Multisample.SampleCoverageValue = value; in _mesa_SampleCoverage()
188 min_sample_shading(struct gl_context *ctx, GLclampf value) in min_sample_shading() argument
190 value = SATURATE(value); in min_sample_shading()
192 if (ctx->Multisample.MinSampleShadingValue == value) in min_sample_shading()
197 ctx->Multisample.MinSampleShadingValue = value; in min_sample_shading()
204 _mesa_MinSampleShading_no_error(GLclampf value) _mesa_MinSampleShading_no_error() argument
211 _mesa_MinSampleShading(GLclampf value) _mesa_MinSampleShading() argument
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Ddouble-conversion-ieee.h74 // The value encoded by this Double must be greater or equal to +0.0.
82 // The value encoded by this Double must be strictly greater than 0.
84 DOUBLE_CONVERSION_ASSERT(value() > 0.0); in AsNormalizedDiyFp()
106 if (d64_ == kInfinity) return Double(kInfinity).value(); in NextDouble()
112 return Double(d64_ - 1).value(); in NextDouble()
114 return Double(d64_ + 1).value(); in NextDouble()
121 return Double(d64_ + 1).value(); in PreviousDouble()
124 return Double(d64_ - 1).value(); in PreviousDouble()
194 // Precondition: the value encoded by this Double must be greater or equal
204 // Precondition: the value encode
234 double value() const { return uint64_to_double(d64_); } value() function in double_conversion::Double
433 float value() const { return uint32_to_float(d32_); } value() function in double_conversion::Single
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Didnaconf.cpp112 /* Explain <xxxxx> tag to a native value
114 * Since <xxxxx> is always larger than the native value,
223 UnicodeString value; in Test() local
237 value.remove(); in Test()
241 // explain key:value in Test()
244 value.setTo(s,p+1).trim(); in Test()
246 if (value.compare(C_TOASCII, -1) == 0) { in Test()
248 } else if (value.compare(C_TOUNICODE, -1) == 0){ in Test()
252 if (value.compare(C_PASS, -1) == 0){ in Test()
254 } else if (value in Test()
[all...]
/third_party/libexif/contrib/c++/
H A Dexif.hxx238 void setByte(unsigned int index, ExifByte value) const in setByte()
249 + index * exif_format_get_size(entry_->format)) = value; in setByte()
264 void setShort(unsigned int index, ExifShort value) const in setShort()
277 value); in setShort()
280 void setLong(unsigned int index, ExifLong value) const in setLong()
293 value); in setLong()
296 void setSLong(unsigned int index, ExifSLong value) const in setSLong()
309 value); in setSLong()
312 void setRational(unsigned int index, ExifRational value) const in setRational()
325 value); in setRational()
344 const char *value() value() function
434 const char *value(ExifTag tag) value() function
[all...]
/third_party/node/deps/v8/src/compiler/
H A Djs-native-context-specialization.h99 Reduction ReduceElementAccess(Node* node, Node* index, Node* value,
105 Node* value, FeedbackSource const& source,
107 Reduction ReduceNamedAccess(Node* node, Node* value,
111 Node* receiver, Node* value, NameRef const& name,
118 Reduction ReduceElementAccessOnString(Node* node, Node* index, Node* value,
134 ValueEffectControl(Node* value, Node* effect, Node* control) in ValueEffectControl() argument
135 : value_(value), effect_(effect), control_(control) {} in ValueEffectControl()
137 Node* value() const { return value_; } in value() function in v8::internal::compiler::final::final
150 Node* lookup_start_object, Node* receiver, Node* value, Node* context,
159 ValueEffectControl BuildPropertyStore(Node* receiver, Node* value,
[all...]
H A Dsimplified-operator-reducer.cc150 Node* value = in Reduce() local
152 ReplaceWithValue(node, value); in Reduce()
153 return Replace(value); in Reduce()
284 Reduction SimplifiedOperatorReducer::ReplaceBoolean(bool value) { in ReplaceBoolean() argument
286 return Replace(jsgraph()->BooleanConstant(value)); in ReplaceBoolean()
288 return ReplaceInt32(value); in ReplaceBoolean()
292 Reduction SimplifiedOperatorReducer::ReplaceFloat64(double value) { in ReplaceFloat64() argument
293 return Replace(jsgraph()->Float64Constant(value)); in ReplaceFloat64()
297 Reduction SimplifiedOperatorReducer::ReplaceInt32(int32_t value) { in ReplaceInt32() argument
298 return Replace(jsgraph()->Int32Constant(value)); in ReplaceInt32()
302 ReplaceNumber(double value) ReplaceNumber() argument
307 ReplaceNumber(int32_t value) ReplaceNumber() argument
[all...]
/third_party/node/deps/v8/include/cppgc/
H A Dmember.h30 explicit MemberBase(const void* value) : raw_(value) {} in MemberBase() argument
31 MemberBase(const void* value, AtomicInitializerTag) { SetRawAtomic(value); } in MemberBase() argument
35 void SetRaw(void* value) { raw_ = value; } in SetRaw() argument
41 void SetRawAtomic(const void* value) { in SetRawAtomic() argument
43 value, std::memory_order_relaxed); in SetRawAtomic()
49 // All constructors initialize `raw_`. Do not add a default value here as it
89 typename = std::enable_if_t<std::is_base_of<T, U>::value>>
[all...]
/third_party/mesa3d/src/gallium/drivers/d3d12/
H A Dd3d12_video_encoder_references_manager_h264.cpp96 // List of past frame reference frames to be used for this frame. Each integer value in this array indices into in get_current_frame_picture_control_data()
99 // List of future frame reference frames to be used for this frame. Each integer value in this array indices into in get_current_frame_picture_control_data()
117 auto value = tmpL0[l0Idx]; in get_current_frame_picture_control_data() local
120 [&value](const D3D12_VIDEO_ENCODER_REFERENCE_PICTURE_DESCRIPTOR_H264 &p) { in get_current_frame_picture_control_data()
121 return p.FrameDecodingOrderNumber == value; in get_current_frame_picture_control_data()
142 auto value = tmpL1[l1Idx]; in get_current_frame_picture_control_data() local
145 [&value](const D3D12_VIDEO_ENCODER_REFERENCE_PICTURE_DESCRIPTOR_H264 &p) { in get_current_frame_picture_control_data()
146 return p.FrameDecodingOrderNumber == value; in get_current_frame_picture_control_data()
299 uint32_t value = m_curFrameState.pList0ReferenceFrames[idx]; in print_l0_l1_lists() local
301 list0ContentsString += std::to_string(value); in print_l0_l1_lists()
319 uint32_t value = m_curFrameState.pList1ReferenceFrames[idx]; print_l0_l1_lists() local
[all...]
/third_party/python/Lib/
H A Dheapq.py104 may not fit in the current tournament (because the value "wins" over
105 the last output value), it cannot fit in the heap, so the size of the
148 """Pop and return the current smallest value, and add the new item.
151 more appropriate when using a fixed-size heap. Note that the value
205 # is the index of a leaf with a possibly out-of-order value. Restore the
359 value, order, next = s = h[0]
360 yield value
367 value, order, next = h[0]
368 yield value
375 value
[all...]
/third_party/pulseaudio/sonic/
H A Dwave.c58 int value) in writeInt()
64 bytes[i] = value; in writeInt()
65 value >>= 8; in writeInt()
73 short value) in writeShort()
79 bytes[i] = value; in writeShort()
80 value >>= 8; in writeShort()
120 int value = 0, i; in readInt() local
124 value <<= 8; in readInt()
125 value |= bytes[i]; in readInt()
127 return value; in readInt()
56 writeInt( waveFile file, int value) writeInt() argument
71 writeShort( waveFile file, short value) writeShort() argument
135 int value = 0, i; readShort() local
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/cl/
H A DCLKernelCL.cpp34 T &value, in GetWorkGroupInfo()
38 sizeof(T), &value, nullptr); in GetWorkGroupInfo()
46 T &value, in GetArgInfo()
50 sizeof(T), &value, nullptr); in GetArgInfo()
59 bool GetKernelInfo(cl_kernel kernel, cl::KernelInfo name, T &value, cl_int &errorCode) in GetKernelInfo() argument
61 errorCode = kernel->getDispatch().clGetKernelInfo(kernel, cl::ToCLenum(name), sizeof(T), &value, in GetKernelInfo()
131 void *value = nullptr; in setArg() local
134 // If argument is a CL object, fetch the mapped value in setArg()
141 value = memory->cast<cl::Memory>().getImpl<CLMemoryCL>().getNative(); in setArg()
144 if (value in setArg()
31 GetWorkGroupInfo(cl_kernel kernel, cl_device_id device, cl::KernelWorkGroupInfo name, T &value, cl_int &errorCode) GetWorkGroupInfo() argument
43 GetArgInfo(cl_kernel kernel, cl_uint index, cl::KernelArgInfo name, T &value, cl_int &errorCode) GetArgInfo() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/common/
H A Ddebug.h130 // compiler warnings like "value computed is not used" and "statement has no effect".
145 std::ostream &FmtHex(std::ostream &os, T value) in FmtHex() argument
153 os << std::hex << std::uppercase << std::setw(N) << std::setfill('0') << value; in FmtHex()
163 std::ostream &FmtHexAutoSized(std::ostream &os, T value) in FmtHexAutoSized() argument
166 return priv::FmtHex<N>(os, value); in FmtHexAutoSized()
173 FmtHexHelper(const char *prefix, T value) : mPrefix(prefix), mValue(value) {} in FmtHexHelper() argument
174 explicit FmtHexHelper(T value) : mPrefix(nullptr), mValue(value) {} in FmtHexHelper() argument
193 priv::FmtHexHelper<T> FmtHex(T value) in FmtHex() argument
204 FmtHex(std::ostream &os, T value) FmtHex() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/third_party/perf/
H A Dperf_test.cc44 std::string NumberToString(size_t value) in NumberToString() argument
46 return StringPrintf("%u", value); in NumberToString()
49 std::string NumberToString(double value) in NumberToString() argument
51 return StringPrintf("%.10lf", value); in NumberToString()
63 // <*>RESULT <graph_name>: <trace_name>= <value> <units> in ResultsToString()
65 // <*>RESULT <graph_name>: <trace_name>= [<value>,value,value,...,] <units> in ResultsToString()
95 size_t value, in PrintResult()
99 PrintResultsImpl(measurement, modifier, trace, NumberToString(value), st in PrintResult()
92 PrintResult(const std::string &measurement, const std::string &modifier, const std::string &trace, size_t value, const std::string &units, bool important) PrintResult() argument
103 PrintResult(const std::string &measurement, const std::string &modifier, const std::string &trace, double value, const std::string &units, bool important) PrintResult() argument
114 AppendResult(std::string &output, const std::string &measurement, const std::string &modifier, const std::string &trace, size_t value, const std::string &units, bool important) AppendResult() argument
126 PrintResult(const std::string &measurement, const std::string &modifier, const std::string &trace, const std::string &value, const std::string &units, bool important) PrintResult() argument
137 AppendResult(std::string &output, const std::string &measurement, const std::string &modifier, const std::string &trace, const std::string &value, const std::string &units, bool important) AppendResult() argument
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Ddouble-conversion-ieee.h74 // The value encoded by this Double must be greater or equal to +0.0.
82 // The value encoded by this Double must be strictly greater than 0.
84 DOUBLE_CONVERSION_ASSERT(value() > 0.0); in AsNormalizedDiyFp()
106 if (d64_ == kInfinity) return Double(kInfinity).value(); in NextDouble()
112 return Double(d64_ - 1).value(); in NextDouble()
114 return Double(d64_ + 1).value(); in NextDouble()
121 return Double(d64_ + 1).value(); in PreviousDouble()
124 return Double(d64_ - 1).value(); in PreviousDouble()
186 // Precondition: the value encoded by this Double must be greater or equal
196 // Precondition: the value encode
226 double value() const { return uint64_to_double(d64_); } value() function in double_conversion::Double
412 float value() const { return uint32_to_float(d32_); } value() function in double_conversion::Single
[all...]
/third_party/skia/third_party/externals/freetype/src/psnames/
H A Dpsmodule.c55 /* Return the Unicode value corresponding to a given glyph. Note that */
58 /* VARIANT_BIT is set in the return value. */
76 FT_UInt32 value = 0; in ps_unicode_value() local
102 value = ( value << 4 ) + d; in ps_unicode_value()
109 return value; in ps_unicode_value()
111 return (FT_UInt32)( value | VARIANT_BIT ); in ps_unicode_value()
120 FT_UInt32 value = 0; in ps_unicode_value() local
143 value = ( value << in ps_unicode_value()
158 FT_UInt32 value = 0; ps_unicode_value() local
[all...]
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
H A Dparser_impl_global_variable_decl_test.cc27 auto e = p->global_variable_decl(decos.value); in TEST_F()
31 ASSERT_NE(e.value, nullptr); in TEST_F()
50 auto e = p->global_variable_decl(decos.value); in TEST_F()
54 ASSERT_NE(e.value, nullptr); in TEST_F()
74 auto e = p->global_variable_decl(decos.value); in TEST_F()
78 ASSERT_NE(e.value, nullptr); in TEST_F()
104 auto e = p->global_variable_decl(decos.value); in TEST_F()
108 ASSERT_NE(e.value, nullptr); in TEST_F()
134 auto e = p->global_variable_decl(decos.value); in TEST_F()
137 EXPECT_NE(e.value, nullpt in TEST_F()
[all...]
/third_party/spirv-headers/tools/buildHeaders/
H A DjsonToSpirv.h148 // JSON file. You can look up a value by enum or by name. If there are
150 // The EValue must have an unsigned |value| field and a string |name| field.
167 // Returns the first EValue in the sequence with the given value.
168 // More than one EValue might have the same value.
169 EValue& operator[](unsigned value) { in operator []() argument
170 auto where = std::find_if(begin(), end(), [&value](const EValue& e) { in operator []()
171 return value == e.value; in operator []()
176 // gets *all* entries for the value, including the first one
177 void gatherAliases(unsigned value, st argument
215 unsigned value; global() member in spv::EnumValue
249 operator [](unsigned value) operator []() argument
255 getName(unsigned value) getName() argument
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dbytestrie.cpp33 int32_t value; in readValue() local
35 value=leadByte-kMinOneByteValueLead; in readValue()
37 value=((leadByte-kMinTwoByteValueLead)<<8)|*pos; in readValue()
39 value=((leadByte-kMinThreeByteValueLead)<<16)|(pos[0]<<8)|pos[1]; in readValue()
41 value=(pos[0]<<16)|(pos[1]<<8)|pos[2]; in readValue()
43 value=(pos[0]<<24)|(pos[1]<<16)|(pos[2]<<8)|pos[3]; in readValue()
45 return value; in readValue()
107 // Leave the final value for getValue() to read. in branchNext()
110 // Use the non-final value as the jump delta. in branchNext()
172 // Skip intermediate value in nextImpl()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DparserRealSource1.js106 export function stringToLiteral(value: string, length: number): string {
110 var ch = value.charCodeAt(index);
137 result += value.charAt(index);
141 var tooLong = (value.length > length);
146 for (var i = value.length - mid; i < value.length; i++) addChar(i);
149 length = value.length;
245 function stringToLiteral(value, length) {
248 var ch = value.charCodeAt(index);
275 result += value
[all...]
/third_party/protobuf/src/google/protobuf/stubs/
H A Dtime.cc132 // precision to represent the exact value.
146 // integer value does not fall in the range of [min_value, max_value].
152 int value = 0; in ParseInt() local
155 value = value * 10 + (*data - '0'); in ParseInt()
160 if (value >= min_value && value <= max_value) { in ParseInt()
161 *result = value; in ParseInt()
174 int value = 0; in ParseNanos() local
180 value in ParseNanos()
285 ParseTime(const string& value, int64* seconds, int32* nanos) ParseTime() argument
[all...]
/kernel/linux/linux-5.10/drivers/gpio/
H A Dgpio-xra1403.c60 int value) in xra1403_direction_output()
71 BIT(offset % 8), value ? BIT(offset % 8) : 0); in xra1403_direction_output()
105 static void xra1403_set(struct gpio_chip *chip, unsigned int offset, int value) in xra1403_set() argument
111 BIT(offset % 8), value ? BIT(offset % 8) : 0); in xra1403_set()
122 int value[XRA_LAST]; in xra1403_dbg_show() local
131 seq_puts(s, "\n value:"); in xra1403_dbg_show()
133 regmap_read(xra->regmap, reg, &value[reg]); in xra1403_dbg_show()
134 seq_printf(s, " %2.2x", value[reg]); in xra1403_dbg_show()
138 gcr = value[XRA_GCR + 1] << 8 | value[XRA_GC in xra1403_dbg_show()
59 xra1403_direction_output(struct gpio_chip *chip, unsigned int offset, int value) xra1403_direction_output() argument
[all...]
/kernel/linux/linux-5.10/drivers/clk/zynqmp/
H A Ddivider.c85 u32 div, value; in zynqmp_clk_divider_recalc_rate() local
95 value = div & 0xFFFF; in zynqmp_clk_divider_recalc_rate()
97 value = div >> 16; in zynqmp_clk_divider_recalc_rate()
100 value = 1 << value; in zynqmp_clk_divider_recalc_rate()
102 if (!value) { in zynqmp_clk_divider_recalc_rate()
109 return DIV_ROUND_UP_ULL(parent_rate, value); in zynqmp_clk_divider_recalc_rate()
132 /* if read only, just return current value */ in zynqmp_clk_divider_round_rate()
175 u32 value, div; in zynqmp_clk_divider_set_rate() local
178 value in zynqmp_clk_divider_set_rate()
[all...]
/kernel/linux/linux-5.10/arch/alpha/kernel/
H A Dcore_apecs.c130 unsigned int stat0, value; in conf_read() local
159 asm volatile("ldl %0,%1; mb; mb" : "=r"(value) : "m"(*(vuip)addr) in conf_read()
164 value = 0xffffffffU; in conf_read()
194 value = 0xffffffff; in conf_read()
205 return value; in conf_read()
209 conf_write(unsigned long addr, unsigned int value, unsigned char type1) in conf_write() argument
234 *(vuip)addr = value; in conf_write()
276 int size, u32 *value) in apecs_read_config()
289 *value = conf_read(addr, type1) >> (shift); in apecs_read_config()
295 int size, u32 value) in apecs_write_config()
275 apecs_read_config(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *value) apecs_read_config() argument
294 apecs_write_config(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 value) apecs_write_config() argument
[all...]

Completed in 18 milliseconds

1...<<121122123124125126127128129130>>...1092