| /third_party/node/deps/icu-small/source/i18n/ |
| H A D | dtptngen.cpp | 993 U_ASSERT(i < 20); if (i < 10) { valueStr += (char16_t)(i+0x30); } else { valueStr += (char16_t)0x31; valueStr += (char16_t)(i-10 + 0x30); } valueStr.getTerminatedBuffer(); } for (int32_t j = 1; j < UDATPG_WIDTH_COUNT; j++) { UnicodeString& valueStr2 = dtpg.getMutableFieldDisplayName((UDateTimePatternField)i, (UDateTimePGDisplayWidth)j); if (valueStr2.isEmpty()) { valueStr2 = dtpg.getFieldDisplayName((UDateTimePatternField)i, (UDateTimePGDisplayWidth)(j-1)); } } } } }; struct DateTimePatternGenerator::AvailableFormatsSink : public ResourceSink { DateTimePatternGenerator& dtpg; UnicodeString conflictingPattern; AvailableFormatsSink(DateTimePatternGenerator& _dtpg) : dtpg(_dtpg) {} virtual ~AvailableFormatsSink(); virtual void put(const char *key, ResourceValue &value, UBool , UErrorCode &errorCode) override { const UnicodeString formatKey(key, -1, US_INV); if (!dtpg.isAvailableFormatSet(formatKey) ) { dtpg.setAvailableFormat(formatKey, errorCode); const UnicodeString& formatValue = value.getUnicodeString(errorCode); conflictingPattern.remove(); dtpg.addPatternWithSkeleton(formatValue, &formatKey, true, conflictingPattern, errorCode); } } }; DateTimePatternGenerator::AppendItemFormatsSink::~AppendItemFormatsSink() {} DateTimePatternGenerator::AppendItemNamesSink::~AppendItemNamesSink() {} DateTimePatternGenerator::AvailableFormatsSink::~AvailableFormatsSink() {} void DateTimePatternGenerator::addCLDRData(const Locale& locale, UErrorCode& errorCode) { if (U_FAILURE(errorCode)) { return; } UnicodeString rbPattern, value, field; CharString path; LocalUResourceBundlePointer rb(ures_open(nullptr, locale.getName(), &errorCode)); if (U_FAILURE(errorCode)) { return; } CharString calendarTypeToUse; getCalendarTypeToUse(locale, calendarTypeToUse, errorCode); if (U_FAILURE(errorCode)) { return; } UErrorCode err = U_ZERO_ERROR; AppendItemFormatsSink appendItemFormatsSink(*this); path.clear() .append(DT_DateTimeCalendarTag, errorCode) .append(�, errorCode) .append(calendarTypeToUse, errorCode) .append(�, errorCode) .append(DT_DateTimeAppendItemsTag, errorCode); if (U_FAILURE(errorCode)) { return; } ures_getAllChildrenWithFallback(rb.getAlias(), path.data(), appendItemFormatsSink, err); appendItemFormatsSink.fillInMissing(); err = U_ZERO_ERROR; AppendItemNamesSink appendItemNamesSink(*this); ures_getAllChildrenWithFallback(rb.getAlias(), DT_DateTimeFieldsTag, appendItemNamesSink, err); appendItemNamesSink.fillInMissing(); err = U_ZERO_ERROR; initHashtable(errorCode); if (U_FAILURE(errorCode)) { return; } AvailableFormatsSink availableFormatsSink(*this); path.clear() .append(DT_DateTimeCalendarTag, errorCode) .append(�, errorCode) .append(calendarTypeToUse, errorCode) .append(�, errorCode) .append(DT_DateTimeAvailableFormatsTag, errorCode); if (U_FAILURE(errorCode)) { return; } ures_getAllChildrenWithFallback(rb.getAlias(), path.data(), availableFormatsSink, err); } void DateTimePatternGenerator::initHashtable(UErrorCode& err) { if (U_FAILURE(err)) { return; } if (fAvailableFormatKeyHash!=nullptr) { return; } LocalPointer<Hashtable> hash(new Hashtable(false, err), err); if (U_SUCCESS(err)) { fAvailableFormatKeyHash = hash.orphan(); } } void DateTimePatternGenerator::setAppendItemFormat(UDateTimePatternField field, const UnicodeString& value) { appendItemFormats[field] = value; appendItemFormats[field].getTerminatedBuffer(); } const UnicodeString& DateTimePatternGenerator::getAppendItemFormat(UDateTimePatternField field) const { return appendItemFormats[field]; } void DateTimePatternGenerator::setAppendItemName(UDateTimePatternField field, const UnicodeString& value) { setFieldDisplayName(field, UDATPG_WIDTH_APPENDITEM, value); } const UnicodeString& DateTimePatternGenerator::getAppendItemName(UDateTimePatternField field) const { return fieldDisplayNames[field][UDATPG_WIDTH_APPENDITEM]; } void DateTimePatternGenerator::setFieldDisplayName(UDateTimePatternField field, UDateTimePGDisplayWidth width, const UnicodeString& value) { fieldDisplayNames[field][width] = value; fieldDisplayNames[field][width].getTerminatedBuffer(); } UnicodeString DateTimePatternGenerator::getFieldDisplayName(UDateTimePatternField field, UDateTimePGDisplayWidth width) const { return fieldDisplayNames[field][width]; } UnicodeString& DateTimePatternGenerator::getMutableFieldDisplayName(UDateTimePatternField field, UDateTimePGDisplayWidth width) { return fieldDisplayNames[field][width]; } void DateTimePatternGenerator::getAppendName(UDateTimePatternField field, UnicodeString& value) { value = SINGLE_QUOTE; value += fieldDisplayNames[field][UDATPG_WIDTH_APPENDITEM]; value += SINGLE_QUOTE; } UnicodeString DateTimePatternGenerator::getBestPattern(const UnicodeString& patternForm, UErrorCode& status) { return getBestPattern(patternForm, UDATPG_MATCH_NO_OPTIONS, status); } UnicodeString DateTimePatternGenerator::getBestPattern(const UnicodeString& patternForm, UDateTimePatternMatchOptions options, UErrorCode& status) { if (U_FAILURE(status)) { return UnicodeString(); } if (U_FAILURE(internalErrorCode)) { status = internalErrorCode; return UnicodeString(); } const UnicodeString *bestPattern = nullptr; UnicodeString dtFormat; UnicodeString resultPattern; int32_t flags = kDTPGNoFlags; int32_t dateMask=(1<<UDATPG_DAYPERIOD_FIELD) - 1; int32_t timeMask=(1<<UDATPG_FIELD_COUNT) - 1 - dateMask; UnicodeString patternFormMapped = mapSkeletonMetacharacters(patternForm, &flags, status); if (U_FAILURE(status)) { return UnicodeString(); } resultPattern.remove(); dtMatcher->set(patternFormMapped, fp); const PtnSkeleton* specifiedSkeleton = nullptr; bestPattern=getBestRaw(*dtMatcher, -1, distanceInfo, status, &specifiedSkeleton); if (U_FAILURE(status)) { return UnicodeString(); } if ( distanceInfo->missingFieldMask==0 && distanceInfo->extraFieldMask==0 ) { resultPattern = adjustFieldTypes(*bestPattern, specifiedSkeleton, flags, options); return resultPattern; } int32_t neededFields = dtMatcher->getFieldMask(); UnicodeString datePattern=getBestAppending(neededFields & dateMask, flags, status, options); UnicodeString timePattern=getBestAppending(neededFields & timeMask, flags, status, options); if (U_FAILURE(status)) { return UnicodeString(); } if (datePattern.length()==0) { if (timePattern.length()==0) { resultPattern.remove(); } else { return timePattern; } } if (timePattern.length()==0) { return datePattern; } resultPattern.remove(); status = U_ZERO_ERROR; PtnSkeleton* reqSkeleton = dtMatcher->getSkeletonPtr(); UDateFormatStyle style = UDAT_SHORT; int32_t monthFieldLen = reqSkeleton->baseOriginal.getFieldLength(UDATPG_MONTH_FIELD); if (monthFieldLen == 4) { if (reqSkeleton->baseOriginal.getFieldLength(UDATPG_WEEKDAY_FIELD) > 0) fillInMissing() argument 2073 add(const UnicodeString& basePattern, const PtnSkeleton& skeleton, const UnicodeString& value, UBool skeletonWasSpecified, UErrorCode &status) add() argument 2315 const UnicodeString& value = fp->items[i]; set() local 2740 populate(int32_t field, const UnicodeString& value) populate() argument [all...] |
| H A D | smpdtfmt.cpp | 1294 _appendSymbolWithMonthPattern(UnicodeString& dst, int32_t value, cons argument 1283 _appendSymbol(UnicodeString& dst, int32_t value, const UnicodeString* symbols, int32_t symbolsCount) _appendSymbol() argument 1509 int32_t value = 0; subFormat() local 2152 zeroPaddingNumber( const NumberFormat *currentNumberFormat, UnicodeString &appendTo, int32_t value, int32_t minDigits, int32_t maxDigits) const zeroPaddingNumber() argument 3025 int32_t value = 0; subParse() local 4161 setContext(UDisplayContext value, UErrorCode& status) setContext() argument [all...] |
| H A D | vtzone.cpp | 391 UnicodeString prop, attr, value; in parseRRULE() local 1387 UnicodeString value; // RFC2445 prop value parse() local [all...] |
| H A D | tznames_impl.cpp | 137 CharacterNode::addValue(void *value, UObjectDeleter *valueDeleter, UErrorCode &status) { in addValue() argument 221 put(const UnicodeString &key, void *value, ZNStringPool &sp, UErrorCode &status) put() argument 229 put(const char16_t *key, void *value, UErrorCode &status) put() argument 256 putImpl(const UnicodeString &key, void *value, UErrorCode &status) putImpl() argument 649 void* value; createMetaZoneAndPutInCache() local 691 void* value = (void*) (new ZNames(names, locationName)); createTimeZoneAndPutInCache() local 1669 void* value = uhash_get(fTZNamesMap, copy.getTerminatedBuffer()); internalLoadAllDisplayNames() local 1778 const char16_t *value = ures_getStringByKey(rbTable, TZDBNAMES_KEYS[i], &len, &status); createInstance() local [all...] |
| /third_party/mesa3d/src/nouveau/codegen/ |
| H A D | nv50_ir_peephole.cpp | 443 ConstantFolding::findOriginForTestWithZero(Value *value) in findOriginForTestWithZero() argument
|
| /third_party/icu/icu4c/source/i18n/ |
| H A D | vtzone.cpp | 391 UnicodeString prop, attr, value; in parseRRULE() local 1387 UnicodeString value; // RFC2445 prop value parse() local [all...] |
| /third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
| H A D | CharsetMBCS.java | 507 private static boolean writeStage3Roundtrip(UConverterMBCSTable mbcsTable, long value, int codePoints[]) { in writeStage3Roundtrip() argument 700 enumToU(UConverterMBCSTable mbcsTable, byte stateProps[], int state, int offset, int value) enumToU() argument 1134 getSISOBytes(SISO_Option option, int cnvOption, byte[] value) getSISOBytes() argument 1208 MBCS_ENTRY_FINAL(int state, int action, int value) MBCS_ENTRY_FINAL() argument 1360 TO_U_IS_ROUNDTRIP(int value) TO_U_IS_ROUNDTRIP() argument 1364 TO_U_IS_PARTIAL(int value) TO_U_IS_PARTIAL() argument 1368 TO_U_GET_PARTIAL_INDEX(int value) TO_U_GET_PARTIAL_INDEX() argument 1372 TO_U_MASK_ROUNDTRIP(int value) TO_U_MASK_ROUNDTRIP() argument 1376 TO_U_MAKE_WORD(byte b, int value) TO_U_MAKE_WORD() argument 1382 TO_U_IS_CODE_POINT(int value) TO_U_IS_CODE_POINT() argument 1387 TO_U_GET_CODE_POINT(int value) TO_U_GET_CODE_POINT() argument 1392 TO_U_GET_INDEX(int value) TO_U_GET_INDEX() argument 1396 TO_U_GET_LENGTH(int value) TO_U_GET_LENGTH() argument 1427 FROM_U_IS_PARTIAL(int value) FROM_U_IS_PARTIAL() argument 1431 FROM_U_GET_PARTIAL_INDEX(int value) FROM_U_GET_PARTIAL_INDEX() argument 1435 FROM_U_IS_ROUNDTRIP(int value) FROM_U_IS_ROUNDTRIP() argument 1439 FROM_U_MASK_ROUNDTRIP(int value) FROM_U_MASK_ROUNDTRIP() argument 1444 FROM_U_GET_LENGTH(int value) FROM_U_GET_LENGTH() argument 1449 FROM_U_GET_DATA(int value) FROM_U_GET_DATA() argument 1821 writeToU(int value, CharBuffer target, IntBuffer offsets, int srcIndex) writeToU() argument 3802 writeFromU(int value, ByteBuffer target, IntBuffer offsets, int srcIndex) writeFromU() argument [all...] |
| /third_party/libfuse/lib/ |
| H A D | fuse_lowlevel.c | 1595 char *value = name + strlen(name) + 1; local
|
| /third_party/libinput/src/ |
| H A D | evdev.c | 2374 const char *value; in udev_device_should_be_ignored() local [all...] |
| H A D | evdev-mt-touchpad.c | 496 rotated(struct tp_dispatch *tp, unsigned int code, int value) in rotated() argument [all...] |
| /third_party/libdrm/tests/amdgpu/ |
| H A D | ras_tests.c | 324 uint64_t value; member 337 uint64_t value; member 649 amdgpu_ras_inject(enum amdgpu_ras_block block, uint32_t sub_block, enum amdgpu_ras_error_type type, uint64_t address, uint64_t value) amdgpu_ras_inject() argument
|
| /third_party/libdrm/ |
| H A D | xf86drm.h | 157 unsigned long value; /**< Value from kernel */ member [all...] |
| /third_party/libinput/tools/ |
| H A D | libinput-record.c | 1744 const char *key, *value; print_udev_properties() local [all...] |
| /third_party/ltp/tools/sparse/sparse-src/ |
| H A D | linearize.c | 148 long long value = pseudo->value; in show_pseudo() local 985 add_store(struct entrypoint *ep, struct access_data *ad, pseudo_t value) add_store() argument 1020 linearize_store_gen(struct entrypoint *ep, pseudo_t value, struct access_data *ad) linearize_store_gen() argument 1138 pseudo_t value; linearize_access() local 1456 pseudo_t value; linearize_assignment() local 1853 pseudo_t value = linearize_expression(ep, initializer); linearize_initializer() local 1955 pseudo_t value; linearize_one_symbol() local 2044 pseudo_t value = linearize_one_symbol(ep, sym); linearize_inlined_call() local [all...] |
| H A D | compile-i386.c | 134 long long value; member 365 static struct storage *get_reg_value(struct storage *value, struct regclass *class) in get_reg_value() argument 555 new_val(long long value) new_val() argument [all...] |
| H A D | evaluate.c | 843 unsigned long value = bits_to_bytes(lbase->bit_size); in evaluate_ptr_sub() local [all...] |
| /third_party/lz4/lib/ |
| H A D | lz4.c | 375 static void LZ4_write16(void* memPtr, U16 value) { *(U16*)memPtr = value; } in LZ4_write16() argument 376 static void LZ4_write32(void* memPtr, U32 value) { *(U32*)memPtr = value; } in LZ4_write32() argument 388 static void LZ4_write16(void* memPtr, U16 value) { ((LZ4_unalig argument 389 LZ4_write32(void* memPtr, U32 value) LZ4_write32() argument 408 LZ4_write16(void* memPtr, U16 value) LZ4_write16() argument 413 LZ4_write32(void* memPtr, U32 value) LZ4_write32() argument 431 LZ4_writeLE16(void* memPtr, U16 value) LZ4_writeLE16() argument [all...] |
| /third_party/node/deps/v8/src/compiler/backend/arm/ |
| H A D | instruction-selector-arm.cc | 459 Node* value = node->InputAt(2); VisitPairAtomicBinOp() local 697 Node* value = node->InputAt(2); VisitStoreCommon() local 855 Node* value = node->InputAt(2); VisitUnalignedStore() local 985 uint32_t const value = m.right().ResolvedValue(); VisitWord32And() local 1108 Node* const value = node->InputAt(0); VisitStackPointerGreaterThan() local 1163 uint32_t value = VisitWord32Shr() local 1507 int32_t value = m.right().ResolvedValue(); VisitInt32Mul() local 1997 VisitWordCompareZero(Node* user, Node* value, FlagsContinuation* cont) VisitWordCompareZero() argument 2314 Node* value = node->InputAt(2); VisitWord32AtomicExchange() local 2387 Node* value = node->InputAt(2); VisitWord32AtomicBinaryOperation() local 2506 Node* value = node->InputAt(2); VisitWord32AtomicPairExchange() local [all...] |
| /third_party/node/deps/v8/src/compiler/backend/mips/ |
| H A D | instruction-selector-mips.cc | 242 Node* value = node->InputAt(2); in VisitPairAtomicBinop() local 402 Node* value = node->InputAt(2); in VisitStore() local 914 uint32_t value = static_cast<uint32_t>(m.right().ResolvedValue()); VisitInt32Mul() local 1023 Node* value = node->InputAt(0); VisitChangeFloat64ToInt32() local 1094 Node* value = node->InputAt(0); VisitTruncateFloat64ToFloat32() local 1455 Node* value = node->InputAt(2); VisitUnalignedStore() local 1644 Node* const value = node->InputAt(0); VisitStackPointerGreaterThan() local 1653 VisitWordCompareZero(Node* user, Node* value, FlagsContinuation* cont) VisitWordCompareZero() argument 1953 Node* value = node->InputAt(2); VisitWord32AtomicStore() local 1990 Node* value = node->InputAt(2); VisitWord32AtomicExchange() local 2068 Node* value = node->InputAt(2); VisitWord32AtomicBinaryOperation() local [all...] |
| /third_party/node/deps/v8/src/compiler/backend/x64/ |
| H A D | code-generator-x64.cc | 330 void EmitStore(TurboAssembler* tasm, Operand operand, Register value, in EmitStore() argument 263 OutOfLineRecordWrite(CodeGenerator* gen, Register object, Operand operand, Register value, Register scratch0, Register scratch1, RecordWriteMode mode, StubCallMode stub_mode) OutOfLineRecordWrite() argument 389 EmitStore(TurboAssembler* tasm, Operand operand, Immediate value, MachineRepresentation rep) EmitStore() argument 447 OutOfLineTSANStore(CodeGenerator* gen, Operand operand, Register value, Register scratch0, StubCallMode stub_mode, int size, std::memory_order order) OutOfLineTSANStore() argument 516 GetTSANValueRegister(TurboAssembler* tasm, Register value, X64OperandConverter& i, MachineRepresentation rep) GetTSANValueRegister() argument 535 GetTSANValueRegister( TurboAssembler* tasm, Immediate value, X64OperandConverter& i, MachineRepresentation rep) GetTSANValueRegister() argument 548 EmitTSANAwareStore(Zone* zone, CodeGenerator* codegen, TurboAssembler* tasm, Operand operand, ValueT value, X64OperandConverter& i, StubCallMode stub_call_mode, MachineRepresentation rep) EmitTSANAwareStore() argument 634 EmitTSANAwareStore(Zone* zone, CodeGenerator* codegen, TurboAssembler* tasm, Operand operand, ValueT value, X64OperandConverter& i, StubCallMode stub_call_mode, MachineRepresentation rep) EmitTSANAwareStore() argument 1480 Register value = i.InputRegister(index); AssembleArchInstruction() local 1496 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local 1501 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local 2349 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local 2354 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local 2385 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local 2390 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local 2417 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local 2422 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local 2462 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local 2467 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local 2490 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local 2507 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local 2512 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local [all...] |
| /third_party/node/deps/v8/src/compiler/ |
| H A D | heap-refs.cc | 177 ObjectData* value() const { in value() function in v8::internal::compiler::PropertyCellData 239 Handle<Object> value = in Cache() local 361 Handle<Object> value in GetOwnFastDataPropertyFromHeap() local 1189 Handle<Object> value; RawInobjectPropertyAt() local 1338 Handle<Object> value; TryGet() local 1581 ObjectRef FeedbackCellRef::value() const { value() function in v8::internal::compiler::FeedbackCellRef 2256 unsigned value = object()->inlined_bytecode_size(); GetInlinedBytecodeSize() local [all...] |
| H A D | js-native-context-specialization.cc | 243 Node* value = effect = in ReduceJSAsyncFunctionEnter() local 290 Node* value = NodeProperties::GetValueInput(node, 1); in ReduceJSAsyncFunctionResolve() local 375 Node* value = jsgraph()->Constant(function_prototype); in ReduceJSGetSuperConstructor() local 501 Node* value = graph()->NewNode(simplified()->ToBoolean(), node); ReduceJSInstanceOf() local 587 Node* value = NodeProperties::GetValueInput(node, 0); ReduceJSHasInPrototypeChain() local 664 Node* value = NodeProperties::GetValueInput(node, 1); ReduceJSPromiseResolve() local 678 MapInference inference(broker(), value, effect); ReduceJSPromiseResolve() local 739 Node* value = effect = ReduceJSResolvePromise() local 772 ReduceGlobalAccess( Node* node, Node* lookup_start_object, Node* receiver, Node* value, NameRef const& name, AccessMode access_mode, Node* key, PropertyCellRef const& property_cell, Node* effect) ReduceGlobalAccess() argument 993 Node* value = effect = ReduceJSLoadGlobal() local 1012 Node* value = n.value(); ReduceJSStoreGlobal() local 1040 ReduceNamedAccess( Node* node, Node* value, NamedAccessFeedback const& feedback, AccessMode access_mode, Node* key) ReduceNamedAccess() argument 1418 Node* value = jsgraph()->Constant(prototype); ReduceJSLoadNamed() local 1549 ReduceElementAccessOnString( Node* node, Node* index, Node* value, KeyedAccessMode const& keyed_mode) ReduceElementAccessOnString() argument 1626 ReduceElementAccess( Node* node, Node* index, Node* value, ElementAccessFeedback const& feedback) ReduceElementAccess() argument 1912 Node* value = access_mode == AccessMode::kHas ReduceElementLoadFromHeapConstant() local 1932 Node* value = BuildIndexedStringLoad(receiver, key, length, &effect, ReduceElementLoadFromHeapConstant() local 1941 ReducePropertyAccess( Node* node, Node* key, base::Optional<NameRef> static_name, Node* value, FeedbackSource const& source, AccessMode access_mode) ReducePropertyAccess() argument 1999 Node* value = jsgraph()->Dead(); ReduceJSHasProperty() local 2104 Node* value = effect = graph()->NewNode(simplified()->LoadFieldByIndex(), ReduceJSLoadPropertyWithEnumeratedKey() local 2161 Node* value; InlinePropertyGetterCall() local 2193 InlinePropertySetterCall( Node* receiver, Node* value, Node* context, Node* frame_state, Node** effect, Node** control, ZoneVector<Node*>* if_exceptions, PropertyAccessInfo const& access_info) InlinePropertySetterCall() argument 2226 InlineApiCall( Node* receiver, Node* holder, Node* frame_state, Node* value, Node** effect, Node** control, FunctionTemplateInfoRef const& function_template_info) InlineApiCall() argument 2289 Node* value; BuildPropertyLoad() local 2343 Node* value = access_info.IsNotFound() ? jsgraph()->FalseConstant() BuildPropertyTest() local 2349 BuildPropertyAccess( Node* lookup_start_object, Node* receiver, Node* value, Node* context, Node* frame_state, Node* effect, Node* control, NameRef const& name, ZoneVector<Node*>* if_exceptions, PropertyAccessInfo const& access_info, AccessMode access_mode) BuildPropertyAccess() argument 2374 BuildPropertyStore( Node* receiver, Node* value, Node* context, Node* frame_state, Node* effect, Node* control, NameRef const& name, ZoneVector<Node*>* if_exceptions, PropertyAccessInfo const& access_info, AccessMode access_mode) BuildPropertyStore() argument 2642 BuildElementAccess( Node* receiver, Node* index, Node* value, Node* effect, Node* control, ElementAccessInfo const& access_info, KeyedAccessMode const& keyed_mode) BuildElementAccess() argument 3292 Node* value = *effect = graph()->NewNode( BuildIndexedStringLoad() local 3318 Node* value = effect = graph()->NewNode( BuildExtendPropertiesBackingStore() local 3367 BuildCheckEqualsName(NameRef const& name, Node* value, Node* effect, Node* control) BuildCheckEqualsName() argument [all...] |
| H A D | js-typed-lowering.cc | 656 Node* value = graph()->NewNode(op, length, r.left(), r.right()); in ReduceJSAdd() local 872 Node* value = done.PhiAt(0); in ReduceJSEqual() local 1008 double value; ReduceJSToNumberInput() local 1180 Node* value = graph()->NewNode(simplified()->StringLength(), receiver); ReduceJSLoadNamed() local 1189 Node* value = NodeProperties::GetValueInput(node, 0); ReduceJSHasInPrototypeChain() local 1339 Node* value = jsgraph()->FalseConstant(); ReduceJSOrdinaryHasInstance() local 1349 Node* value = jsgraph()->FalseConstant(); ReduceJSOrdinaryHasInstance() local 1414 Node* value = NodeProperties::GetValueInput(node, 0); ReduceJSStoreContext() local 1473 Node* value = effect = ReduceJSLoadModule() local 1485 Node* value = NodeProperties::GetValueInput(node, 1); ReduceJSStoreModule() local 2095 Node* value = NodeProperties::GetValueInput(node, 0); ReduceJSStoreMessage() local 2124 Node* value = NodeProperties::GetValueInput(node, 3 + i); ReduceJSGeneratorStore() local 2217 Node* value = NodeProperties::GetValueInput(node, 0); ReduceObjectIsArray() local 2320 Node* value = NodeProperties::GetValueInput(node, 0); ReduceJSParseInt() local [all...] |
| H A D | code-assembler.cc | 34 constexpr MachineType MachineTypeOf<Smi>::value; member in v8::internal::MachineTypeOf 35 constexpr MachineType MachineTypeOf<Object>::value; member in v8::internal::MachineTypeOf 36 constexpr MachineType MachineTypeOf<MaybeObject>::value; member in v8::internal::MachineTypeOf 256 TNode<Int32T> CodeAssembler::Int32Constant(int32_t value) { in Int32Constant() argument 260 TNode<Int64T> CodeAssembler::Int64Constant(int64_t value) { in Int64Constant() argument 264 IntPtrConstant(intptr_t value) IntPtrConstant() argument 268 TaggedIndexConstant(intptr_t value) TaggedIndexConstant() argument 273 NumberConstant(double value) NumberConstant() argument 287 SmiConstant(Smi value) SmiConstant() argument 292 SmiConstant(int value) SmiConstant() argument 307 BooleanConstant(bool value) BooleanConstant() argument 319 Float32Constant(double value) Float32Constant() argument 323 Float64Constant(double value) Float64Constant() argument 372 intptr_t value = m.ResolvedValue(); TryToSmiConstant() local 424 Return(TNode<Object> value) Return() argument 446 Return(TNode<Int32T> value) Return() argument 453 Return(TNode<Uint32T> value) Return() argument 460 Return(TNode<WordT> value) Return() argument 468 Return(TNode<Float32T> value) Return() argument 475 Return(TNode<Float64T> value) Return() argument 502 PopAndReturn(Node* pop, Node* value) PopAndReturn() argument 507 ReturnIf(TNode<BoolT> condition, TNode<Object> value) ReturnIf() argument 531 StaticAssert(TNode<BoolT> value, const char* source) StaticAssert() argument 576 WordShl(TNode<WordT> value, int shift) WordShl() argument 580 WordShr(TNode<WordT> value, int shift) WordShr() argument 584 WordSar(TNode<WordT> value, int shift) WordSar() argument 588 Word32Shr(TNode<Word32T> value, int shift) Word32Shr() argument 592 Word32Sar(TNode<Word32T> value, int shift) Word32Sar() argument 614 ChangeUint32ToWord(TNode<Word32T> value) ChangeUint32ToWord() argument 622 ChangeInt32ToIntPtr(TNode<Word32T> value) ChangeInt32ToIntPtr() argument 629 ChangeFloat64ToIntPtr(TNode<Float64T> value) ChangeFloat64ToIntPtr() argument 636 ChangeFloat64ToUintPtr(TNode<Float64T> value) ChangeFloat64ToUintPtr() argument 644 ChangeUintPtrToFloat64(TNode<UintPtrT> value) ChangeUintPtrToFloat64() argument 654 RoundIntPtrToFloat64(Node* value) RoundIntPtrToFloat64() argument 661 TruncateFloat32ToInt32(TNode<Float32T> value) TruncateFloat32ToInt32() argument 717 PackMapWord(Node* value) PackMapWord() argument 762 Store(Node* base, Node* value) Store() argument 767 StoreToObject(MachineRepresentation rep, TNode<Object> object, TNode<IntPtrT> offset, Node* value, StoreToObjectWriteBarrier write_barrier) StoreToObject() argument 791 OptimizedStoreField(MachineRepresentation rep, TNode<HeapObject> object, int offset, Node* value) OptimizedStoreField() argument 798 OptimizedStoreFieldAssertNoWriteBarrier( MachineRepresentation rep, TNode<HeapObject> object, int offset, Node* value) OptimizedStoreFieldAssertNoWriteBarrier() argument 805 OptimizedStoreFieldUnsafeNoWriteBarrier( MachineRepresentation rep, TNode<HeapObject> object, int offset, Node* value) OptimizedStoreFieldUnsafeNoWriteBarrier() argument 817 Store(Node* base, Node* offset, Node* value) Store() argument 824 StoreEphemeronKey(Node* base, Node* offset, Node* value) StoreEphemeronKey() argument 830 StoreNoWriteBarrier(MachineRepresentation rep, Node* base, Node* value) StoreNoWriteBarrier() argument 837 StoreNoWriteBarrier(MachineRepresentation rep, Node* base, Node* offset, Node* value) StoreNoWriteBarrier() argument 846 UnsafeStoreNoWriteBarrier(MachineRepresentation rep, Node* base, Node* value) UnsafeStoreNoWriteBarrier() argument 851 UnsafeStoreNoWriteBarrier(MachineRepresentation rep, Node* base, Node* offset, Node* value) UnsafeStoreNoWriteBarrier() argument 874 AtomicStore(MachineRepresentation rep, AtomicMemoryOrder order, TNode<RawPtrT> base, TNode<WordT> offset, TNode<Word32T> value) AtomicStore() argument 880 base, offset, value); AtomicStore() local 883 AtomicStore64(AtomicMemoryOrder order, TNode<RawPtrT> base, TNode<WordT> offset, TNode<UintPtrT> value, TNode<UintPtrT> value_high) AtomicStore64() argument 889 base, offset, value, value_high); AtomicStore64() local 951 StoreRoot(RootIndex root_index, TNode<Object> value) StoreRoot() argument 959 Projection(int index, Node* value) Projection() argument 1445 Bind(Node* value) Bind() argument 1447 Node* CodeAssemblerVariable::value() const { value() function in v8::internal::compiler::CodeAssemblerVariable [all...] |
| /third_party/node/deps/v8/src/compiler/backend/ |
| H A D | register-allocator.h | 62 int value() const { return value_; } in value() function in v8::internal::compiler::final 160 static inline LifetimePosition FromInt(int value) { in FromInt() argument 171 explicit LifetimePosition(int value) : value_(value) {} in LifetimePosition() argument 691 void set_spilled(bool value) { bits_ = SpilledField::update(bits_, value); } in set_spilled() argument 814 set_is_phi(bool value) set_is_phi() argument 818 set_is_non_loop_phi(bool value) set_is_non_loop_phi() argument 841 register_slot_use(SlotUseKind value) register_slot_use() argument 878 set_spill_type(SpillType value) set_spill_type() argument [all...] |