Searched defs:result_pos (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
H A Dinet_pton.c66 int result_pos = 0; local
87 if (result_pos + kIpv4AddressSize > kIpv6AddressSize)
90 if (!inet_pton_v4(pos, result + result_pos))
92 result_pos += 4;
96 if (result_pos > kIpv6AddressSize - 2)
98 result[result_pos] = (word & 0xFF00) >> 8;
99 result[result_pos + 1] = word & 0xFF;
100 result_pos += 2;
112 double_colon_pos = result_pos;
118 if (result_pos < kIpv6AddressSiz
[all...]
/external/chromium_org/v8/src/arm/
H A Dfull-codegen-arm.cc3928 Register result_pos = no_reg; // Will be r2 local
4042 // result_pos to the position of the result where to write the first
4045 result_pos = array_length; // End of live range for array_length.
4047 __ add(result_pos,
4060 // result_pos: the position to which we are currently copying characters.
4071 __ CopyBytes(string, result_pos, string_length, scratch);
4087 // result_pos: the position to which we are currently copying characters.
4093 __ strb(separator, MemOperand(result_pos, 1, PostIndex));
4103 __ CopyBytes(string, result_pos, string_length, scratch);
4113 // result_pos
[all...]
/external/chromium_org/v8/src/arm64/
H A Dfull-codegen-arm64.cc3609 Register result_pos = x5; local
3720 // result_pos to the position of the result where to write the first
3724 __ Add(result_pos, result, SeqOneByteString::kHeaderSize - kHeapObjectTag);
3734 // result_pos: the position to which we are currently copying characters.
3743 __ CopyBytes(result_pos, string, string_length, scratch1);
3758 // result_pos: the position to which we are currently copying characters.
3764 __ Strb(separator, MemOperand(result_pos, 1, PostIndex));
3772 __ CopyBytes(result_pos, string, string_length, scratch1);
3781 // result_pos: the position to which we are currently copying characters.
3791 __ CopyBytes(result_pos, strin
[all...]
/external/chromium_org/v8/src/ia32/
H A Dfull-codegen-ia32.cc3861 Register result_pos = no_reg; // Will be edi. local
3935 result_pos = array_length;
3966 __ AllocateOneByteString(result_pos, string_length, scratch, index, string,
3968 __ mov(result_operand, result_pos);
3969 __ lea(result_pos, FieldOperand(result_pos, SeqOneByteString::kHeaderSize));
3987 // result_pos: the position to which we are currently copying characters.
3999 __ CopyBytes(string, result_pos, string_length, scratch);
4023 // result_pos: the position to which we are currently copying characters.
4027 __ mov_b(Operand(result_pos,
[all...]
/external/chromium_org/v8/src/mips/
H A Dfull-codegen-mips.cc3944 Register result_pos = no_reg; // Will be a2. local
4057 // result_pos to the position of the result where to write the first
4061 result_pos = array_length; // End of live range for array_length.
4063 __ Addu(result_pos,
4076 // result_pos: the position to which we are currently copying characters.
4086 __ CopyBytes(string, result_pos, string_length, scratch1);
4102 // result_pos: the position to which we are currently copying characters.
4108 __ sb(separator, MemOperand(result_pos));
4109 __ Addu(result_pos, result_pos,
[all...]
/external/chromium_org/v8/src/mips64/
H A Dfull-codegen-mips64.cc3945 Register result_pos = no_reg; // Will be a2. local
4058 // result_pos to the position of the result where to write the first
4062 result_pos = array_length; // End of live range for array_length.
4064 __ Daddu(result_pos,
4077 // result_pos: the position to which we are currently copying characters.
4087 __ CopyBytes(string, result_pos, string_length, scratch1);
4103 // result_pos: the position to which we are currently copying characters.
4109 __ sb(separator, MemOperand(result_pos));
4110 __ Daddu(result_pos, result_pos,
[all...]
/external/chromium_org/v8/src/x64/
H A Dfull-codegen-x64.cc3854 Register result_pos = no_reg; // Will be rdi. local
3937 result_pos = array_length;
3973 __ AllocateOneByteString(result_pos, string_length, scratch, index, string,
3975 __ movp(result_operand, result_pos);
3976 __ leap(result_pos, FieldOperand(result_pos, SeqOneByteString::kHeaderSize));
3994 // result_pos: the position to which we are currently copying characters.
4006 __ CopyBytes(result_pos, string, string_length);
4034 // result_pos: the position to which we are currently copying characters.
4038 __ movb(Operand(result_pos,
[all...]
/external/chromium_org/v8/src/x87/
H A Dfull-codegen-x87.cc3850 Register result_pos = no_reg; // Will be edi. local
3924 result_pos = array_length;
3955 __ AllocateOneByteString(result_pos, string_length, scratch, index, string,
3957 __ mov(result_operand, result_pos);
3958 __ lea(result_pos, FieldOperand(result_pos, SeqOneByteString::kHeaderSize));
3976 // result_pos: the position to which we are currently copying characters.
3988 __ CopyBytes(string, result_pos, string_length, scratch);
4012 // result_pos: the position to which we are currently copying characters.
4016 __ mov_b(Operand(result_pos,
[all...]

Completed in 2154 milliseconds