OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:copycount
(Results
1 - 9
of
9
) sorted by null
/cts/tests/tests/rscpp/librscpptest/
rs_jni_allocation.cpp
149
int
copyCount
= count;
155
copyCount
= count * 3;
166
for (int i = 0; i <
copyCount
; i++) {
178
for (int i = 0; i <
copyCount
; i++) {
242
int
copyCount
= xCount * yCount;
247
copyCount
=
copyCount
* 3;
257
for (int i = 0; i <
copyCount
; i++) {
265
for (int i = 0; i <
copyCount
; i++) {
334
int
copyCount
= xCount * yCount * zCount
[
all
...]
/external/skia/tests/
StreamTest.cpp
382
size_t
copyCount
= SkTMin(fCount - fIdx, size);
383
if (
copyCount
) {
384
memcpy(buffer, &fData[fIdx],
copyCount
);
385
fIdx +=
copyCount
;
387
return
copyCount
;
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
SpriteBatch.java
572
int
copyCount
= Math.min(remainingVertices, count);
574
System.arraycopy(spriteVertices, offset, vertices, idx,
copyCount
);
575
idx +=
copyCount
;
576
count -=
copyCount
;
578
offset +=
copyCount
;
580
copyCount
= Math.min(verticesLength, count);
581
System.arraycopy(spriteVertices, offset, vertices, 0,
copyCount
);
582
idx +=
copyCount
;
583
count -=
copyCount
;
CpuSpriteBatch.java
602
int
copyCount
= Math.min(vertices.length - idx, count);
604
count -=
copyCount
;
605
while (
copyCount
> 0) {
617
copyCount
-= Sprite.VERTEX_SIZE;
622
copyCount
= Math.min(vertices.length, count);
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
VDUBuffer.java
752
int
copyCount
= bufSize - amount < 0 ? bufSize : amount;
754
System.arraycopy(charArray, copyStart, cbuf, 0,
copyCount
);
757
System.arraycopy(charAttributes, copyStart, abuf, 0,
copyCount
);
761
bufSize =
copyCount
;
/frameworks/base/core/java/android/print/
PrintJobInfo.java
488
* @param
copyCount
The number of copies.
492
public void setCopies(int
copyCount
) {
493
if (
copyCount
< 1) {
496
mCopies =
copyCount
;
/external/tcpdump/
print-smb.c
684
"
CopyCount
=[d]\n", "|ErrStr=[S]\n", NULL } },
[
all
...]
/frameworks/native/vulkan/nulldrv/
null_driver.cpp
[
all
...]
/packages/apps/Email/provider_src/com/android/email/provider/
EmailProvider.java
[
all
...]
Completed in 1034 milliseconds