Searched refs:is_double (Results 1 - 25 of 33) sorted by relevance

12

/external/chromium_org/v8/src/arm/
H A Dconstants-arm.cc106 const char* VFPRegisters::Name(int reg, bool is_double) { argument
108 return names_[reg + (is_double ? kNumVFPSingleRegisters : 0)];
112 int VFPRegisters::Number(const char* name, bool* is_double) { argument
116 *is_double = false;
119 *is_double = true;
H A Dconstants-arm.h759 static const char* Name(int reg, bool is_double);
762 // Set flag pointed by is_double to true if register
764 static int Number(const char* name, bool* is_double);
H A Dsimulator-arm.cc195 bool is_double; local
196 int regnum = VFPRegisters::Number(desc, &is_double);
197 if (regnum != kNoRegister && !is_double) {
206 bool is_double; local
207 int regnum = VFPRegisters::Number(desc, &is_double);
208 if (regnum != kNoRegister && is_double) {
H A Dlithium-arm.h756 bool is_double() const { function in class:v8::internal::V8_FINAL
/external/v8/src/arm/
H A Dconstants-arm.cc104 const char* VFPRegisters::Name(int reg, bool is_double) { argument
106 return names_[reg + (is_double ? kNumVFPSingleRegisters : 0)];
110 int VFPRegisters::Number(const char* name, bool* is_double) { argument
114 *is_double = false;
117 *is_double = true;
H A Dconstants-arm.h760 static const char* Name(int reg, bool is_double);
763 // Set flag pointed by is_double to true if register
765 static int Number(const char* name, bool* is_double);
H A Dlithium-arm.cc425 int LChunk::GetNextSpillIndex(bool is_double) { argument
427 if (is_double) spill_slot_count_++;
432 LOperand* LChunk::GetNextSpillSlot(bool is_double) { argument
433 int index = GetNextSpillIndex(is_double);
434 if (is_double) {
H A Dsimulator-arm.cc194 bool is_double; local
195 int regnum = VFPRegisters::Number(desc, &is_double);
196 if (regnum != kNoRegister && !is_double) {
205 bool is_double; local
206 int regnum = VFPRegisters::Number(desc, &is_double);
207 if (regnum != kNoRegister && is_double) {
H A Dlithium-arm.h609 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
2201 int GetNextSpillIndex(bool is_double);
2202 LOperand* GetNextSpillSlot(bool is_double);
/external/chromium_org/ppapi/cpp/
H A Dvar.cc194 if (is_double())
201 if (is_double())
232 } else if (is_double()) {
H A Dvar.h154 /// The <code>is_double</code> function returns the internal representation.
161 bool is_double() const { return var_.type == PP_VARTYPE_DOUBLE; } function in class:pp::Var
187 /// !is_double() before calling AsInt().
200 /// !is_double() before calling AsInt().
/external/chromium_org/content/browser/renderer_host/java/
H A Djava_bound_object.cc279 bool is_double = variant.type == NPVariantType_Double; local
282 result.b = is_double ?
290 result.c = is_double ? 0 :
294 result.s = is_double ?
299 result.i = is_double ? RoundDoubleToInt(NPVARIANT_TO_DOUBLE(variant)) :
303 result.j = is_double ? RoundDoubleToLong(NPVARIANT_TO_DOUBLE(variant)) :
307 result.f = is_double ? static_cast<jfloat>(NPVARIANT_TO_DOUBLE(variant)) :
311 result.d = is_double ? NPVARIANT_TO_DOUBLE(variant) :
323 is_double ?
/external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/
H A Dgraphics_3d.cc302 } else if (x_angle_var.is_double()) {
311 } else if (y_angle_var.is_double()) {
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/cube/
H A Dcube.cc305 } else if (x_angle_var.is_double()) {
314 } else if (y_angle_var.is_double()) {
/external/chromium_org/ppapi/tests/
H A Dtest_post_message.cc861 ASSERT_TRUE(latest_var.is_int() || latest_var.is_double());
865 } else if (latest_var.is_double()) {
H A Dtest_x509_certificate_private.cc34 if (!field_value.is_double())
/external/v8/src/mips/
H A Dlithium-mips.cc425 int LChunk::GetNextSpillIndex(bool is_double) { argument
427 if (is_double) spill_slot_count_++;
432 LOperand* LChunk::GetNextSpillSlot(bool is_double) { argument
433 int index = GetNextSpillIndex(is_double);
434 if (is_double) {
H A Dlithium-mips.h608 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
2181 int GetNextSpillIndex(bool is_double);
2182 LOperand* GetNextSpillSlot(bool is_double);
/external/v8/src/x64/
H A Dlithium-x64.cc366 int LChunk::GetNextSpillIndex(bool is_double) { argument
371 LOperand* LChunk::GetNextSpillSlot(bool is_double) { argument
375 int index = GetNextSpillIndex(is_double);
376 if (is_double) {
H A Dlithium-x64.h593 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
2163 int GetNextSpillIndex(bool is_double);
2164 LOperand* GetNextSpillSlot(bool is_double);
/external/v8/src/ia32/
H A Dlithium-ia32.cc369 int LChunk::GetNextSpillIndex(bool is_double) { argument
371 if (is_double) spill_slot_count_++;
376 LOperand* LChunk::GetNextSpillSlot(bool is_double) { argument
377 int index = GetNextSpillIndex(is_double);
378 if (is_double) {
H A Dlithium-ia32.h584 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
2299 int GetNextSpillIndex(bool is_double);
2300 LOperand* GetNextSpillSlot(bool is_double);
/external/chromium_org/v8/src/ia32/
H A Dlithium-ia32.h732 bool is_double() const { function in class:v8::internal::V8_FINAL
/external/chromium_org/v8/src/mips/
H A Dlithium-mips.h749 bool is_double() const { function in class:v8::internal::V8_FINAL
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.h712 bool is_double() const { function in class:v8::internal::V8_FINAL

Completed in 722 milliseconds

12