Home
last modified time | relevance | path

Searched refs:copyout (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Modules/zlib/
Dminigzip.c560 int copyout = 0; local
582 copyout = uncompr = 1;
586 copyout = 1;
617 if (copyout) {
622 if (copyout) {
632 if (copyout) {
/external/zlib/src/test/
Dminigzip.c560 int copyout = 0; local
582 copyout = uncompr = 1;
586 copyout = 1;
617 if (copyout) {
622 if (copyout) {
632 if (copyout) {
/external/syzkaller/prog/
Ddecodeexec.go235 for _, copyout := range dec.call.Copyout {
236 if dec.numVars < copyout.Index+1 {
237 dec.numVars = copyout.Index + 1
/external/syzkaller/pkg/csource/
Dcsource.go198 ctx.copyout(w, call, resCopyout)
330 func (ctx *context) copyout(w *bytes.Buffer, call prog.ExecCall, resCopyout bool) { func
351 for _, copyout := range call.Copyout {
353 copyout.Index, copyout.Size*8, copyout.Addr)
/external/syzkaller/executor/
Dexecutor.cc290 static bool copyout(char* addr, uint64 size, uint64* res);
818 if (copyout(addr, size, &val)) { in copyout_call_results()
1048 bool copyout(char* addr, uint64 size, uint64* res) in copyout() function