Searched refs:representation (Results 1 - 25 of 148) 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/chromium_org/extensions/browser/
H A Dextension_icon_image_unittest.cc51 // |GetImageForScale| simply returns image representation from the image given
242 // Gets representation for a scale factor.
243 gfx::ImageSkiaRep representation = image.image_skia().GetRepresentation(1.0f); local
245 // Before the image representation is loaded, image should contain blank
246 // image representation.
248 representation.sk_bitmap(),
255 representation = image.image_skia().GetRepresentation(1.0f);
257 // We should get the right representation now.
258 EXPECT_TRUE(gfx::BitmapsAreEqual(representation.sk_bitmap(), bitmap_16));
259 EXPECT_EQ(16, representation
305 gfx::ImageSkiaRep representation = image.image_skia().GetRepresentation(2.0f); local
342 gfx::ImageSkiaRep representation = image.image_skia().GetRepresentation(1.0f); local
375 gfx::ImageSkiaRep representation = image.image_skia().GetRepresentation(1.0f); local
415 gfx::ImageSkiaRep representation = image.image_skia().GetRepresentation(1.0f); local
456 gfx::ImageSkiaRep representation = image.image_skia().GetRepresentation(1.0f); local
494 gfx::ImageSkiaRep representation = image.image_skia().GetRepresentation(1.0f); local
536 gfx::ImageSkiaRep representation = local
[all...]
H A Dextension_icon_image.cc27 // the image representation, the default icon's representation for the
34 // - The image will be updated with an appropriate image representation when
35 // the |ImageLoader| finishes. The image representation is chosen the same
37 // change, unless the added image representation is transparent (in which
39 // representation).
111 gfx::ImageSkiaRep representation; local
113 representation =
117 if (!representation.is_null())
118 return representation;
[all...]
/external/chromium_org/net/spdy/
H A Dhpack_encoder.h69 // Emits a static/dynamic indexed representation (Section 7.1).
72 // Emits a literal representation (Section 7.2).
73 void EmitIndexedLiteral(const Representation& representation);
74 void EmitNonIndexedLiteral(const Representation& representation);
75 void EmitLiteral(const Representation& representation);
H A Dhpack_encoder.cc113 void HpackEncoder::EmitIndexedLiteral(const Representation& representation) { argument
115 EmitLiteral(representation);
116 header_table_.TryAddEntry(representation.first, representation.second);
120 const Representation& representation) {
123 EmitString(representation.first);
124 EmitString(representation.second);
127 void HpackEncoder::EmitLiteral(const Representation& representation) { argument
128 const HpackEntry* name_entry = header_table_.GetByName(representation.first);
133 EmitString(representation
119 EmitNonIndexedLiteral( const Representation& representation) argument
[all...]
/external/chromium_org/v8/src/arm64/
H A Dlithium-arm64.cc783 DCHECK(instr->representation().IsDouble());
784 DCHECK(instr->left()->representation().IsDouble());
785 DCHECK(instr->right()->representation().IsDouble());
813 DCHECK(instr->representation().IsSmiOrTagged());
814 DCHECK(left->representation().IsSmiOrTagged());
815 DCHECK(right->representation().IsSmiOrTagged());
854 if (instr->representation().IsSmiOrInteger32()) {
855 DCHECK(instr->left()->representation().Equals(instr->representation()));
856 DCHECK(instr->right()->representation()
[all...]
/external/chromium_org/v8/src/
H A Dproperty-details.h199 Representation representation,
203 | RepresentationField::encode(EncodeRepresentation(representation))
211 PropertyDetails CopyWithRepresentation(Representation representation) const {
212 return PropertyDetails(value_, representation);
224 static uint8_t EncodeRepresentation(Representation representation) { argument
225 return representation.kind();
242 Representation representation() const { function in class:v8::internal::BASE_EMBEDDED
287 PropertyDetails(int value, Representation representation) { argument
289 value, EncodeRepresentation(representation));
197 PropertyDetails(PropertyAttributes attributes, PropertyType type, Representation representation, int field_index = 0) argument
H A Dhydrogen-canonicalize.cc20 if (instr->representation().IsInteger32()) {
25 } else if (instr->representation().IsSmi()) {
H A Dproperty.h62 Representation representation,
66 details_(attributes, type, representation, field_index) { }
81 Representation representation)
83 FIELD, representation, field_index) {}
88 Representation representation)
90 representation, field_index) { }
156 Representation representation() const { function in class:v8::internal::BASE_EMBEDDED
158 return details_.representation();
58 Descriptor(Handle<Name> key, Handle<Object> value, PropertyAttributes attributes, PropertyType type, Representation representation, int field_index = 0) argument
78 FieldDescriptor(Handle<Name> key, int field_index, PropertyAttributes attributes, Representation representation) argument
84 FieldDescriptor(Handle<Name> key, int field_index, Handle<HeapType> field_type, PropertyAttributes attributes, Representation representation) argument
H A Dhydrogen-representation-changes.cc5 #include "src/hydrogen-representation-changes.h"
12 // Insert the representation change right before its use. For phi-uses we
20 // For constants we try to make the representation change at compile
21 // time. When a representation change is not possible without loss of
29 // Try to create a new copy of the constant with the new representation.
65 Representation r = value->representation();
79 // inserted above it, examine the input representation of the HChange. If
119 if (phi->representation().IsInteger32()) {
121 } else if (phi->representation().IsSmi()) {
130 if (phi->representation()
[all...]
H A Dhydrogen-range-analysis.cc66 Representation from = instr->value()->representation();
77 if (instr->value()->representation().IsSmiOrInteger32()) {
125 if (test->representation().IsSmiOrInteger32()) {
174 if (!value->representation().IsNone()) {
231 if (instr->representation().IsSmiOrInteger32() &&
232 !instr->value()->representation().Equals(instr->representation())) {
239 instr->representation().Equals(
/external/chromium_org/v8/src/arm/
H A Dlithium-arm.cc359 hydrogen()->value()->representation().IsDouble());
675 if (instr->representation().IsSmiOrInteger32()) {
676 DCHECK(instr->left()->representation().Equals(instr->representation()));
677 DCHECK(instr->right()->representation().Equals(instr->representation()));
690 if (instr->representation().IsSmi() && constant_value > 0) {
718 DCHECK(instr->representation().IsDouble());
719 DCHECK(instr->left()->representation().IsDouble());
720 DCHECK(instr->right()->representation()
[all...]
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.cc159 hvalue->representation().IsInteger32() &&
403 hydrogen()->value()->representation().IsDouble());
697 if (instr->representation().IsSmiOrInteger32()) {
698 DCHECK(instr->left()->representation().Equals(instr->representation()));
699 DCHECK(instr->right()->representation().Equals(instr->representation()));
710 if (SmiValuesAre31Bits() && instr->representation().IsSmi() &&
741 DCHECK(instr->representation().IsDouble());
742 DCHECK(instr->left()->representation()
[all...]
/external/chromium_org/v8/src/ia32/
H A Dlithium-ia32.cc408 hydrogen()->value()->representation().IsDouble());
715 if (instr->representation().IsSmiOrInteger32()) {
716 DCHECK(instr->left()->representation().Equals(instr->representation()));
717 DCHECK(instr->right()->representation().Equals(instr->representation()));
730 if (instr->representation().IsSmi() && constant_value > 0) {
758 DCHECK(instr->representation().IsDouble());
759 DCHECK(instr->left()->representation().IsDouble());
760 DCHECK(instr->right()->representation()
[all...]
/external/chromium_org/v8/src/mips64/
H A Dlithium-mips64.cc366 hydrogen()->value()->representation().IsDouble());
682 if (instr->representation().IsSmiOrInteger32()) {
683 DCHECK(instr->left()->representation().Equals(instr->representation()));
684 DCHECK(instr->right()->representation().Equals(instr->representation()));
697 if (instr->representation().IsSmi() && constant_value > 0) {
725 DCHECK(instr->representation().IsDouble());
726 DCHECK(instr->left()->representation().IsDouble());
727 DCHECK(instr->right()->representation()
[all...]
/external/chromium_org/v8/src/x87/
H A Dlithium-x87.cc419 hydrogen()->value()->representation().IsDouble());
714 if (instr->representation().IsSmiOrInteger32()) {
715 DCHECK(instr->left()->representation().Equals(instr->representation()));
716 DCHECK(instr->right()->representation().Equals(instr->representation()));
729 if (instr->representation().IsSmi() && constant_value > 0) {
757 DCHECK(instr->representation().IsDouble());
758 DCHECK(instr->left()->representation().IsDouble());
759 DCHECK(instr->right()->representation()
[all...]
/external/chromium_org/v8/src/mips/
H A Dlithium-mips.cc366 hydrogen()->value()->representation().IsDouble());
682 if (instr->representation().IsSmiOrInteger32()) {
683 DCHECK(instr->left()->representation().Equals(instr->representation()));
684 DCHECK(instr->right()->representation().Equals(instr->representation()));
697 if (instr->representation().IsSmi() && constant_value > 0) {
725 DCHECK(instr->representation().IsDouble());
726 DCHECK(instr->left()->representation().IsDouble());
727 DCHECK(instr->right()->representation()
[all...]
/external/chromium_org/third_party/skia/bench/
H A Dbench_util.py11 # bench representation algorithm constant names
90 """Algorithm for selecting the representation value from a given list.
91 representation is one of the ALGORITHM_XXX representation types."""
92 def __init__(self, data, representation=None):
93 if not representation:
94 representation = ALGORITHM_AVERAGE # default algorithm
97 if representation == ALGORITHM_AVERAGE:
101 if representation == ALGORITHM_MINIMUM:
106 if representation
[all...]
/external/skia/bench/
H A Dbench_util.py11 # bench representation algorithm constant names
90 """Algorithm for selecting the representation value from a given list.
91 representation is one of the ALGORITHM_XXX representation types."""
92 def __init__(self, data, representation=None):
93 if not representation:
94 representation = ALGORITHM_AVERAGE # default algorithm
97 if representation == ALGORITHM_AVERAGE:
101 if representation == ALGORITHM_MINIMUM:
106 if 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/libcxxabi/src/Unwind/
H A DUnwind-EHABI.cpp758 static uint64_t ValueAsBitPattern(_Unwind_VRS_DataRepresentation representation, argument
761 switch (representation) {
780 _Unwind_VRS_DataRepresentation representation,
784 regno, representation,
785 ValueAsBitPattern(representation, valuep));
789 if (representation != _UVRSD_UINT32 || regno > 15)
796 if (representation != _UVRSD_UINT32 || regno > 3)
803 if (representation != _UVRSD_VFPX && representation != _UVRSD_DOUBLE)
805 if (representation
776 _Unwind_VRS_Set( _Unwind_Context *context, _Unwind_VRS_RegClass regclass, uint32_t regno, _Unwind_VRS_DataRepresentation representation, void *valuep) argument
828 _Unwind_VRS_Get_Internal( _Unwind_Context *context, _Unwind_VRS_RegClass regclass, uint32_t regno, _Unwind_VRS_DataRepresentation representation, void *valuep) argument
876 _Unwind_VRS_Get( _Unwind_Context *context, _Unwind_VRS_RegClass regclass, uint32_t regno, _Unwind_VRS_DataRepresentation representation, void *valuep) argument
892 _Unwind_VRS_Pop( _Unwind_Context *context, _Unwind_VRS_RegClass regclass, uint32_t discriminator, _Unwind_VRS_DataRepresentation representation) argument
[all...]
/external/llvm/bindings/ocaml/bitwriter/
H A Dllvm_bitwriter.ml11 * representation, the classes in the VMCore library.

Completed in 942 milliseconds

123456