Searched defs:representation (Results 1 - 25 of 66) sorted by relevance

123

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
H A DGenericKey.java8 private Object representation; field in class:GenericKey
12 * @param representation key data
14 public GenericKey(Object representation) argument
17 this.representation = representation;
20 public GenericKey(AlgorithmIdentifier algorithmIdentifier, byte[] representation) argument
23 this.representation = representation;
26 protected GenericKey(AlgorithmIdentifier algorithmIdentifier, Object representation) argument
29 this.representation
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
H A DAbstractListChromosome.java27 * @param <T> type of the representation list
34 private final List<T> representation; field in class:AbstractListChromosome
38 * @param representation inner representation of the chromosome
40 public AbstractListChromosome(final List<T> representation) { argument
42 checkValidity(representation);
44 throw new IllegalArgumentException(String.format("Invalid representation for %s", getClass().getSimpleName()), e);
46 this.representation = Collections.unmodifiableList(new ArrayList<T> (representation));
51 * @param representation inne
53 AbstractListChromosome(final T[] representation) argument
[all...]
H A DBinaryChromosome.java33 * @param representation list of {0,1} values representing the chromosome
35 public BinaryChromosome(List<Integer> representation) { argument
36 super(representation);
41 * @param representation array of {0,1} values representing the chromosome
43 public BinaryChromosome(Integer[] representation) { argument
44 super(representation);
59 * Returns a representation of a random binary array of length <code>length</code>.
H A DRandomKey.java27 * Random Key chromosome is used for permutation representation. It is a vector
39 * With this representation, common operators like n-point crossover can be
45 * array representation is sorted only once in the constructor.
67 * Cache of sorted representation (unmodifiable).
72 * Base sequence [0,1,...,n-1], permuted accorting to the representation (unmodifiable).
79 * @param representation list of [0,1] values representing the permutation
81 public RandomKey(List<Double> representation) { argument
82 super(representation);
83 // store the sorted representation
96 * @param representation arra
98 RandomKey(Double[] representation) argument
119 decodeGeneric(List<S> sequence, List<Double> representation, List<Double> sortedRepr) argument
[all...]
/external/v8/src/
H A Dproperty.cc27 Representation representation) {
28 return DataField(key, field_index, attributes, kMutable, representation,
35 Representation representation,
38 PropertyDetails details(kData, attributes, kField, constness, representation,
77 os << ":" << representation().Mnemonic();
25 DataField(Handle<Name> key, int field_index, PropertyAttributes attributes, Representation representation) argument
32 DataField(Handle<Name> key, int field_index, PropertyAttributes attributes, PropertyConstness constness, Representation representation, Handle<Object> wrapped_field_type) argument
H A Dproperty.h33 Representation representation);
38 Representation representation,
79 PropertyConstness constness, Representation representation,
83 details_(kind, attributes, location, constness, representation,
77 Descriptor(Handle<Name> key, Handle<Object> value, PropertyKind kind, PropertyAttributes attributes, PropertyLocation location, PropertyConstness constness, Representation representation, int field_index) argument
H A Dmap-updater.cc62 Representation representation) const {
69 return GetValue(descriptor)->OptimalType(isolate_, representation);
75 PropertyLocation location, Representation representation) {
82 ->OptimalType(isolate_, representation);
89 Representation representation,
103 // representation/field type from the old descriptor.
107 Representation old_representation = old_details.representation();
108 new_representation_ = representation.generalize(old_representation);
122 new_representation_ = representation;
175 // If it's just a representation generalizatio
73 GetOrComputeFieldType( Handle<DescriptorArray> descriptors, int descriptor, PropertyLocation location, Representation representation) argument
86 ReconfigureToDataField(int descriptor, PropertyAttributes attributes, PropertyConstness constness, Representation representation, Handle<FieldType> field_type) argument
[all...]
H A Dlookup.h236 Representation representation() const { function in class:v8::internal::BASE_EMBEDDED
237 return property_details().representation();
H A Dmachine-type.h61 MachineType(MachineRepresentation representation, MachineSemantic semantic) argument
62 : representation_(representation), semantic_(semantic) {}
65 return representation() == other.representation() &&
72 MachineRepresentation representation() const { return representation_; } function in class:v8::internal::MachineRepresentation::MachineType
75 bool IsNone() { return representation() == MachineRepresentation::kNone; }
255 return static_cast<size_t>(type.representation()) +
H A Dproperty-details.h245 Representation representation, int field_index = 0) {
249 RepresentationField::encode(EncodeRepresentation(representation)) |
276 PropertyDetails CopyWithRepresentation(Representation representation) const {
277 return PropertyDetails(value_, representation);
292 static uint8_t EncodeRepresentation(Representation representation) { argument
293 return representation.kind();
312 Representation representation() const { function in class:v8::internal::BASE_EMBEDDED
388 PropertyDetails(int value, Representation representation) { argument
390 value, EncodeRepresentation(representation));
243 PropertyDetails(PropertyKind kind, PropertyAttributes attributes, PropertyLocation location, PropertyConstness constness, Representation representation, int field_index = 0) argument
/external/v8/src/ic/
H A Dhandler-configuration-inl.h84 Representation representation,
87 switch (representation.kind()) {
123 Representation representation) {
126 return StoreField(isolate, kind, descriptor, field_index, representation,
132 Representation representation,
135 representation, extend_storage);
82 StoreField(Isolate* isolate, Kind kind, int descriptor, FieldIndex field_index, Representation representation, bool extend_storage) argument
120 StoreField(Isolate* isolate, int descriptor, FieldIndex field_index, PropertyConstness constness, Representation representation) argument
130 TransitionToField(Isolate* isolate, int descriptor, FieldIndex field_index, Representation representation, bool extend_storage) argument
H A Dkeyed-store-generic.cc77 void CheckFieldType(Node* descriptors, Node* name_index, Node* representation,
613 Node* representation,
619 GotoIf(Word32Equal(representation, Int32Constant(Representation::kSmi)),
621 GotoIf(Word32Equal(representation, Int32Constant(Representation::kDouble)),
624 Word32Equal(representation, Int32Constant(Representation::kHeapObject)),
626 GotoIf(Word32Equal(representation, Int32Constant(Representation::kNone)),
628 CSA_ASSERT(this, Word32Equal(representation,
686 Node* representation = local
689 CheckFieldType(descriptors, descriptor_name_index, representation, value,
706 Branch(Word32Equal(representation, Int32Constan
611 CheckFieldType(Node* descriptors, Node* name_index, Node* representation, Node* value, Label* bailout) argument
[all...]
/external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/
H A DDynamicSymmetry.h68 std::vector<int> representation; member in struct:Eigen::DynamicSGroup::GroupElement
72 for (std::size_t i = 0; i < representation.size(); i++)
73 if (i != (size_t)representation[i])
93 return std::array<Index, N>{{ idx[n >= m_numIndices ? n : m_elements[which].representation[n]]... }};
101 for (auto k : m_elements[which].representation)
111 result.representation.reserve(m_numIndices);
115 result.representation.push_back(g.two);
117 result.representation.push_back(g.one);
119 result.representation.push_back(int(k));
143 if (ee.representation
[all...]
/external/v8/src/compiler/
H A Dmachine-operator.h53 StoreRepresentation(MachineRepresentation representation, argument
55 : representation_(representation),
58 MachineRepresentation representation() const { return representation_; } function in class:v8::internal::compiler::final
294 // These operators change the representation of numbers while preserving the
314 // These operators truncate or round numbers, both changing the representation
417 // Floating point bit representation.
H A Dcommon-operator.h78 explicit SelectParameters(MachineRepresentation representation, argument
80 : representation_(representation), hint_(hint) {}
82 MachineRepresentation representation() const { return representation_; } function in class:v8::internal::compiler::final
352 const Operator* Phi(MachineRepresentation representation,
H A Dmachine-graph-verifier.cc66 return desc->GetReturnType(index).representation();
99 .representation();
103 linkage_->GetReturnType().representation());
116 LoadRepresentationOf(node->op()).representation());
120 CheckedLoadRepresentationOf(node->op()).representation());
130 UnalignedLoadRepresentationOf(node->op()).representation());
140 desc->GetReturnType(0).representation();
154 StoreRepresentationOf(node->op()).representation());
506 switch (type.representation()) {
554 MachineRepresentation representation) {
553 CheckValueInputRepresentationIs(Node const* node, int index, MachineRepresentation representation) argument
562 << input_representation << " which doesn't have a " << representation local
739 GetRepresentationProperties(MachineRepresentation representation) argument
[all...]
H A Drepresentation-change.h112 // is the preferred representation. For conversions that will require
116 // to the preferred representation. The preferred representation might be
121 UseInfo(MachineRepresentation representation, Truncation truncation, argument
125 : representation_(representation),
195 // Undetermined representation.
208 MachineRepresentation representation() const { return representation_; } function in class:v8::internal::compiler::UseInfo
221 // Contains logic related to changing the representation of values for constants
223 // Eagerly folds any representation changes for constants.
232 // Changes representation fro
[all...]
H A Djs-native-context-specialization.cc300 FieldAccess ForPropertyCellValue(MachineRepresentation representation, argument
304 if (representation == MachineRepresentation::kTaggedSigned) {
306 } else if (representation == MachineRepresentation::kTaggedPointer) {
309 MachineType r = MachineType::TypeForRepresentation(representation);
390 MachineRepresentation representation = MachineRepresentation::kTagged; local
395 representation = MachineRepresentation::kTaggedSigned;
398 representation = MachineRepresentation::kTaggedPointer;
404 representation = MachineRepresentation::kTaggedPointer;
417 representation, property_cell_value_type, map, name)),
446 MachineRepresentation representation local
[all...]
/external/v8/src/crankshaft/
H A Dhydrogen-escape-analysis.cc142 // Replace a field load with a given value, forcing Smi representation if
147 Representation representation = load->representation(); local
148 if (representation.IsSmiOrInteger32() || representation.IsDouble()) {
151 graph()->isolate(), zone, NULL, load_value, representation);
H A Dlithium.h447 Representation representation,
450 if (representation.IsSmiOrTagged()) {
446 AddValue(LOperand* operand, Representation representation, bool is_uint32) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECFieldElement.java497 * representation. Both trinomial (TPB) and pentanomial (PPB) polynomial
499 * representation is not supported.
504 * Indicates gaussian normal basis representation (GNB). Number chosen
510 * Indicates trinomial basis representation (TPB). Number chosen
516 * Indicates pentanomial basis representation (PPB). Number chosen
524 private int representation; field in class:ECFieldElement.F2m
568 this.representation = TPB;
583 this.representation = PPB;
610 this.representation = (ks.length == 1) ? TPB : PPB;
653 * (having the same representation)
[all...]
/external/libunwind_llvm/src/
H A DUnwind-EHABI.cpp736 static uint64_t ValueAsBitPattern(_Unwind_VRS_DataRepresentation representation, argument
739 switch (representation) {
756 uint32_t regno, _Unwind_VRS_DataRepresentation representation,
761 representation,
762 ValueAsBitPattern(representation, valuep));
766 if (representation != _UVRSD_UINT32 || regno > 15)
773 if (representation != _UVRSD_VFPX && representation != _UVRSD_DOUBLE)
775 if (representation == _UVRSD_VFPX) {
790 if (representation !
755 _Unwind_VRS_Set(_Unwind_Context *context, _Unwind_VRS_RegClass regclass, uint32_t regno, _Unwind_VRS_DataRepresentation representation, void *valuep) argument
813 _Unwind_VRS_Get_Internal(_Unwind_Context *context, _Unwind_VRS_RegClass regclass, uint32_t regno, _Unwind_VRS_DataRepresentation representation, void *valuep) argument
867 _Unwind_VRS_Get(_Unwind_Context *context, _Unwind_VRS_RegClass regclass, uint32_t regno, _Unwind_VRS_DataRepresentation representation, void *valuep) argument
882 _Unwind_VRS_Pop(_Unwind_Context *context, _Unwind_VRS_RegClass regclass, uint32_t discriminator, _Unwind_VRS_DataRepresentation representation) argument
[all...]
/external/v8/src/ast/
H A Dast-types.cc133 // Take the representation from the first element, which is always
525 // should be independent of the representation axis of the types.
614 // Take care of the representation part (and also approximate
699 // This checks the invariants of the union representation:
749 // Figure out the representation of the result first.
750 // The rest of the method should not change this representation and
753 const bitset representation = local
767 AST_SEMANTIC(type1->BitsetGlb() & type2->BitsetGlb()) | representation;
787 size = UpdateRange(AstRangeType::New(lims, representation, zone), result,
962 // Figure out the representation o
966 const bitset representation = local
1037 bitset representation = AST_REPRESENTATION(bits); local
[all...]
H A Dast-types.h24 // Types consist of two dimensions: semantic (value range) and representation.
69 // For the representation axis, the following holds:
88 // representation types initially include all semantic ranges. Representations
145 // Note that the bitset representation is closed under both Union and Intersect.
454 // TODO(neis): Allow restricting the representation.
482 AstBitsetType::bitset representation, Zone* zone) {
483 return New(Limits(min, max), representation, zone);
490 static AstType* New(Limits lim, AstBitsetType::bitset representation, argument
494 DCHECK(AST_REPRESENTATION(representation) == representation);
481 New(double min, double max, AstBitsetType::bitset representation, Zone* zone) argument
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DFormatString.h32 /// Class representing optional flags with location and representation
37 : representation(Representation), flag(false) {}
50 const char *toString() const { return representation; }
59 const char *representation; member in class:clang::analyze_format_string::OptionalFlag

Completed in 544 milliseconds

123