Home
last modified time | relevance | path

Searched refs:value (Results 12501 - 12525 of 27198) sorted by relevance

1...<<501502503504505506507508509510>>...1088

/third_party/lzma/CPP/7zip/UI/Console/
H A DList.cpp523 static inline char GetHex(Byte value) in GetHex() argument
525 return (char)((value < 10) ? ('0' + value) : ('a' + (value - 10))); in GetHex()
728 static void PrintNumber(EAdjustment adj, unsigned width, const CListUInt64Def &value) in PrintNumber() argument
732 if (value.Def) in PrintNumber()
733 ConvertUInt64ToString(value.Val, s); in PrintNumber()
786 static HRESULT GetUInt64Value(IInArchive *archive, UInt32 index, PROPID propID, CListUInt64Def &value) in GetUInt64Value() argument
788 value.Val = 0; in GetUInt64Value()
789 value in GetUInt64Value()
[all...]
/third_party/mesa3d/src/compiler/glsl/
H A Dir.h50 * Each concrete class derived from \c ir_instruction has a value in this
51 * enumerant. The value for the type is stored in \c ir_instruction::ir_type
191 * return the same value as this one.
241 * Get the variable that is ultimately referenced by an r-value
250 * If an r-value is a reference to a whole variable, get that variable
253 * Pointer to a variable that is completely dereferenced by the r-value. If
254 * the r-value is not a dereference or the dereference does not access the
264 * Determine if an r-value has the value zero
268 * for vector and scalar types that have all elements set to the value
1725 ir_return(ir_rvalue *value) ir_return() argument
1744 ir_rvalue *value; global() member in ir_return
2361 union ir_constant_data value; global() member in ir_constant
[all...]
/third_party/node/deps/v8/src/wasm/
H A Dwasm-module-builder.cc146 void WasmFunctionBuilder::EmitI32Const(int32_t value) { in EmitI32Const() argument
147 EmitWithI32V(kExprI32Const, value); in EmitI32Const()
150 void WasmFunctionBuilder::EmitI64Const(int64_t value) { in EmitI64Const() argument
152 body_.write_i64v(value); in EmitI64Const()
155 void WasmFunctionBuilder::EmitF32Const(float value) { in EmitF32Const() argument
157 body_.write_f32(value); in EmitF32Const()
160 void WasmFunctionBuilder::EmitF64Const(double value) { in EmitF64Const() argument
162 body_.write_f64(value); in EmitF64Const()
439 void WasmModuleBuilder::SetMinMemorySize(uint32_t value) { in SetMinMemorySize() argument
440 min_memory_size_ = value; in SetMinMemorySize()
443 SetMaxMemorySize(uint32_t value) SetMaxMemorySize() argument
[all...]
/third_party/node/deps/icu-small/source/tools/icuexportdata/
H A Dicuexportdata.cpp124 const char *getName(uint32_t value) override {
125 return u_getPropertyValueName(property, value, U_SHORT_PROPERTY_NAME);
172 // If the value exists, dump an indented entry of the format
260 * Note: the data will store 0 for code points without a value defined for
280 // Therefore, when the value is undefined for a code point, keep a 0 in the trie in dumpBidiMirroringGlyph()
281 // instead of the ICU API behavior of returning the code point value. Using 0 in dumpBidiMirroringGlyph()
313 // After printing property value `v`, print `mask` if and only if `mask` comes immediately
386 // Get the Script value in dumpScriptExtensions()
388 // Get the Script_Extensions value (array of Script codes) in dumpScriptExtensions()
401 // Copy the Script value int in dumpScriptExtensions()
[all...]
/third_party/icu/icu4c/source/tools/icuexportdata/
H A Dicuexportdata.cpp124 const char *getName(uint32_t value) override {
125 return u_getPropertyValueName(property, value, U_SHORT_PROPERTY_NAME);
209 // Get the Script value in dumpScriptExtensions()
211 // Get the Script_Extensions value (array of Script codes) in dumpScriptExtensions()
224 // Copy the Script value into the first position of the scx array only in dumpScriptExtensions()
225 // if we have the "other" case (Script value is not Common nor Inherited). in dumpScriptExtensions()
226 // This offers faster access when users want only the Script value. in dumpScriptExtensions()
231 // See if there is already an scx value array matching the newly built one. in dumpScriptExtensions()
233 // If not, then append the new value array. in dumpScriptExtensions()
248 // We must update the value i in dumpScriptExtensions()
[all...]
/third_party/node/deps/v8/src/compiler/backend/
H A Dinstruction.cc26 #include "src/wasm/value-type.h"
316 // destination, implying its value is no longer live.
548 value_ = info.value();
554 Handle<HeapObject> value(
556 return value;
561 Handle<CodeT> value(
563 DCHECK(value->IsCodeT(GetPtrComprCageBaseSlow(*value)));
564 return value;
569 const StringConstantBase* value
[all...]
/third_party/node/deps/v8/base/trace_event/common/
H A Dtrace_event_common.h401 // all match. |id| must either be a pointer or an integer value up to 64 bits.
494 // all match. |id| must either be a pointer or an integer value up to 64 bits.
523 // Records the value of a counter called "name" immediately. Value
527 #define TRACE_COUNTER1(category_group, name, value) \
529 TRACE_EVENT_FLAG_NONE, "value", \
530 static_cast<int>(value))
531 #define TRACE_COUNTER_WITH_FLAG1(category_group, name, flag, value) \
533 flag, "value", static_cast<int>(value))
534 #define TRACE_COPY_COUNTER1(category_group, name, value) \
[all...]
/third_party/node/deps/v8/src/heap/
H A Dfactory.h425 Handle<Cell> NewCell(Handle<Object> value);
428 Handle<Name> name, PropertyDetails details, Handle<Object> value,
432 Handle<FeedbackCell> NewNoClosuresCell(Handle<HeapObject> value);
433 Handle<FeedbackCell> NewOneClosureCell(Handle<HeapObject> value);
434 Handle<FeedbackCell> NewManyClosuresCell(Handle<HeapObject> value);
503 Handle<HeapNumber> NewHeapNumberForCodeAssembler(double value);
668 Handle<JSIteratorResult> NewJSIteratorResult(Handle<Object> value, bool done);
697 Handle<JSObject> NewExternal(void* value);
746 Handle<HeapNumber> number, double value,
749 Handle<String> SizeToString(size_t value, boo
750 Uint32ToString(uint32_t value, bool check_cache = true) Uint32ToString() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_format.c419 * Ordered by increasing SVGA3dSurfaceFormat value, but with gaps.
1485 * Return string name of an SVGA3dDevCapIndex value.
1693 caps->value = result.u; in svga_get_format_cap()
1696 caps->value = entry->defaultOperations; in svga_get_format_cap()
2275 (caps.value & SVGA3DFORMAT_OP_NOALPHABLEND)) { in svga_is_format_supported()
2280 mask.value = 0; in svga_is_format_supported()
2282 mask.value |= SVGA3DFORMAT_OP_OFFSCREEN_RENDERTARGET; in svga_is_format_supported()
2285 mask.value |= SVGA3DFORMAT_OP_ZSTENCIL; in svga_is_format_supported()
2288 mask.value |= SVGA3DFORMAT_OP_TEXTURE; in svga_is_format_supported()
2291 mask.value | in svga_is_format_supported()
[all...]
/third_party/node/deps/openssl/openssl/apps/
H A Dpkcs12.c1130 /* Generalised x509 attribute value print */
1134 char *value; in print_attribute() local
1138 value = OPENSSL_uni2asc(av->value.bmpstring->data, in print_attribute()
1139 av->value.bmpstring->length); in print_attribute()
1140 BIO_printf(out, "%s\n", value); in print_attribute()
1141 OPENSSL_free(value); in print_attribute()
1145 BIO_printf(out, "%.*s\n", av->value.utf8string->length, in print_attribute()
1146 av->value.utf8string->data); in print_attribute()
1150 hex_prin(out, av->value in print_attribute()
[all...]
/third_party/rust/crates/bitflags/src/
H A Dlib.rs146 //! implemented by displaying the bits value of the internal struct.
164 //! - `bits`: the raw value of the flags currently stored
181 //! - `set`: inserts or removes the specified flags depending on the passed value
199 //! If your default value is equal to `0` (which is the same value as calling `empty()`
206 //! // Results in default value with bits: 0
221 //! If your default value is not equal to `0` you need to implement `Default` yourself:
249 //! Flags with a value equal to zero will have some strange behavior that one should be aware of.
276 //! Users should generally avoid defining a flag with a value of zero.
356 const $Flag:ident = $value
1638 pub fn value() -> u8 { test_pub_in_module() functions
[all...]
/third_party/openssl/apps/
H A Dpkcs12.c1134 /* Generalised x509 attribute value print */
1138 char *value; in print_attribute() local
1142 value = OPENSSL_uni2asc(av->value.bmpstring->data, in print_attribute()
1143 av->value.bmpstring->length); in print_attribute()
1144 BIO_printf(out, "%s\n", value); in print_attribute()
1145 OPENSSL_free(value); in print_attribute()
1149 BIO_printf(out, "%.*s\n", av->value.utf8string->length, in print_attribute()
1150 av->value.utf8string->data); in print_attribute()
1154 hex_prin(out, av->value in print_attribute()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
H A DvktImageSubresourceLayoutTests.cpp301 float value; in getNormalFPValue() local
303 value = rnd.getFloat(); in getNormalFPValue()
304 } while (tcu::Float32(value).isDenorm()); in getNormalFPValue()
305 return value; in getNormalFPValue()
311 double value; in getNormalFPValue() local
313 value = rnd.getDouble(); in getNormalFPValue()
314 } while (tcu::Float64(value).isDenorm()); in getNormalFPValue()
315 return value; in getNormalFPValue()
321 tcu::Float16 value; in getNormalFPValue() local
323 value in getNormalFPValue()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/robustness/
H A DvktRobustnessVertexAccessTests.cpp143 bool isValueWithinVertexBufferOrZero (void* vertexBuffer, VkDeviceSize vertexBufferSize, const void* value, deUint32 valueIndexa);
146 static bool isExpectedValueFromVertexBuffer (const void* vertexBuffer, deUint32 vertexIndex, VkFormat vertexFormat, const void* value);
828 return tcu::TestStatus::fail("Invalid value(s) found"); in iterate()
902 // Log value information in verifyResult()
910 // Result index and value in verifyResult()
937 // or the maximum representable positive integer value (if the format is integer-based). in verifyResult()
952 logMsg << ", Failed: expected a value within the buffer range or 0"; in verifyResult()
963 logMsg << ", Failed: unexpected value"; in verifyResult()
972 bool VertexAccessInstance::isValueWithinVertexBufferOrZero(void* vertexBuffer, VkDeviceSize vertexBufferSize, const void* value, deUint32 valueIndex) in isValueWithinVertexBufferOrZero() argument
976 const float normValue = *reinterpret_cast<const float*>(value); in isValueWithinVertexBufferOrZero()
1011 isExpectedValueFromVertexBuffer(const void* vertexBuffer, deUint32 vertexIndex, VkFormat vertexFormat, const void* value) isExpectedValueFromVertexBuffer() argument
[all...]
/third_party/skia/third_party/externals/libwebp/src/enc/
H A Dpicture_csp_enc.c80 #define kGamma 0.80 // for now we use a different gamma value than kGammaF
123 // Convert a linear value 'v' to YUV_FIX+2 fixed-point precision
124 // U/V value, suitable for RGBToU/V calls.
126 const int y = Interpolate(base_value << shift); // final uplifted value in LinearToGamma()
196 double value; in WEBP_DSP_INIT_FUNC() local
198 value = g / 4.5; in WEBP_DSP_INIT_FUNC()
201 value = pow(a_rec * (g + a), kGammaF); in WEBP_DSP_INIT_FUNC()
203 kGammaToLinearTabS[v] = (uint32_t)(value * final_scale + .5); in WEBP_DSP_INIT_FUNC()
207 double value; in WEBP_DSP_INIT_FUNC() local
209 value in WEBP_DSP_INIT_FUNC()
228 LinearToGammaS(uint32_t value) LinearToGammaS() argument
249 LinearToGammaS(uint32_t value) LinearToGammaS() argument
[all...]
/third_party/skia/src/sksl/dsl/
H A DDSLCore.cpp285 static DSLStatement Return(DSLExpression value, PositionInfo pos) { in Return() argument
288 // errors, or coerce the value to the correct type, until the return statement is actually in Return()
290 return SkSL::ReturnStatement::Make(pos.line(), value.releaseIfPossible()); in Return()
336 static DSLPossibleStatement Switch(DSLExpression value, SkTArray<DSLCase> cases, in Switch() argument
348 value.release(), std::move(values), std::move(caseBlocks), in Switch()
398 // Logically, we'd want the variable's initial value to appear on here in Declare, since that
403 // variable's initial value is unknown at the point of reference. There are probably some other
405 // expect its value to be known when it is referenced and will end up asserting, dereferencing a
408 // So, we put the initial value onto the Var itself instead of the Declare to guarantee that it is
478 DSLPossibleStatement PossibleStaticSwitch(DSLExpression value, SkTArra argument
482 StaticSwitch(DSLExpression value, SkTArray<DSLCase> cases, PositionInfo pos) StaticSwitch() argument
486 PossibleSwitch(DSLExpression value, SkTArray<DSLCase> cases) PossibleSwitch() argument
490 Switch(DSLExpression value, SkTArray<DSLCase> cases, PositionInfo pos) Switch() argument
[all...]
/third_party/python/Lib/xml/dom/
H A Dexpatbuilder.py285 value = node.data + data
286 node.data = value
305 def entity_decl_handler(self, entityName, is_parameter_entity, value,
314 if value is not None:
317 child = self.document.createTextNode(value)
361 value = attributes[i+1]
362 a.value = value
473 "startContainer() returned illegal value: " + repr(val))
493 "acceptNode() returned illegal value
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/robustness/
H A DvktRobustnessVertexAccessTests.cpp146 bool isValueWithinVertexBufferOrZero (void* vertexBuffer, VkDeviceSize vertexBufferSize, const void* value, deUint32 valueIndexa);
149 static bool isExpectedValueFromVertexBuffer (const void* vertexBuffer, deUint32 vertexIndex, VkFormat vertexFormat, const void* value);
835 return tcu::TestStatus::fail("Invalid value(s) found"); in iterate()
909 // Log value information in verifyResult()
917 // Result index and value in verifyResult()
944 // or the maximum representable positive integer value (if the format is integer-based). in verifyResult()
959 logMsg << ", Failed: expected a value within the buffer range or 0"; in verifyResult()
970 logMsg << ", Failed: unexpected value"; in verifyResult()
979 bool VertexAccessInstance::isValueWithinVertexBufferOrZero(void* vertexBuffer, VkDeviceSize vertexBufferSize, const void* value, deUint32 valueIndex) in isValueWithinVertexBufferOrZero() argument
983 const float normValue = *reinterpret_cast<const float*>(value); in isValueWithinVertexBufferOrZero()
1018 isExpectedValueFromVertexBuffer(const void* vertexBuffer, deUint32 vertexIndex, VkFormat vertexFormat, const void* value) isExpectedValueFromVertexBuffer() argument
[all...]
/third_party/vk-gl-cts/framework/qphelper/
H A DqpTestLog.c204 /* Sample value tag to string mapping. */
298 DE_INLINE void floatToString (float value, char* buf, size_t bufSize) in floatToString() argument
300 deSprintf(buf, bufSize, "%f", value); in floatToString()
303 DE_INLINE void doubleToString (double value, char* buf, size_t bufSize) in doubleToString() argument
305 deSprintf(buf, bufSize, "%f", value); in doubleToString()
650 * \brief Write key-value-pair into log
655 * \param value Value of the key-value-pair
665 * \brief Write key-value-pair into log
670 * \param value Valu
673 qpTestLog_writeInteger(qpTestLog* log, const char* name, const char* description, const char* unit, qpKeyValueTag tag, deInt64 value) qpTestLog_writeInteger() argument
691 qpTestLog_writeFloat(qpTestLog* log, const char* name, const char* description, const char* unit, qpKeyValueTag tag, float value) qpTestLog_writeFloat() argument
1488 qpTestLog_writeValueFloat(qpTestLog* log, double value) qpTestLog_writeValueFloat() argument
1508 qpTestLog_writeValueInteger(qpTestLog* log, deInt64 value) qpTestLog_writeValueInteger() argument
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/display/
H A Dintel_hdcp.c884 u64 value, bool update_property) in intel_hdcp_update_value()
892 if (hdcp->value == value) in intel_hdcp_update_value()
897 if (hdcp->value == DRM_MODE_CONTENT_PROTECTION_ENABLED) { in intel_hdcp_update_value()
900 } else if (value == DRM_MODE_CONTENT_PROTECTION_ENABLED) { in intel_hdcp_update_value()
904 hdcp->value = value; in intel_hdcp_update_value()
927 if (hdcp->value != DRM_MODE_CONTENT_PROTECTION_ENABLED || in intel_hdcp_check_link()
947 if (hdcp->value != DRM_MODE_CONTENT_PROTECTION_UNDESIRED) { in intel_hdcp_check_link()
994 * those to UNDESIRED is handled by core. If value in intel_hdcp_prop_work()
883 intel_hdcp_update_value(struct intel_connector *connector, u64 value, bool update_property) intel_hdcp_update_value() argument
[all...]
/kernel/linux/linux-5.10/drivers/soundwire/
H A Dintel.c133 static inline void intel_writel(void __iomem *base, int offset, int value) in intel_writel() argument
135 writel(value, base + offset); in intel_writel()
143 static inline void intel_writew(void __iomem *base, int offset, u16 value) in intel_writew() argument
145 writew(value, base + offset); in intel_writew()
165 static int intel_clear_bit(void __iomem *base, int offset, u32 value, u32 mask) in intel_clear_bit() argument
167 writel(value, base + offset); in intel_clear_bit()
171 static int intel_set_bit(void __iomem *base, int offset, u32 value, u32 mask) in intel_set_bit() argument
173 writel(value, base + offset); in intel_set_bit()
187 int value; in intel_sprintf() local
190 value in intel_sprintf()
265 intel_set_m_datamode(void *data, u64 value) intel_set_m_datamode() argument
283 intel_set_s_datamode(void *data, u64 value) intel_set_s_datamode() argument
[all...]
/kernel/linux/linux-5.10/tools/power/x86/intel-speed-select/
H A Disst-config.c165 int value; in parse_int_file() local
177 if (fscanf(filep, "%d", &value) != 1) in parse_int_file()
181 return value; in parse_int_file()
694 unsigned int *value) in isst_send_mmio_command()
713 io_regs.io_reg[0].value = *value; in isst_send_mmio_command()
728 *value = io_regs.io_reg[0].value; in isst_send_mmio_command()
732 cpu, reg, write, *value); in isst_send_mmio_command()
754 unsigned int value; in isst_send_mbox_command() local
693 isst_send_mmio_command(unsigned int cpu, unsigned int reg, int write, unsigned int *value) isst_send_mmio_command() argument
1055 float value = 0; clx_n_get_base_ratio() local
[all...]
/kernel/linux/linux-5.10/drivers/media/tuners/
H A Dxc4000.c165 The [len] value should be interpreted as follows:
1454 u16 value = 0; in xc4000_get_signal() local
1458 rc = xc4000_readreg(priv, XREG_SIGNAL_LEVEL, &value); in xc4000_get_signal()
1467 tuner_dbg("Signal strength: -%ddB (%05d)\n", value >> 8, value); in xc4000_get_signal()
1482 rc = xc4000_readreg(priv, XREG_NOISE_LEVEL, &value); in xc4000_get_signal()
1485 tuner_dbg("Noise level: %ddB (%05d)\n", value >> 8, value); in xc4000_get_signal()
1488 if (value >= 0x2000) { in xc4000_get_signal()
1489 value in xc4000_get_signal()
[all...]
/kernel/linux/linux-5.10/drivers/pinctrl/
H A Dpinctrl-st.c633 unsigned int value; in st_pinconf_get_retime_dedicated() local
638 regmap_field_read(rt_d->rt[pin], &value); in st_pinconf_get_retime_dedicated()
640 rt_clk = (value & RT_D_CFG_CLK_MASK) >> RT_D_CFG_CLK_SHIFT; in st_pinconf_get_retime_dedicated()
643 delay_bits = (value & RT_D_CFG_DELAY_MASK) >> RT_D_CFG_DELAY_SHIFT; in st_pinconf_get_retime_dedicated()
647 if (value & RT_D_CFG_CLKNOTDATA_MASK) in st_pinconf_get_retime_dedicated()
650 if (value & RT_D_CFG_DOUBLE_EDGE_MASK) in st_pinconf_get_retime_dedicated()
653 if (value & RT_D_CFG_INVERTCLK_MASK) in st_pinconf_get_retime_dedicated()
656 if (value & RT_D_CFG_RETIME_MASK) in st_pinconf_get_retime_dedicated()
665 unsigned offset, int value) in __st_gpio_set()
667 if (value) in __st_gpio_set()
664 __st_gpio_set(struct st_gpio_bank *bank, unsigned offset, int value) __st_gpio_set() argument
710 st_gpio_set(struct gpio_chip *chip, unsigned offset, int value) st_gpio_set() argument
723 st_gpio_direction_output(struct gpio_chip *chip, unsigned offset, int value) st_gpio_direction_output() argument
741 unsigned int value; st_gpio_get_direction() local
[all...]
/kernel/linux/linux-5.10/drivers/scsi/aacraid/
H A Daacraid.h199 /* Lower 32-bits of tweak value for crypto enabled IOs */
224 /* Upper 32-bits of tweak value for crypto enabled IOs */
1084 #define sa_writew(AEP, CSR, value) writew(value, &((AEP)->regs.sa->CSR))
1085 #define sa_writel(AEP, CSR, value) writel(value, &((AEP)->regs.sa->CSR))
1146 #define rx_writeb(AEP, CSR, value) writeb(value, &((AEP)->regs.rx->CSR))
1147 #define rx_writel(AEP, CSR, value) writel(value,
[all...]

Completed in 60 milliseconds

1...<<501502503504505506507508509510>>...1088