Home
last modified time | relevance | path

Searched refs:value (Results 8976 - 9000 of 31473) sorted by relevance

1...<<351352353354355356357358359360>>...1259

/third_party/node/deps/v8/src/ic/
H A Daccessor-assembler.h100 lookup_start_object_(lookup_start_object ? lookup_start_object.value() in LoadICParameters()
117 return lookup_start_object_.value(); in lookup_start_object()
148 lookup_start_object_(lookup_start_object ? lookup_start_object.value() in LazyLoadICParameters()
209 TNode<Object> name, TNode<Object> value, in StoreICParameters()
215 value_(value), in StoreICParameters()
221 TNode<Object> receiver() const { return receiver_.value(); } in receiver()
223 TNode<Object> value() const { return value_; } in value() function
280 TNode<Object> value, Label* slow,
288 TNode<Uint32T> details, TNode<Object> value);
294 TNode<Object> value, Labe
[all...]
/third_party/node/deps/v8/src/strings/
H A Dunicode.cc57 uint16_t value = chr & (kChunkBits - 1); in LookupPredicate() local
65 if ((current_value <= value) && in LookupPredicate()
67 GetEntry(TableGet<kEntryDist>(table, mid + 1)) > value)) { in LookupPredicate()
70 } else if (current_value < value) { in LookupPredicate()
72 } else if (current_value > value) { in LookupPredicate()
73 // If we've just checked the bottom-most value and it's not in LookupPredicate()
82 return (entry == value) || (entry < value && is_start); in LookupPredicate()
127 // If we've just checked the bottom-most value and it's not in LookupMapping()
138 int32_t value in LookupMapping() local
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dmeasunit_extra.cpp44 // Trie value offset for SI or binary prefixes. This is big enough to ensure we only
48 "kPrefixOffset is too small for minimum UMeasurePrefix value");
50 "kPrefixOffset is too small for minimum UMeasurePrefix value");
52 // Trie value offset for compound parts, e.g. "-per-", "-", "-and-".
68 // Trie value offset for "per-".
77 // Trie value offset for powers like "square-", "cubic-", "pow2-" etc.
97 // Trie value offset for simple units, e.g. "gram", "nautical-mile",
103 UMeasurePrefix value; member
166 * from the ID to the value produced by the quantitiesTrie (which is an
172 * the `out` array, before adding to `trieBuilder` as the value
190 put(const char * , ResourceValue &value, UBool , UErrorCode &status) put() argument
[all...]
/third_party/python/Objects/
H A Dbytearrayobject.c24 _getbytevalue(PyObject* arg, int *value) in _getbytevalue() argument
30 *value = -1; in _getbytevalue()
36 *value = -1; in _getbytevalue()
40 *value = face_value; in _getbytevalue()
564 bytearray_setitem(PyByteArrayObject *self, Py_ssize_t i, PyObject *value) in bytearray_setitem() argument
568 // GH-91153: We need to do this *before* the size check, in case value has a in bytearray_setitem()
570 if (value && !_getbytevalue(value, &ival)) { in bytearray_setitem()
583 if (value == NULL) { in bytearray_setitem()
855 int value; in bytearray___init___impl() local
889 int rc, value; bytearray___init___impl() local
1696 int value; bytearray_extend() local
1803 int value; bytearray_pop_impl() local
1841 bytearray_remove_impl(PyByteArrayObject *self, int value) bytearray_remove_impl() argument
[all...]
/third_party/python/Lib/lib2to3/
H A Drefactor.py121 tp, value = advance()
128 elif tp == token.NAME and value == "from":
129 tp, value = advance()
130 if tp != token.NAME or value != "__future__":
132 tp, value = advance()
133 if tp != token.NAME or value != "import":
135 tp, value = advance()
136 if tp == token.OP and value == "(":
137 tp, value = advance()
139 features.add(value)
[all...]
/test/xts/acts/security/huks/security_huks_reformed_test/huks_hmac_callback_BasicTest/entry/src/ohosTest/js/test/HMAC/
H A DSecurityHuksImportJsunit.test.js447 value: huks.HuksKeyAlg.HUKS_ALG_ECC
451 value: huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_UNWRAP
455 value: huks.HuksKeySize.HUKS_CURVE25519_KEY_SIZE_256
459 value: huks.HuksKeyPadding.HUKS_PADDING_NONE
468 value: huks.HuksKeyAlg.HUKS_ALG_X25519
472 value: huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_UNWRAP
476 value: huks.HuksKeySize.HUKS_CURVE25519_KEY_SIZE_256
485 value: huks.HuksKeyAlg.HUKS_ALG_ECC
489 value: huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_AGREE
493 value
[all...]
/kernel/linux/linux-6.6/lib/zstd/compress/
H A Dzstd_compress.c62 * return value of ZSTD_compressBound().
496 bounds.upperBound = ZSTD_f_zstd1_magicless; /* note : how to ensure at compile time that this is the highest value enum ? */ in ZSTD_cParam_getBounds()
502 bounds.upperBound = ZSTD_dictForceLoad; /* note : how to ensure at compile time that this is the highest value enum ? */ in ZSTD_cParam_getBounds()
559 * Clamps the value into the bounded range.
561 static size_t ZSTD_cParam_clampBounds(ZSTD_cParameter cParam, int* value) in ZSTD_cParam_clampBounds() argument
565 if (*value < bounds.lowerBound) *value = bounds.lowerBound; in ZSTD_cParam_clampBounds()
566 if (*value > bounds.upperBound) *value = bounds.upperBound; in ZSTD_cParam_clampBounds()
621 size_t ZSTD_CCtx_setParameter(ZSTD_CCtx* cctx, ZSTD_cParameter param, int value) in ZSTD_CCtx_setParameter() argument
678 ZSTD_CCtxParams_setParameter(ZSTD_CCtx_params* CCtxParams, ZSTD_cParameter param, int value) ZSTD_CCtxParams_setParameter() argument
873 ZSTD_CCtx_getParameter(ZSTD_CCtx const* cctx, ZSTD_cParameter param, int* value) ZSTD_CCtx_getParameter() argument
878 ZSTD_CCtxParams_getParameter( ZSTD_CCtx_params const* CCtxParams, ZSTD_cParameter param, int* value) ZSTD_CCtxParams_getParameter() argument
2907 const BYTE value = ip[0]; ZSTD_isRLE() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderBuiltinPrecisionTests.cpp273 * Traits<float>::doMakeIVal(value)
281 typename Traits<T>::IVal makeIVal (const T& value) in makeIVal() argument
283 return Traits<T>::doMakeIVal(value); in makeIVal()
294 //! Returns true iff every element of `ival` contains the corresponding element of `value`.
296 bool contains (const typename Traits<T>::IVal& ival, const T& value, bool is16Bit = false, const tcu::Maybe<U>& modularDivisor = tcu::Nothing) in contains() argument
298 return Traits<T>::doContains(ival, value, is16Bit, modularDivisor); in contains()
316 //! Print out a value with the precision of `fmt`.
318 void printValue16 (const FloatFormat& fmt, const T& value, ostream& os) in printValue16() argument
320 Traits<T>::doPrintValue16(fmt, value, os); in printValue16()
421 //! Print out a value wit in comparisonMessage()
423 printValue32(const FloatFormat& fmt, const T& value, ostream& os) printValue32() argument
437 printValue64(const FloatFormat& fmt, const T& value, ostream& os) printValue64() argument
454 round(const FloatFormat& fmt, const T& value) round() argument
460 convert(const FloatFormat& fmt, const typename Traits<T>::IVal& value) convert() argument
468 intervalContains(const Interval& interval, T value, const tcu::Maybe<T>& modularDivisor) intervalContains() argument
489 intervalContains(const Interval& interval, T value, const tcu::Maybe<U>& modularDivisor) intervalContains() argument
769 os << value; doPrintValue32() local
776 os << value; doPrintValue64() local
1080 bind(const Variable<T>& variable, const typename Traits<T>::IVal& value) bind() argument
1230 VariableStatement(const VariableP<T>& variable, const ExprP<T>& value, bool isDeclaration) VariableStatement() argument
1275 variableStatement(const VariableP<T>& variable, const ExprP<T>& value, bool isDeclaration) variableStatement() argument
1289 variableAssignment(const VariableP<T>& variable, const ExprP<T>& value) variableAssignment() argument
1596 Constant(const T& value) Constant() argument
1607 constant(const T& value) constant() argument
1618 FloatConstant(double value) FloatConstant() argument
1629 f16Constant(double value) f16Constant() argument
1633 f32Constant(double value) f32Constant() argument
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_serialize.c158 /* special value indicating that num_components is in the next uint32 */ in encode_num_components_in_3bits()
163 decode_num_components_in_3bits(uint8_t value) in decode_num_components_in_3bits() argument
165 if (value <= 4) in decode_num_components_in_3bits()
166 return value; in decode_num_components_in_3bits()
167 if (value == 5) in decode_num_components_in_3bits()
169 if (value == 6) in decode_num_components_in_3bits()
887 unsigned value = 0; in write_alu() local
890 value |= (uint32_t)alu->src[i].swizzle[o + j] << in write_alu()
894 blob_write_uint32(ctx->blob, value); in write_alu()
957 unsigned value in read_alu() local
[all...]
/third_party/selinux/libsepol/src/
H A Dlink.c134 uint32_t sclassi = src_class->s.value - 1; in permission_copy_callback()
171 new_perm->s.value = dest_class->permissions.nprim + 1; in permission_copy_callback()
188 if (perm->s.value > mod->perm_map_len[sclassi]) { in permission_copy_callback()
189 uint32_t *newmap = calloc(perm->s.value, sizeof(*newmap)); in permission_copy_callback()
199 mod->perm_map_len[sclassi] = perm->s.value; in permission_copy_callback()
201 mod->perm_map[sclassi][perm->s.value - 1] = dest_perm->s.value; in permission_copy_callback()
317 new_class->s.value = ++(state->base->p_classes.nprim); in class_copy_callback()
321 state->cur->map[SYM_CLASSES][cladatum->s.value - 1] = in class_copy_callback()
322 new_class->s.value; in class_copy_callback()
[all...]
/base/global/i18n/interfaces/js/kits/src/
H A Di18n_addon.cpp155 napi_get_value_double(env, argv[2], &number); // 2 is the index of value in UnitConvert()
158 napi_get_value_string_utf8(env, argv[3], nullptr, 0, &len); // 3 is the index of value in UnitConvert()
160 // 3 is the index of value in UnitConvert()
174 // 4 is the index of value in UnitConvert()
178 std::string value = numberFmt->Format(number); in UnitConvert() local
180 status = napi_create_string_utf8(env, value.c_str(), NAPI_AUTO_LENGTH, &result); in UnitConvert()
207 std::string value = DateTimeSequence::GetDateOrder(languageTag); in GetDateOrder() local
209 status = napi_create_string_utf8(env, value.c_str(), NAPI_AUTO_LENGTH, &result); in GetDateOrder()
604 HILOG_ERROR_I18N("Transform: Get string value failed"); in Transform()
611 napi_value value; in Transform() local
1094 int value = obj->brkiter_->Current(); Current() local
1117 int value = obj->brkiter_->First(); First() local
1140 int value = obj->brkiter_->Last(); Last() local
1163 int value = obj->brkiter_->Previous(); Previous() local
1186 int value = 1; Next() local
1261 napi_value value = nullptr; GetText() local
1294 int value; Following() local
1327 int value; IsBoundary() local
[all...]
/base/request/request/frameworks/js/napi/src/
H A Djs_initialize.cpp128 napi_env env, napi_value value, std::shared_ptr<OHOS::AbilityRuntime::Context> &context) in GetContext()
130 if (!IsStageMode(env, value)) { in GetContext()
138 context = OHOS::AbilityRuntime::GetStageModeContext(env, value); in GetContext()
430 napi_value value = NapiUtils::GetNamedProperty(env, jsConfig, "token"); in ParseToken() local
431 if (NapiUtils::GetValueType(env, value) != napi_string) { in ParseToken()
436 napi_status status = napi_get_value_string_utf8(env, value, token, bufferLen, &len); in ParseToken()
438 REQUEST_HILOGE("napi get value string utf8 failed"); in ParseToken()
478 napi_value value = NapiUtils::GetNamedProperty(env, jsConfig, "action"); in ParseAction() local
479 if (NapiUtils::GetValueType(env, value) != napi_number) { in ParseAction()
484 action = static_cast<Action>(NapiUtils::Convert2Uint32(env, value)); in ParseAction()
127 GetContext( napi_env env, napi_value value, std::shared_ptr<OHOS::AbilityRuntime::Context> &context) GetContext() argument
529 napi_value value = NapiUtils::GetNamedProperty(env, jsConfig, "ends"); ParseEnds() local
724 napi_value value = NapiUtils::GetNamedProperty(env, jsConfig, "data"); ParseData() local
744 napi_value value = NapiUtils::GetNamedProperty(env, jsVal, "name"); ParseName() local
763 napi_value value = NapiUtils::GetNamedProperty(env, jsVal, "value"); GetFormItems() local
905 IsStageMode(napi_env env, napi_value value) IsStageMode() argument
[all...]
/kernel/linux/linux-5.10/drivers/misc/altera-stapl/
H A Daltera.c130 static void altera_export_int(char *key, s32 value) in altera_export_int() argument
132 dprintk("Export: key = \"%s\", value = %d\n", key, value); in altera_export_int()
142 u32 size, line, lines, linebits, value, j, k; in altera_export_bool_array() local
145 dprintk("Export: key = \"%s\", %d bits, value = HEX\n", in altera_export_bool_array()
163 value = 0; in altera_export_bool_array()
168 value |= (1 << (i & 3)); in altera_export_bool_array()
170 sprintf(&string[j], "%1x", value); in altera_export_bool_array()
171 value = 0; in altera_export_bool_array()
176 sprintf(&string[j], "%1x", value); in altera_export_bool_array()
257 u32 value; altera_execute() local
2115 altera_get_note(u8 *p, s32 program_size, s32 *offset, char *key, char *value, int keylen, int vallen) altera_get_note() argument
2408 char *value = NULL; altera_init() local
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/calxeda/
H A Dxgmac.c590 u32 value = readl(ioaddr + XGMAC_CONTROL); in xgmac_mac_enable() local
591 value |= MAC_ENABLE_RX | MAC_ENABLE_TX; in xgmac_mac_enable()
592 writel(value, ioaddr + XGMAC_CONTROL); in xgmac_mac_enable()
594 value = readl(ioaddr + XGMAC_DMA_CONTROL); in xgmac_mac_enable()
595 value |= DMA_CONTROL_ST | DMA_CONTROL_SR; in xgmac_mac_enable()
596 writel(value, ioaddr + XGMAC_DMA_CONTROL); in xgmac_mac_enable()
601 u32 value = readl(ioaddr + XGMAC_DMA_CONTROL); in xgmac_mac_disable() local
602 value &= ~(DMA_CONTROL_ST | DMA_CONTROL_SR); in xgmac_mac_disable()
603 writel(value, ioaddr + XGMAC_DMA_CONTROL); in xgmac_mac_disable()
605 value in xgmac_mac_disable()
906 u32 reg, value; xgmac_tx_timeout_work() local
944 u32 value, ctrl; xgmac_hw_init() local
1276 unsigned int value = 0; xgmac_set_rx_mode() local
1862 u32 value; xgmac_suspend() local
[all...]
/kernel/linux/linux-5.10/sound/pci/
H A Drme96.c45 MODULE_PARM_DESC(index, "Index value for RME Digi96 soundcard.");
219 u32 wcreg; /* cached write control register value */
222 u32 rcreg; /* cached read control register value */
223 u32 areg; /* cached additional register value */
1869 ucontrol->value.integer.value[0] = rme96->wcreg & RME96_WCR_SEL ? 0 : 1; in snd_rme96_get_loopback_control()
1880 val = ucontrol->value.integer.value[0] ? 0 : RME96_WCR_SEL; in snd_rme96_put_loopback_control()
1933 ucontrol->value.enumerated.item[0] = snd_rme96_getinputtype(rme96); in snd_rme96_get_inputtype_control()
1946 if (ucontrol->value in snd_rme96_get_inputtype_control()
[all...]
/kernel/linux/linux-6.6/drivers/misc/altera-stapl/
H A Daltera.c130 static void altera_export_int(char *key, s32 value) in altera_export_int() argument
132 dprintk("Export: key = \"%s\", value = %d\n", key, value); in altera_export_int()
142 u32 size, line, lines, linebits, value, j, k; in altera_export_bool_array() local
145 dprintk("Export: key = \"%s\", %d bits, value = HEX\n", in altera_export_bool_array()
163 value = 0; in altera_export_bool_array()
168 value |= (1 << (i & 3)); in altera_export_bool_array()
170 sprintf(&string[j], "%1x", value); in altera_export_bool_array()
171 value = 0; in altera_export_bool_array()
176 sprintf(&string[j], "%1x", value); in altera_export_bool_array()
257 u32 value; altera_execute() local
2091 altera_get_note(u8 *p, s32 program_size, s32 *offset, char *key, char *value, int keylen, int vallen) altera_get_note() argument
2379 char *value = NULL; altera_init() local
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/calxeda/
H A Dxgmac.c590 u32 value = readl(ioaddr + XGMAC_CONTROL); in xgmac_mac_enable() local
591 value |= MAC_ENABLE_RX | MAC_ENABLE_TX; in xgmac_mac_enable()
592 writel(value, ioaddr + XGMAC_CONTROL); in xgmac_mac_enable()
594 value = readl(ioaddr + XGMAC_DMA_CONTROL); in xgmac_mac_enable()
595 value |= DMA_CONTROL_ST | DMA_CONTROL_SR; in xgmac_mac_enable()
596 writel(value, ioaddr + XGMAC_DMA_CONTROL); in xgmac_mac_enable()
601 u32 value = readl(ioaddr + XGMAC_DMA_CONTROL); in xgmac_mac_disable() local
602 value &= ~(DMA_CONTROL_ST | DMA_CONTROL_SR); in xgmac_mac_disable()
603 writel(value, ioaddr + XGMAC_DMA_CONTROL); in xgmac_mac_disable()
605 value in xgmac_mac_disable()
906 u32 reg, value; xgmac_tx_timeout_work() local
944 u32 value, ctrl; xgmac_hw_init() local
1276 unsigned int value = 0; xgmac_set_rx_mode() local
1864 u32 value; xgmac_suspend() local
[all...]
/kernel/linux/linux-6.6/sound/pci/
H A Drme96.c40 MODULE_PARM_DESC(index, "Index value for RME Digi96 soundcard.");
214 u32 wcreg; /* cached write control register value */
217 u32 rcreg; /* cached read control register value */
218 u32 areg; /* cached additional register value */
1834 ucontrol->value.integer.value[0] = rme96->wcreg & RME96_WCR_SEL ? 0 : 1; in snd_rme96_get_loopback_control()
1845 val = ucontrol->value.integer.value[0] ? 0 : RME96_WCR_SEL; in snd_rme96_put_loopback_control()
1898 ucontrol->value.enumerated.item[0] = snd_rme96_getinputtype(rme96); in snd_rme96_get_inputtype_control()
1911 if (ucontrol->value in snd_rme96_get_inputtype_control()
[all...]
/third_party/gn/src/gn/
H A Dtarget_unittest.cc29 ASSERT_TRUE(found != unknown.end()) << file.value(); in AssertSchedulerHasOneUnknownFileMatching()
549 EXPECT_EQ("./liba.so", target.link_output_file().value()); in TEST_F()
550 EXPECT_EQ("./liba.so.TOC", target.dependency_output_file().value()); in TEST_F()
553 EXPECT_EQ("./liba.so", target.runtime_outputs()[0].value()); in TEST_F()
595 EXPECT_EQ("./a.dll.lib", target.link_output_file().value()); in TEST_F()
596 EXPECT_EQ("./a.dll.lib", target.dependency_output_file().value()); in TEST_F()
599 EXPECT_EQ("./a.dll", target.runtime_outputs()[0].value()); in TEST_F()
600 EXPECT_EQ("./a.pdb", target.runtime_outputs()[1].value()); in TEST_F()
607 EXPECT_EQ("//out/Debug/a.dll.lib", computed_outputs[0].value()); in TEST_F()
608 EXPECT_EQ("//out/Debug/a.dll", computed_outputs[1].value()); in TEST_F()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDateTimePatternGenerator.java215 public void put(UResource.Key key, UResource.Value value, boolean noFallback) { in put() argument
219 setAppendItemFormat(field, value.toString()); in put()
226 public void put(UResource.Key key, UResource.Value value, boolean noFallback) { in put() argument
231 UResource.Table detailsTable = value.getTable(); in put()
232 if (detailsTable.findValue("dn", value)) { in put()
234 setFieldDisplayName(field, width, value.toString()); in put()
264 public void put(UResource.Key key, UResource.Value value, boolean isRoot) { in put() argument
270 String formatValue = value.toString(); in put()
437 public void put(UResource.Key key, UResource.Value value, boolean noFallback) { in put() argument
438 UResource.Table timeData = value in put()
1381 setAppendItemFormat(int field, String value) setAppendItemFormat() argument
1409 setAppendItemName(int field, String value) setAppendItemName() argument
1452 setFieldDisplayName(int field, DisplayWidth width, String value) setFieldDisplayName() argument
2643 populate(int field, String value) populate() argument
[all...]
/third_party/node/deps/v8/src/codegen/ia32/
H A Dmacro-assembler-ia32.cc161 void MacroAssembler::CompareRange(Register value, unsigned lower_limit, in CompareRange() argument
166 lea(scratch, Operand(value, 0u - lower_limit)); in CompareRange()
169 cmp(value, Immediate(higher_limit)); in CompareRange()
173 void MacroAssembler::JumpIfIsInRange(Register value, unsigned lower_limit, in JumpIfIsInRange() argument
177 CompareRange(value, lower_limit, higher_limit, scratch); in JumpIfIsInRange()
390 Register value, Register slot_address, in RecordWriteField()
401 JumpIfSmi(value, &done); in RecordWriteField()
417 RecordWrite(object, slot_address, value, save_fp, remembered_set_action, in RecordWriteField()
425 mov(value, Immediate(bit_cast<int32_t>(kZapValue))); in RecordWriteField()
523 Register value, SaveFPRegsMod in CallRecordWriteStub()
389 RecordWriteField(Register object, int offset, Register value, Register slot_address, SaveFPRegsMode save_fp, RememberedSetAction remembered_set_action, SmiCheck smi_check) RecordWriteField() argument
522 RecordWrite(Register object, Register slot_address, Register value, SaveFPRegsMode fp_mode, RememberedSetAction remembered_set_action, SmiCheck smi_check) CallRecordWriteStub() argument
1473 Push(Immediate value) CallRecordWriteStub() argument
1681 EmitIncrementCounter(StatsCounter* counter, int value, Register scratch) CallRecordWriteStub() argument
1696 EmitDecrementCounter(StatsCounter* counter, int value, Register scratch) CallRecordWriteStub() argument
[all...]
/third_party/node/deps/v8/src/diagnostics/
H A Dgdb-jit.cc69 void set(const T& value) { in set() argument
70 base::WriteUnalignedValue(w_->AddressAt<T>(offset_), value); in set()
125 void WriteULEB128(uintptr_t value) { in WriteULEB128() argument
127 uint8_t byte = value & 0x7F; in WriteULEB128()
128 value >>= 7; in WriteULEB128()
129 if (value != 0) byte |= 0x80; in WriteULEB128()
131 } while (value != 0); in WriteULEB128()
134 void WriteSLEB128(intptr_t value) { in WriteSLEB128() argument
137 int8_t byte = value & 0x7F; in WriteSLEB128()
139 value >> in WriteSLEB128()
[all...]
/third_party/node/deps/v8/src/execution/
H A Disolate.h180 #define RETURN_VALUE_IF_SCHEDULED_EXCEPTION(isolate, value) \
186 return value; \
193 #define ASSIGN_RETURN_ON_SCHEDULED_EXCEPTION_VALUE(isolate, dst, call, value) \
199 return value; \
203 #define RETURN_ON_SCHEDULED_EXCEPTION_VALUE(isolate, call, value) \
209 return value; \
216 * the contents of a MaybeHandle<X>, or the "exception" sentinel value.
243 #define ASSIGN_RETURN_ON_EXCEPTION_VALUE(isolate, dst, call, value) \
247 return value; \
273 #define THROW_NEW_ERROR_RETURN_VALUE(isolate, call, value) \
1075 SetDetailedSourcePositionsForProfiling(bool value) SetDetailedSourcePositionsForProfiling() argument
1222 set_deoptimizer_lazy_throw(bool value) set_deoptimizer_lazy_throw() argument
1807 AddCrashKey(CrashKeyId id, const std::string& value) AddCrashKey() argument
1852 set_elements_deletion_counter(size_t value) set_elements_deletion_counter() argument
[all...]
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fShaderIntegerFunctionTests.cpp60 const float value; member
61 HexFloat (const float value_) : value(value_) {} in HexFloat()
66 return str << v.value << " / " << tcu::toHex(tcu::Float32(v.value).bits()); in operator <<()
72 const void* value; member
74 VarValue (const glu::VarType& type_, const void* value_) : type(type_), value(value_) {} in VarValue()
95 case glu::TYPE_FLOAT: str << HexFloat(((const float*)varValue.value)[compNdx]); break; in operator <<()
96 case glu::TYPE_INT: str << ((const deInt32*)varValue.value)[compNdx]; break; in operator <<()
97 case glu::TYPE_UINT: str << tcu::toHex(((const deUint32*)varValue.value)[compNdx]); break; in operator <<()
98 case glu::TYPE_BOOL: str << (((const deUint32*)varValue.value)[compNd in operator <<()
754 const deUint32 value = ((const deUint32*)inputs[0])[compNdx]; compare() local
879 const deUint32 value = ((const deUint32*)inputs[0])[compNdx]; compare() local
928 const deUint32 value = ((const deUint32*)inputs[0])[compNdx]; compare() local
944 findLSB(deUint32 value) findLSB() argument
988 const deUint32 value = ((const deUint32*)inputs[0])[compNdx]; compare() local
1004 toPrecision(deUint32 value, int numIntegerBits) toPrecision() argument
1009 toPrecision(deInt32 value, int numIntegerBits) toPrecision() argument
1048 const deUint32 value = ((const deUint32*)inputs[0])[compNdx]; compare() local
[all...]
/third_party/jerryscript/tests/jerry-test-suite/15/15.03/15.03.03/15.03.03.01/
H A D15.03.03.01-004.js18 Object.defineProperty(foo, 'prototype', {value: {}});
20 Object.getOwnPropertyDescriptor(foo, 'prototype').value);

Completed in 56 milliseconds

1...<<351352353354355356357358359360>>...1259