Searched defs:representation (Results 1 - 25 of 64) 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.cc26 Representation representation)
28 representation, field_index) {}
57 os << ": " << details.representation().Mnemonic();
24 DataDescriptor(Handle<Name> key, int field_index, PropertyAttributes attributes, Representation representation) argument
H A Dproperty.h53 Representation representation, int field_index = 0)
56 details_(attributes, type, representation, field_index) {
72 PropertyAttributes attributes, Representation representation);
76 PropertyAttributes attributes, Representation representation)
77 : Descriptor(key, wrapped_field_type, attributes, DATA, representation,
51 Descriptor(Handle<Name> key, Handle<Object> value, PropertyAttributes attributes, PropertyType type, Representation representation, int field_index = 0) argument
74 DataDescriptor(Handle<Name> key, int field_index, Handle<Object> wrapped_field_type, PropertyAttributes attributes, Representation representation) argument
H A Dlookup.h236 Representation representation() const { function in class:v8::internal::BASE_EMBEDDED
237 return property_details().representation();
H A Dmachine-type.h58 MachineType(MachineRepresentation representation, MachineSemantic semantic) argument
59 : representation_(representation), semantic_(semantic) {}
62 return representation() == other.representation() &&
69 MachineRepresentation representation() const { return representation_; } function in class:v8::internal::MachineRepresentation::MachineType
72 bool IsNone() { return representation() == MachineRepresentation::kNone; }
224 return static_cast<size_t>(type.representation()) +
H A Dcode-stubs-hydrogen.cc82 Representation representation,
735 Representation representation = index.is_double() local
740 ? HObjectAccess::ForObservableJSObjectOffset(offset, representation)
741 : HObjectAccess::ForBackingStoreOffset(offset, representation);
783 Representation representation, bool transition_to_field) {
784 DCHECK(!index.is_double() || representation.IsDouble());
788 ? HObjectAccess::ForObservableJSObjectOffset(offset, representation)
789 : HObjectAccess::ForBackingStoreOffset(offset, representation);
791 if (representation.IsDouble()) {
818 } else if (representation
781 BuildStoreNamedField( HValue* object, HValue* value, FieldIndex index, Representation representation, bool transition_to_field) argument
[all...]
H A Dproperty-details.h249 Representation representation,
253 | RepresentationField::encode(EncodeRepresentation(representation))
258 PropertyLocation location, Representation representation,
262 RepresentationField::encode(EncodeRepresentation(representation)) |
289 PropertyDetails CopyWithRepresentation(Representation representation) const {
290 return PropertyDetails(value_, representation);
302 static uint8_t EncodeRepresentation(Representation representation) { argument
303 return representation.kind();
323 Representation representation() const { function in class:v8::internal::BASE_EMBEDDED
384 PropertyDetails(int value, Representation representation) { argument
247 PropertyDetails(PropertyAttributes attributes, PropertyType type, Representation representation, int field_index = 0) argument
257 PropertyDetails(PropertyAttributes attributes, PropertyKind kind, PropertyLocation location, Representation representation, int field_index = 0) argument
[all...]
/external/v8/src/ic/
H A Dhandler-configuration-inl.h84 Representation representation,
87 switch (representation.kind()) {
120 Representation representation) {
122 representation, false);
127 Representation representation,
130 representation, extend_storage);
82 StoreField(Isolate* isolate, Kind kind, int descriptor, FieldIndex field_index, Representation representation, bool extend_storage) argument
118 StoreField(Isolate* isolate, int descriptor, FieldIndex field_index, Representation representation) argument
125 TransitionToField(Isolate* isolate, int descriptor, FieldIndex field_index, Representation representation, bool extend_storage) argument
H A Dhandler-compiler.cc498 Representation representation = details.representation(); local
499 DCHECK(!representation.IsNone());
519 if (representation.IsHeapObject()) {
540 StoreTransitionStub stub(isolate(), index.is_inobject(), representation, local
563 DCHECK(it->representation().IsHeapObject());
577 StoreFieldStub stub(isolate(), it->GetFieldIndex(), it->representation());
/external/v8/src/compiler/
H A Djs-global-object-specialization.cc51 FieldAccess ForPropertyCellValue(MachineRepresentation representation, argument
54 if (representation == MachineRepresentation::kTaggedSigned) {
56 } else if (representation == MachineRepresentation::kTaggedPointer) {
59 MachineType r = MachineType::TypeForRepresentation(representation);
119 MachineRepresentation representation = MachineRepresentation::kTagged; local
124 representation = MachineRepresentation::kTaggedSigned;
127 representation = MachineRepresentation::kTaggedPointer;
134 representation = MachineRepresentation::kTaggedPointer;
139 representation, property_cell_value_type, name)),
195 MachineRepresentation representation local
[all...]
H A Dcommon-operator.h84 explicit SelectParameters(MachineRepresentation representation, argument
86 : representation_(representation), hint_(hint) {}
88 MachineRepresentation representation() const { return representation_; } function in class:v8::internal::compiler::final
236 const Operator* Phi(MachineRepresentation representation,
H A Dmachine-graph-verifier.cc62 return desc->GetReturnType(index).representation();
83 .representation();
95 LoadRepresentationOf(node->op()).representation();
99 CheckedLoadRepresentationOf(node->op()).representation();
115 desc->GetReturnType(0).representation();
124 UnalignedLoadRepresentationOf(node->op()).representation();
377 switch (StoreRepresentationOf(node->op()).representation()) {
386 StoreRepresentationOf(node->op()).representation());
447 MachineRepresentation representation) {
451 if (input_representation != representation) {
446 CheckValueInputRepresentationIs(Node const* node, int index, MachineRepresentation representation) argument
609 GetRepresentationProperties(MachineRepresentation representation) argument
[all...]
H A Dmachine-operator.h54 StoreRepresentation(MachineRepresentation representation, argument
56 : representation_(representation),
59 MachineRepresentation representation() const { return representation_; } function in class:v8::internal::compiler::final
295 // These operators change the representation of numbers while preserving the
315 // These operators truncate or round numbers, both changing the representation
418 // Floating point bit representation.
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...]
/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/crankshaft/
H A Dhydrogen-escape-analysis.cc141 // 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);
/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.cpp770 static uint64_t ValueAsBitPattern(_Unwind_VRS_DataRepresentation representation, argument
773 switch (representation) {
790 uint32_t regno, _Unwind_VRS_DataRepresentation representation,
795 representation,
796 ValueAsBitPattern(representation, valuep));
800 if (representation != _UVRSD_UINT32 || regno > 15)
807 if (representation != _UVRSD_UINT32 || regno > 3)
814 if (representation != _UVRSD_VFPX && representation != _UVRSD_DOUBLE)
816 if (representation
789 _Unwind_VRS_Set(_Unwind_Context *context, _Unwind_VRS_RegClass regclass, uint32_t regno, _Unwind_VRS_DataRepresentation representation, void *valuep) argument
841 _Unwind_VRS_Get_Internal(_Unwind_Context *context, _Unwind_VRS_RegClass regclass, uint32_t regno, _Unwind_VRS_DataRepresentation representation, void *valuep) argument
888 _Unwind_VRS_Get( _Unwind_Context *context, _Unwind_VRS_RegClass regclass, uint32_t regno, _Unwind_VRS_DataRepresentation representation, void *valuep) argument
906 _Unwind_VRS_Pop(_Unwind_Context *context, _Unwind_VRS_RegClass regclass, uint32_t discriminator, _Unwind_VRS_DataRepresentation representation) argument
[all...]
/external/v8/src/builtins/
H A Dbuiltins-object.cc80 // cached representation of the source. Preventively upgrade the target.
113 Representation representation = details.representation(); local
115 prop_value = JSObject::FastPropertyAt(from, representation, index);
/external/v8/src/ast/
H A Dast-types.cc132 // Take the representation from the first element, which is always
524 // should be independent of the representation axis of the types.
613 // Take care of the representation part (and also approximate
698 // This checks the invariants of the union representation:
748 // Figure out the representation of the result first.
749 // The rest of the method should not change this representation and
752 const bitset representation = local
766 AST_SEMANTIC(type1->BitsetGlb() & type2->BitsetGlb()) | representation;
786 size = UpdateRange(AstRangeType::New(lims, representation, zone), result,
961 // Figure out the representation o
965 const bitset representation = local
1036 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.
456 // TODO(neis): Allow restricting the representation.
484 AstBitsetType::bitset representation, Zone* zone) {
485 return New(Limits(min, max), representation, zone);
492 static AstType* New(Limits lim, AstBitsetType::bitset representation, argument
496 DCHECK(AST_REPRESENTATION(representation) == representation);
483 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 564 milliseconds

123