HomeSort by relevance Sort by last modified time
    Searched refs:is_double (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/v8/src/arm/
constants-arm.cc 106 const char* VFPRegisters::Name(int reg, bool is_double) {
108 return names_[reg + (is_double ? kNumVFPSingleRegisters : 0)];
112 int VFPRegisters::Number(const char* name, bool* is_double) {
116 *is_double = false;
119 *is_double = true;
constants-arm.h 754 static const char* Name(int reg, bool is_double);
757 // Set flag pointed by is_double to true if register
759 static int Number(const char* name, bool* is_double);
  /external/v8/src/arm/
constants-arm.cc 104 const char* VFPRegisters::Name(int reg, bool is_double) {
106 return names_[reg + (is_double ? kNumVFPSingleRegisters : 0)];
110 int VFPRegisters::Number(const char* name, bool* is_double) {
114 *is_double = false;
117 *is_double = true;
constants-arm.h 760 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);
lithium-arm.cc 425 int LChunk::GetNextSpillIndex(bool is_double) {
427 if (is_double) spill_slot_count_++;
432 LOperand* LChunk::GetNextSpillSlot(bool is_double) {
433 int index = GetNextSpillIndex(is_double);
434 if (is_double) {
    [all...]
lithium-arm.h 609 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
    [all...]
  /dalvik/vm/mterp/x86/
OP_CMPG_DOUBLE.S 1 %default {"is_double":"1","nanval":"1"}
9 .if $is_double
  /art/compiler/dex/quick/arm/
fp_arm.cc 178 bool is_double) {
182 if (is_double) {
231 bool is_double = false; local
237 is_double = false;
241 is_double = false;
245 is_double = true;
249 is_double = true;
255 if (is_double) {
codegen_arm.h 122 void GenFusedFPCmpBranch(BasicBlock* bb, MIR* mir, bool gt_bias, bool is_double);
  /external/chromium_org/ppapi/cpp/
var.h 149 /// The <code>is_double</code> function returns the internal representation.
156 bool is_double() const { return var_.type == PP_VARTYPE_DOUBLE; } function in class:pp::Var
182 /// !is_double() before calling AsInt().
195 /// !is_double() before calling AsInt().
var.cc 194 if (is_double())
201 if (is_double())
232 } else if (is_double()) {
  /external/chromium_org/content/browser/renderer_host/java/
java_bound_object.cc 274 bool is_double = variant.type == NPVariantType_Double; local
277 result.b = is_double ?
285 result.c = is_double ? 0 :
289 result.s = is_double ?
294 result.i = is_double ? RoundDoubleToInt(NPVARIANT_TO_DOUBLE(variant)) :
298 result.j = is_double ? RoundDoubleToLong(NPVARIANT_TO_DOUBLE(variant)) :
302 result.f = is_double ? static_cast<jfloat>(NPVARIANT_TO_DOUBLE(variant)) :
306 result.d = is_double ? NPVARIANT_TO_DOUBLE(variant) :
318 is_double ?
    [all...]
  /dalvik/vm/compiler/codegen/x86/libenc/
encoder.inl 745 bool is_double) {
748 add_fp(args, 0, is_double);
749 add_m(args, m, is_double ? size_64 : size_32);
771 bool is_double, bool pop_stk)
774 add_m(args, m, is_double ? size_64 : size_32);
776 add_fp(args, 0, is_double);
encoder.h 617 //!char * fp_op_mem(char * stream, FP_Opcode opc,const M_Opnd& mem,int is_double);
636 ENCODER_DECLARE_EXPORT char * fld(char * stream, const M_Opnd & m, bool is_double);
652 ENCODER_DECLARE_EXPORT char * fst(char * stream, const M_Opnd & m, bool is_double, bool pop_stk);
  /art/compiler/dex/quick/x86/
fp_x86.cc 286 bool is_double) {
292 if (is_double) {
codegen_x86.h 123 void GenFusedFPCmpBranch(BasicBlock* bb, MIR* mir, bool gt_bias, bool is_double);
  /art/compiler/dex/quick/mips/
fp_mips.cc 216 bool gt_bias, bool is_double) {
codegen_mips.h 123 void GenFusedFPCmpBranch(BasicBlock* bb, MIR* mir, bool gt_bias, bool is_double);
  /art/compiler/dex/quick/
mir_to_lir.h 375 RegLocation GetReturnWide(bool is_double);
627 bool is_double) = 0;
    [all...]
  /external/chromium_org/ppapi/tests/
test_post_message.cc 748 ASSERT_TRUE(latest_var.is_int() || latest_var.is_double());
752 } else if (latest_var.is_double()) {
test_x509_certificate_private.cc 34 if (!field_value.is_double())
  /external/v8/src/mips/
lithium-mips.cc 425 int LChunk::GetNextSpillIndex(bool is_double) {
427 if (is_double) spill_slot_count_++;
432 LOperand* LChunk::GetNextSpillSlot(bool is_double) {
433 int index = GetNextSpillIndex(is_double);
434 if (is_double) {
    [all...]
lithium-mips.h 608 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
    [all...]
  /external/v8/src/ia32/
lithium-ia32.h 584 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
    [all...]
  /external/v8/src/x64/
lithium-x64.h 593 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
    [all...]

Completed in 1098 milliseconds

1 2