Searched refs:representation (Results 1 - 25 of 138) sorted by relevance

123456

/external/chromium_org/v8/test/cctest/
H A Dgay-fixed.h37 const char* representation; member in struct:v8::internal::PrecomputedFixed
H A Dgay-precision.h37 const char* representation; member in struct:v8::internal::PrecomputedPrecision
H A Dgay-shortest.h36 const char* representation; member in struct:v8::internal::PrecomputedShortest
H A Dtest-bignum-dtoa.cc46 static void TrimRepresentation(Vector<char> representation) { argument
47 int len = StrLength(representation.start());
50 if (representation[i] != '0') break;
52 representation[i + 1] = '\0';
270 CHECK_EQ(current_test.representation, buffer.start());
291 CHECK_EQ(current_test.representation, buffer.start());
313 CHECK_EQ(current_test.representation, buffer.start());
/external/v8/test/cctest/
H A Dgay-fixed.h37 const char* representation; member in struct:v8::internal::PrecomputedFixed
H A Dgay-precision.h37 const char* representation; member in struct:v8::internal::PrecomputedPrecision
H A Dgay-shortest.h36 const char* representation; member in struct:v8::internal::PrecomputedShortest
H A Dtest-bignum-dtoa.cc46 static void TrimRepresentation(Vector<char> representation) { argument
47 int len = StrLength(representation.start());
50 if (representation[i] != '0') break;
52 representation[i + 1] = '\0';
270 CHECK_EQ(current_test.representation, buffer.start());
291 CHECK_EQ(current_test.representation, buffer.start());
313 CHECK_EQ(current_test.representation, buffer.start());
/external/chromium_org/chrome/browser/extensions/
H A Dextension_icon_image_unittest.cc53 // |GetImageForScale| simply returns image representation from the image given
245 // Gets representation for a scale factor.
246 gfx::ImageSkiaRep representation = image.image_skia().GetRepresentation(1.0f); local
248 // Before the image representation is loaded, image should contain blank
249 // image representation.
251 representation.sk_bitmap(),
258 representation = image.image_skia().GetRepresentation(1.0f);
260 // We should get the right representation now.
261 EXPECT_TRUE(gfx::BitmapsAreEqual(representation.sk_bitmap(), bitmap_16));
262 EXPECT_EQ(16, representation
309 gfx::ImageSkiaRep representation = image.image_skia().GetRepresentation(2.0f); local
348 gfx::ImageSkiaRep representation = image.image_skia().GetRepresentation(1.0f); local
382 gfx::ImageSkiaRep representation = image.image_skia().GetRepresentation(1.0f); local
423 gfx::ImageSkiaRep representation = image.image_skia().GetRepresentation(1.0f); local
465 gfx::ImageSkiaRep representation = image.image_skia().GetRepresentation(1.0f); local
504 gfx::ImageSkiaRep representation = image.image_skia().GetRepresentation(1.0f); local
547 gfx::ImageSkiaRep representation = local
[all...]
/external/skia/bench/
H A Dbench_util.py10 # bench representation algorithm constant names
83 """Algorithm for selecting the representation value from a given list.
84 representation is one of the ALGORITHM_XXX representation types."""
85 def __init__(self, data, representation=None):
86 if not representation:
87 representation = ALGORITHM_AVERAGE # default algorithm
90 if representation == ALGORITHM_AVERAGE:
94 if representation == ALGORITHM_MINIMUM:
99 if representation
[all...]
/external/v8/src/mips/
H A Dlithium-mips.cc548 return graph_->LookupValue(operand->index())->representation();
835 if (instr->representation().IsTagged()) {
836 ASSERT(instr->left()->representation().IsTagged());
837 ASSERT(instr->right()->representation().IsTagged());
845 ASSERT(instr->representation().IsInteger32());
846 ASSERT(instr->left()->representation().IsInteger32());
847 ASSERT(instr->right()->representation().IsInteger32());
882 ASSERT(instr->representation().IsDouble());
883 ASSERT(instr->left()->representation().IsDouble());
884 ASSERT(instr->right()->representation()
[all...]
/external/v8/src/x64/
H A Dlithium-x64.cc541 return graph_->LookupValue(operand->index())->representation();
830 if (instr->representation().IsTagged()) {
831 ASSERT(instr->left()->representation().IsTagged());
832 ASSERT(instr->right()->representation().IsTagged());
840 ASSERT(instr->representation().IsInteger32());
841 ASSERT(instr->left()->representation().IsInteger32());
842 ASSERT(instr->right()->representation().IsInteger32());
877 ASSERT(instr->representation().IsDouble());
878 ASSERT(instr->left()->representation().IsDouble());
879 ASSERT(instr->right()->representation()
[all...]
/external/chromium_org/v8/src/
H A Dproperty-details.h227 Representation representation,
231 | RepresentationField::encode(EncodeRepresentation(representation))
239 PropertyDetails CopyWithRepresentation(Representation representation) { argument
240 return PropertyDetails(value_, representation);
252 static uint8_t EncodeRepresentation(Representation representation) { argument
253 return representation.kind();
270 Representation representation() { function in class:v8::internal::BASE_EMBEDDED
315 PropertyDetails(int value, Representation representation) { argument
317 value, EncodeRepresentation(representation));
225 PropertyDetails(PropertyAttributes attributes, PropertyType type, Representation representation, int field_index = 0) argument
H A Dhydrogen-canonicalize.cc43 if (instr->representation().IsInteger32()) {
48 } else if (instr->representation().IsSmi()) {
H A Dhydrogen-representation-changes.cc28 #include "hydrogen-representation-changes.h"
35 // Insert the representation change right before its use. For phi-uses we
43 // For constants we try to make the representation change at compile
44 // time. When a representation change is not possible without loss of
52 // Try to create a new copy of the constant with the new representation.
78 Representation r = value->representation();
113 if (phi->representation().IsInteger32()) {
115 } else if (phi->representation().IsSmi()) {
124 if (phi->representation().IsSmiOrInteger32() &&
134 if (phi->representation()
[all...]
H A Dhydrogen-minus-zero.cc42 Representation from = change->value()->representation();
55 if (check->value()->representation().IsSmiOrInteger32()) {
/external/v8/src/arm/
H A Dlithium-arm.cc548 return graph_->LookupValue(operand->index())->representation();
835 if (instr->representation().IsTagged()) {
836 ASSERT(instr->left()->representation().IsTagged());
837 ASSERT(instr->right()->representation().IsTagged());
845 ASSERT(instr->representation().IsInteger32());
846 ASSERT(instr->left()->representation().IsInteger32());
847 ASSERT(instr->right()->representation().IsInteger32());
882 ASSERT(instr->representation().IsDouble());
883 ASSERT(instr->left()->representation().IsDouble());
884 ASSERT(instr->right()->representation()
[all...]
/external/chromium_org/chrome/browser/resources/ntp4/
H A Dtile_page.css95 .tile.drag-representation {
102 .tile.drag-representation.placing > * {
108 .tile.drag-representation.dropped-on-other-page > * {
112 .tile.drag-representation.deleting > * {
118 .tile.drag-representation.placing {
/external/chromium_org/v8/src/arm/
H A Dlithium-arm.cc393 hydrogen()->value()->representation().IsDouble());
715 if (instr->representation().IsSmiOrInteger32()) {
716 ASSERT(instr->left()->representation().Equals(instr->representation()));
717 ASSERT(instr->right()->representation().Equals(instr->representation()));
730 if (instr->representation().IsSmi() && constant_value > 0) {
758 ASSERT(instr->representation().IsDouble());
759 ASSERT(instr->left()->representation().IsDouble());
760 ASSERT(instr->right()->representation()
[all...]
/external/chromium_org/v8/src/ia32/
H A Dlithium-ia32.cc453 hydrogen()->value()->representation().IsDouble());
780 if (instr->representation().IsSmiOrInteger32()) {
781 ASSERT(instr->left()->representation().Equals(instr->representation()));
782 ASSERT(instr->right()->representation().Equals(instr->representation()));
795 if (instr->representation().IsSmi() && constant_value > 0) {
823 ASSERT(instr->representation().IsDouble());
824 ASSERT(instr->left()->representation().IsDouble());
825 ASSERT(instr->right()->representation()
[all...]
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.cc417 hydrogen()->value()->representation().IsDouble());
724 if (instr->representation().IsSmiOrInteger32()) {
725 ASSERT(instr->left()->representation().Equals(instr->representation()));
726 ASSERT(instr->right()->representation().Equals(instr->representation()));
762 ASSERT(instr->representation().IsDouble());
763 ASSERT(instr->left()->representation().IsDouble());
764 ASSERT(instr->right()->representation().IsDouble());
783 ASSERT(left->representation()
[all...]
/external/chromium_org/v8/src/mips/
H A Dlithium-mips.cc398 hydrogen()->value()->representation().IsDouble());
720 if (instr->representation().IsSmiOrInteger32()) {
721 ASSERT(instr->left()->representation().Equals(instr->representation()));
722 ASSERT(instr->right()->representation().Equals(instr->representation()));
735 if (instr->representation().IsSmi() && constant_value > 0) {
763 ASSERT(instr->representation().IsDouble());
764 ASSERT(instr->left()->representation().IsDouble());
765 ASSERT(instr->right()->representation()
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECFieldElement.java309 // * representation. Both trinomial (TPB) and pentanomial (PPB) polynomial
311 // * representation is not supported.
318 // * Indicates gaussian normal basis representation (GNB). Number chosen
324 // * Indicates trinomial basis representation (TPB). Number chosen
330 // * Indicates pentanomial basis representation (PPB). Number chosen
338 // private int representation;
398 // this.representation = TPB;
412 // this.representation = PPB;
459 // * (having the same representation).
465 // * representation)
797 private int representation; field in class:ECFieldElement.F2m
[all...]
/external/llvm/bindings/ocaml/bitwriter/
H A Dllvm_bitwriter.ml11 * representation, the classes in the VMCore library.
/external/v8/src/ia32/
H A Dlithium-ia32.cc543 return graph_->LookupValue(operand->index())->representation();
834 if (instr->representation().IsTagged()) {
835 ASSERT(instr->left()->representation().IsTagged());
836 ASSERT(instr->right()->representation().IsTagged());
845 ASSERT(instr->representation().IsInteger32());
846 ASSERT(instr->left()->representation().IsInteger32());
847 ASSERT(instr->right()->representation().IsInteger32());
882 ASSERT(instr->representation().IsDouble());
883 ASSERT(instr->left()->representation().IsDouble());
884 ASSERT(instr->right()->representation()
[all...]

Completed in 3577 milliseconds

123456