Home
last modified time | relevance | path

Searched refs:representation (Results 1 – 25 of 509) sorted by relevance

12345678910>>...21

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
DGenericKey.java8 private Object representation; field in GenericKey
14 public GenericKey(Object representation) in GenericKey() argument
17 this.representation = representation; in GenericKey()
20 public GenericKey(AlgorithmIdentifier algorithmIdentifier, byte[] representation) in GenericKey() argument
23 this.representation = representation; in GenericKey()
26 protected GenericKey(AlgorithmIdentifier algorithmIdentifier, Object representation) in GenericKey() argument
29 this.representation = representation; in GenericKey()
39 return representation; in getRepresentation()
/external/v8/src/crankshaft/arm64/
Dlithium-arm64.cc719 DCHECK(instr->representation().IsDouble()); in DoArithmeticD()
720 DCHECK(instr->left()->representation().IsDouble()); in DoArithmeticD()
721 DCHECK(instr->right()->representation().IsDouble()); in DoArithmeticD()
749 DCHECK(instr->representation().IsSmiOrTagged()); in DoArithmeticT()
750 DCHECK(left->representation().IsSmiOrTagged()); in DoArithmeticT()
751 DCHECK(right->representation().IsSmiOrTagged()); in DoArithmeticT()
783 if (instr->representation().IsSmiOrInteger32()) { in DoAdd()
784 DCHECK(instr->left()->representation().Equals(instr->representation())); in DoAdd()
785 DCHECK(instr->right()->representation().Equals(instr->representation())); in DoAdd()
795 LInstruction* result = instr->representation().IsSmi() ? in DoAdd()
[all …]
/external/v8/src/crankshaft/ppc/
Dlithium-ppc.cc336 hydrogen()->value()->representation().IsDouble()); in PrintDataTo()
636 if (instr->representation().IsSmiOrInteger32()) { in DoShift()
637 DCHECK(instr->left()->representation().Equals(instr->representation())); in DoShift()
638 DCHECK(instr->right()->representation().Equals(instr->representation())); in DoShift()
651 if (instr->representation().IsSmi() && constant_value > 0) { in DoShift()
675 DCHECK(instr->representation().IsDouble()); in DoArithmeticD()
676 DCHECK(instr->left()->representation().IsDouble()); in DoArithmeticD()
677 DCHECK(instr->right()->representation().IsDouble()); in DoArithmeticD()
699 DCHECK(left->representation().IsTagged()); in DoArithmeticT()
700 DCHECK(right->representation().IsTagged()); in DoArithmeticT()
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
DAbstractListChromosome.java34 private final List<T> representation; field in AbstractListChromosome
40 public AbstractListChromosome(final List<T> representation) { in AbstractListChromosome() argument
42 checkValidity(representation); in AbstractListChromosome()
46 this.representation = Collections.unmodifiableList(new ArrayList<T> (representation)); in AbstractListChromosome()
53 public AbstractListChromosome(final T[] representation) { in AbstractListChromosome() argument
54 this(Arrays.asList(representation)); in AbstractListChromosome()
71 return representation; in getRepresentation()
DRandomKey.java81 public RandomKey(List<Double> representation) { in RandomKey() argument
82 super(representation); in RandomKey()
98 public RandomKey(Double[] representation) { in RandomKey() argument
99 this(Arrays.asList(representation)); in RandomKey()
119 …private static <S> List<S> decodeGeneric(List<S> sequence, List<Double> representation, List<Doubl… in decodeGeneric() argument
122 if (representation.size() != l) { in decodeGeneric()
123 …for decoding (%s) has to be equal to the length of the RandomKey (%s)", l, representation.size())); in decodeGeneric()
125 if (representation.size() != sortedRepr.size()) { in decodeGeneric()
126 …rmat("Representation and sortedRepr must have same sizes, %d != %d", representation.size(), sorted… in decodeGeneric()
129 …List<Double> reprCopy = new ArrayList<Double> (representation);// do not modify the orig. represen… in decodeGeneric()
DBinaryChromosome.java35 public BinaryChromosome(List<Integer> representation) { in BinaryChromosome() argument
36 super(representation); in BinaryChromosome()
43 public BinaryChromosome(Integer[] representation) { in BinaryChromosome() argument
44 super(representation); in BinaryChromosome()
/external/v8/src/crankshaft/mips64/
Dlithium-mips64.cc330 hydrogen()->value()->representation().IsDouble()); in PrintDataTo()
631 if (instr->representation().IsSmiOrInteger32()) { in DoShift()
632 DCHECK(instr->left()->representation().Equals(instr->representation())); in DoShift()
633 DCHECK(instr->right()->representation().Equals(instr->representation())); in DoShift()
646 if (instr->representation().IsSmi() && constant_value > 0) { in DoShift()
670 DCHECK(instr->representation().IsDouble()); in DoArithmeticD()
671 DCHECK(instr->left()->representation().IsDouble()); in DoArithmeticD()
672 DCHECK(instr->right()->representation().IsDouble()); in DoArithmeticD()
694 DCHECK(left->representation().IsTagged()); in DoArithmeticT()
695 DCHECK(right->representation().IsTagged()); in DoArithmeticT()
[all …]
/external/v8/src/crankshaft/arm/
Dlithium-arm.cc323 hydrogen()->value()->representation().IsDouble()); in PrintDataTo()
624 if (instr->representation().IsSmiOrInteger32()) { in DoShift()
625 DCHECK(instr->left()->representation().Equals(instr->representation())); in DoShift()
626 DCHECK(instr->right()->representation().Equals(instr->representation())); in DoShift()
639 if (instr->representation().IsSmi() && constant_value > 0) { in DoShift()
663 DCHECK(instr->representation().IsDouble()); in DoArithmeticD()
664 DCHECK(instr->left()->representation().IsDouble()); in DoArithmeticD()
665 DCHECK(instr->right()->representation().IsDouble()); in DoArithmeticD()
684 DCHECK(left->representation().IsTagged()); in DoArithmeticT()
685 DCHECK(right->representation().IsTagged()); in DoArithmeticT()
[all …]
/external/v8/src/crankshaft/mips/
Dlithium-mips.cc330 hydrogen()->value()->representation().IsDouble()); in PrintDataTo()
631 if (instr->representation().IsSmiOrInteger32()) { in DoShift()
632 DCHECK(instr->left()->representation().Equals(instr->representation())); in DoShift()
633 DCHECK(instr->right()->representation().Equals(instr->representation())); in DoShift()
646 if (instr->representation().IsSmi() && constant_value > 0) { in DoShift()
670 DCHECK(instr->representation().IsDouble()); in DoArithmeticD()
671 DCHECK(instr->left()->representation().IsDouble()); in DoArithmeticD()
672 DCHECK(instr->right()->representation().IsDouble()); in DoArithmeticD()
694 DCHECK(left->representation().IsTagged()); in DoArithmeticT()
695 DCHECK(right->representation().IsTagged()); in DoArithmeticT()
[all …]
/external/v8/src/crankshaft/x64/
Dlithium-x64.cc162 hvalue->representation().IsInteger32() && in MustSignExtendResult()
369 hydrogen()->value()->representation().IsDouble()); in PrintDataTo()
649 if (instr->representation().IsSmiOrInteger32()) { in DoShift()
650 DCHECK(instr->left()->representation().Equals(instr->representation())); in DoShift()
651 DCHECK(instr->right()->representation().Equals(instr->representation())); in DoShift()
662 if (SmiValuesAre31Bits() && instr->representation().IsSmi() && in DoShift()
689 DCHECK(instr->representation().IsDouble()); in DoArithmeticD()
690 DCHECK(instr->left()->representation().IsDouble()); in DoArithmeticD()
691 DCHECK(instr->right()->representation().IsDouble()); in DoArithmeticD()
711 DCHECK(left->representation().IsTagged()); in DoArithmeticT()
[all …]
/external/v8/src/crankshaft/s390/
Dlithium-s390.cc307 hydrogen()->value()->representation().IsDouble()); in PrintDataTo()
569 if (instr->representation().IsSmiOrInteger32()) { in DoShift()
570 DCHECK(instr->left()->representation().Equals(instr->representation())); in DoShift()
571 DCHECK(instr->right()->representation().Equals(instr->representation())); in DoShift()
584 if (instr->representation().IsSmi() && constant_value > 0) { in DoShift()
607 DCHECK(instr->representation().IsDouble()); in DoArithmeticD()
608 DCHECK(instr->left()->representation().IsDouble()); in DoArithmeticD()
609 DCHECK(instr->right()->representation().IsDouble()); in DoArithmeticD()
632 DCHECK(left->representation().IsTagged()); in DoArithmeticT()
633 DCHECK(right->representation().IsTagged()); in DoArithmeticT()
[all …]
/external/v8/src/crankshaft/ia32/
Dlithium-ia32.cc370 hydrogen()->value()->representation().IsDouble()); in PrintDataTo()
656 if (instr->representation().IsSmiOrInteger32()) { in DoShift()
657 DCHECK(instr->left()->representation().Equals(instr->representation())); in DoShift()
658 DCHECK(instr->right()->representation().Equals(instr->representation())); in DoShift()
671 if (instr->representation().IsSmi() && constant_value > 0) { in DoShift()
695 DCHECK(instr->representation().IsDouble()); in DoArithmeticD()
696 DCHECK(instr->left()->representation().IsDouble()); in DoArithmeticD()
697 DCHECK(instr->right()->representation().IsDouble()); in DoArithmeticD()
717 DCHECK(left->representation().IsTagged()); in DoArithmeticT()
718 DCHECK(right->representation().IsTagged()); in DoArithmeticT()
[all …]
/external/v8/src/crankshaft/x87/
Dlithium-x87.cc381 hydrogen()->value()->representation().IsDouble()); in PrintDataTo()
654 if (instr->representation().IsSmiOrInteger32()) { in DoShift()
655 DCHECK(instr->left()->representation().Equals(instr->representation())); in DoShift()
656 DCHECK(instr->right()->representation().Equals(instr->representation())); in DoShift()
669 if (instr->representation().IsSmi() && constant_value > 0) { in DoShift()
693 DCHECK(instr->representation().IsDouble()); in DoArithmeticD()
694 DCHECK(instr->left()->representation().IsDouble()); in DoArithmeticD()
695 DCHECK(instr->right()->representation().IsDouble()); in DoArithmeticD()
714 DCHECK(left->representation().IsTagged()); in DoArithmeticT()
715 DCHECK(right->representation().IsTagged()); in DoArithmeticT()
[all …]
/external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/
DDynamicSymmetry.h68 std::vector<int> representation; member
72 for (std::size_t i = 0; i < representation.size(); i++) in isId()
73 if (i != (size_t)representation[i]) in isId()
93 …return std::array<Index, N>{{ idx[n >= m_numIndices ? n : m_elements[which].representation[n]]... … in h_permute()
101 for (auto k : m_elements[which].representation) in h_permute()
111 result.representation.reserve(m_numIndices); in ge()
115 result.representation.push_back(g.two); in ge()
117 result.representation.push_back(g.one); in ge()
119 result.representation.push_back(int(k)); in ge()
143 if (ee.representation == e.representation) in findElement()
[all …]
/external/libunwind_llvm/src/
DUnwind-EHABI.cpp735 static uint64_t ValueAsBitPattern(_Unwind_VRS_DataRepresentation representation, in ValueAsBitPattern() argument
738 switch (representation) { in ValueAsBitPattern()
755 uint32_t regno, _Unwind_VRS_DataRepresentation representation, in _Unwind_VRS_Set() argument
760 representation, in _Unwind_VRS_Set()
761 ValueAsBitPattern(representation, valuep)); in _Unwind_VRS_Set()
765 if (representation != _UVRSD_UINT32 || regno > 15) in _Unwind_VRS_Set()
772 if (representation != _UVRSD_VFPX && representation != _UVRSD_DOUBLE) in _Unwind_VRS_Set()
774 if (representation == _UVRSD_VFPX) { in _Unwind_VRS_Set()
789 if (representation != _UVRSD_UINT32 || regno > 3) in _Unwind_VRS_Set()
796 if (representation != _UVRSD_DOUBLE || regno > 31) in _Unwind_VRS_Set()
[all …]
/external/v8/src/
Dmap-updater.cc62 Representation representation) const { in GetOrComputeFieldType()
69 return GetValue(descriptor)->OptimalType(isolate_, representation); in GetOrComputeFieldType()
75 PropertyLocation location, Representation representation) { in GetOrComputeFieldType() argument
82 ->OptimalType(isolate_, representation); in GetOrComputeFieldType()
89 Representation representation, in ReconfigureToDataField() argument
107 Representation old_representation = old_details.representation(); in ReconfigureToDataField()
108 new_representation_ = representation.generalize(old_representation); in ReconfigureToDataField()
122 new_representation_ = representation; in ReconfigureToDataField()
186 Representation old_representation = old_details.representation(); in TryRecofigureToDataFieldInplace()
208 .representation() in TryRecofigureToDataFieldInplace()
[all …]
Dproperty.cc27 Representation representation) { in DataField() argument
28 return DataField(key, field_index, attributes, kMutable, representation, in DataField()
35 Representation representation, in DataField() argument
38 PropertyDetails details(kData, attributes, kField, constness, representation, in DataField()
77 os << ":" << representation().Mnemonic(); in PrintAsFastTo()
Dproperty-details.h245 Representation representation, int field_index = 0) {
249 RepresentationField::encode(EncodeRepresentation(representation)) |
276 PropertyDetails CopyWithRepresentation(Representation representation) const { in CopyWithRepresentation() argument
277 return PropertyDetails(value_, representation); in CopyWithRepresentation()
292 static uint8_t EncodeRepresentation(Representation representation) { in EncodeRepresentation() argument
293 return representation.kind(); in EncodeRepresentation()
312 Representation representation() const { in representation() function
388 PropertyDetails(int value, Representation representation) { in PropertyDetails() argument
390 value, EncodeRepresentation(representation)); in PropertyDetails()
Dproperty.h33 Representation representation);
38 Representation representation,
79 PropertyConstness constness, Representation representation, in Descriptor() argument
83 details_(kind, attributes, location, constness, representation, in Descriptor()
Dmachine-type.h61 MachineType(MachineRepresentation representation, MachineSemantic semantic) in MachineType() argument
62 : representation_(representation), semantic_(semantic) {} in MachineType()
65 return representation() == other.representation() &&
72 MachineRepresentation representation() const { return representation_; } in representation() function
75 bool IsNone() { return representation() == MachineRepresentation::kNone; } in IsNone()
255 return static_cast<size_t>(type.representation()) + in hash_value()
/external/protobuf/src/google/protobuf/
Dwrappers.proto51 // The JSON representation for `DoubleValue` is JSON number.
59 // The JSON representation for `FloatValue` is JSON number.
67 // The JSON representation for `Int64Value` is JSON string.
75 // The JSON representation for `UInt64Value` is JSON string.
83 // The JSON representation for `Int32Value` is JSON number.
91 // The JSON representation for `UInt32Value` is JSON number.
99 // The JSON representation for `BoolValue` is JSON `true` and `false`.
107 // The JSON representation for `StringValue` is JSON string.
115 // The JSON representation for `BytesValue` is JSON string.
/external/python/cpython2/Doc/library/
Dpprint.rst16 types, the representation may not be loadable. This may be the case if objects
20 The formatted representation keeps objects on a single line if it can, and
46 formatted representation. The keywords are *indent*, *depth*, and *width*. The
78 Return the formatted representation of *object* as a string. *indent*, *width*
88 Prints the formatted representation of *object* on *stream*, followed by a
113 Determine if the formatted representation of *object* is "readable," or can be
123 Determine if *object* requires a recursive representation.
130 Return a string representation of *object*, protected against recursive data
131 structures. If the representation of *object* exposes a recursive entry, the
133 id=number>``. The representation is not otherwise formatted.
[all …]
/external/v8/src/ic/
Dhandler-configuration-inl.h84 Representation representation, in StoreField() argument
87 switch (representation.kind()) { in StoreField()
123 Representation representation) { in StoreField() argument
126 return StoreField(isolate, kind, descriptor, field_index, representation, in StoreField()
132 Representation representation, in TransitionToField() argument
135 representation, extend_storage); in TransitionToField()
/external/pdfium/third_party/lcms2-2.6/
D0013-utf8.patch39 //device representation of the color are given. Both representations are 16-bit values.
40 -//The device representation corresponds to the header�s �color space of data?field.
41 -//This representation should be consistent with the �number of device components?//field in the na…
42 -//The PCS representation corresponds to the header�s PCS field. The PCS representation
43 +//The device representation corresponds to the header's 'color space of data' field.
44 +//This representation should be consistent with the 'number of device components'
46 +//The PCS representation corresponds to the header's PCS field. The PCS representation
/external/v8/src/crankshaft/
Dhydrogen-representation-changes.cc63 Representation r = value->representation(); in InsertRepresentationChangesForValue()
132 if (phi->representation().IsInteger32()) { in Run()
134 } else if (phi->representation().IsSmi()) { in Run()
155 } else if (phi->representation().IsSmiOrInteger32() && in Run()
164 } else if (phi->representation().IsSmi() && in Run()
197 input->representation().IsSmiOrInteger32() && in Run()
214 input->representation().IsSmi() && in Run()

12345678910>>...21