OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:to_copy
(Results
1 - 8
of
8
) sorted by null
/hardware/libhardware/modules/consumerir/
consumerir.c
60
size_t
to_copy
= ARRAY_SIZE(consumerir_freqs);
local
62
to_copy
= len <
to_copy
? len :
to_copy
;
63
memcpy(ranges, consumerir_freqs,
to_copy
* sizeof(consumerir_freq_range_t));
64
return
to_copy
;
/art/runtime/native/
java_lang_StringFactory.cc
67
static jstring StringFactory_newStringFromString(JNIEnv* env, jclass, jstring
to_copy
) {
69
if (UNLIKELY(
to_copy
== nullptr)) {
74
Handle<mirror::String> string(hs.NewHandle(soa.Decode<mirror::String*>(
to_copy
)));
/external/elfutils/src/
ar.c
921
struct armem *
to_copy
= NULL;
local
978
if (
to_copy
== NULL)
979
to_copy
= newp->next = newp;
982
newp->next =
to_copy
->next;
983
to_copy
=
to_copy
->next = newp;
1027
if (likely (
to_copy
!= NULL))
1043
struct armem *last =
to_copy
;
1044
to_copy
=
to_copy
->next
[
all
...]
/ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.c
286
const size_t
to_copy
= min((size_t)(end - start), (size - 1));
local
287
memcpy(token, start,
to_copy
);
288
token[
to_copy
] = '\0';
/art/runtime/interpreter/
unstarted_runtime.cc
1092
mirror::String*
to_copy
= shadow_frame->GetVRegReference(arg_offset)->AsString();
local
[
all
...]
/external/libusb/libusb/os/
linux_usbfs.c
426
int
to_copy
;
local
492
to_copy
= (len < sizeof(tmp)) ? len : sizeof(tmp);
493
memcpy(buffer, tmp,
to_copy
);
[
all
...]
/external/zlib/src/contrib/minizip/
zip.c
247
unsigned char*
to_copy
;
local
263
to_copy
= &(ldi->data[ldi->filled_in_this_block]);
266
*(
to_copy
+i)=*(from_copy+i);
[
all
...]
/art/compiler/optimizing/
nodes.h
[
all
...]
Completed in 2784 milliseconds