OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:len_to_copy
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/Support/
OutputBuffer.h
111
unsigned
len_to_copy
= static_cast<unsigned>(S.length()) < Length
local
116
for (unsigned i = 0; i <
len_to_copy
; ++i)
/external/bluetooth/bluedroid/stack/sdp/
sdp_utils.c
1004
size_t
len_to_copy
;
local
1017
len_to_copy
= ((attr_len - *offset) < len) ? (attr_len - *offset): len;
1019
memcpy(p_out, &p_attr_buff[*offset],
len_to_copy
);
1021
p_out = &p_out[
len_to_copy
];
1022
*offset +=
len_to_copy
;
/system/core/init/
devices.c
666
long
len_to_copy
;
local
671
len_to_copy
= st.st_size;
675
while (
len_to_copy
> 0) {
687
len_to_copy
-= nr;
Completed in 185 milliseconds