Searched refs:string_length (Results 1 - 8 of 8) sorted by relevance

/external/chromium/chrome/browser/password_manager/
H A Die7_password.cc40 DWORD string_length; // The length of the data string. member in struct:__anon2153::Entry
/external/v8/src/arm/
H A Dfull-codegen-arm.cc3510 Register string_length = r3; local
3544 __ mov(string_length, Operand(0));
3553 // string_length: Accumulated sum of string lengths (smi).
3567 __ add(string_length, string_length, Operand(scratch1));
3583 // string_length: Sum of string lengths (smi).
3593 // string_length to get the length of the result string. array_length is not
3596 __ sub(string_length, string_length, Operand(scratch1));
3604 __ add(string_length, string_lengt
[all...]
/external/v8/src/mips/
H A Dfull-codegen-mips.cc3544 Register string_length = a3; local
3579 __ mov(string_length, zero_reg);
3589 // string_length: Accumulated sum of string lengths (smi).
3604 __ AdduAndCheckForOverflow(string_length, string_length, scratch1, scratch3);
3618 // string_length: Sum of string lengths (smi).
3628 // string_length to get the length of the result string. array_length is not
3631 __ Subu(string_length, string_length, Operand(scratch1));
3640 __ AdduAndCheckForOverflow(string_length, string_lengt
[all...]
/external/v8/src/ia32/
H A Dfull-codegen-ia32.cc3454 Register string_length = ecx; local
3498 __ Set(string_length, Immediate(0));
3501 // scratch, string_length, elements.
3518 __ add(string_length,
3539 // string_length: Sum of string lengths, as a smi.
3553 // to string_length.
3556 __ sub(string_length, scratch); // May be negative, temporarily.
3559 __ add(string_length, scratch);
3562 __ shr(string_length, 1);
3564 // string_length
[all...]
/external/v8/src/x64/
H A Dfull-codegen-x64.cc3346 Register string_length = rcx; local
3394 __ Set(string_length, 0);
3397 // scratch, string_length(int32), elements(FixedArray*).
3414 __ AddSmiField(string_length,
3422 // string_length: Sum of string lengths.
3440 // string_length: Sum of string lengths.
3455 // string_length: Sum of string lengths.
3460 // Add (separator length times (array_length - 1)) to string_length.
3466 __ addl(string_length, scratch);
3470 // string_length
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c650 return LLVMConstStringInContext(Context, String_val(Str), string_length(Str),
657 return LLVMConstStringInContext(Context, String_val(Str), string_length(Str),
/external/v8/src/
H A Druntime.cc6889 int string_length = string->length();
6898 0, string_length);
6932 int string_length = 0;
6955 max_string_length - length < string_length) {
6959 string_length += length;
6965 int remaining_length = max_string_length - string_length;
6967 string_length += separator_length * (array_length - 1);
6986 isolate->heap()->AllocateRawAsciiString(string_length);
6995 string_length));
6999 isolate->heap()->AllocateRawTwoByteString(string_length);
[all...]
H A Dapi.cc3806 int string_length = str->length(); local
3811 len = string_length;
3824 if (capacity == -1 || capacity / 3 >= string_length) {
3831 string_length,
3841 if (nchars_ref != NULL) *nchars_ref = string_length;
3848 } else if (capacity >= string_length) {

Completed in 180 milliseconds