HomeSort by relevance Sort by last modified time
    Searched refs:COPY (Results 1 - 25 of 317) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/libelf/
gelf_update_ehdr.c 77 /* Copy the data. */
79 #define COPY(name) \
81 COPY (e_type);
82 COPY (e_machine);
83 COPY (e_version);
84 COPY (e_entry);
85 COPY (e_phoff);
86 COPY (e_shoff);
87 COPY (e_flags);
88 COPY (e_ehsize)
    [all...]
gelf_getshdr.c 58 /* Copy the elements one-by-one. */
68 #define COPY(name) \
70 COPY (sh_name);
71 COPY (sh_type);
72 COPY (sh_flags);
73 COPY (sh_addr);
74 COPY (sh_offset);
75 COPY (sh_size);
76 COPY (sh_link);
77 COPY (sh_info)
    [all...]
gelf_update_shdr.c 74 #define COPY(name) \
76 COPY (sh_name);
77 COPY (sh_type);
78 COPY (sh_flags);
79 COPY (sh_addr);
80 COPY (sh_offset);
81 COPY (sh_size);
82 COPY (sh_link);
83 COPY (sh_info);
84 COPY (sh_addralign)
    [all...]
gelf_getehdr.c 72 #define COPY(name) \
74 COPY (e_type);
75 COPY (e_machine);
76 COPY (e_version);
77 COPY (e_entry);
78 COPY (e_phoff);
79 COPY (e_shoff);
80 COPY (e_flags);
81 COPY (e_ehsize);
82 COPY (e_phentsize)
    [all...]
gelf_getsym.c 77 /* This might look like a simple copy operation but it's
79 #define COPY(name) \
81 COPY (st_name);
82 /* Please note that we can simply copy the `st_info' element since
85 COPY (st_info);
86 COPY (st_other);
87 COPY (st_shndx);
88 COPY (st_value);
89 COPY (st_size);
gelf_update_sym.c 83 #define COPY(name) \
85 COPY (st_name);
86 COPY (st_value);
87 COPY (st_size);
88 /* Please note that we can simply copy the `st_info' element since
91 COPY (st_info);
92 COPY (st_other);
93 COPY (st_shndx);
gelf_getphdr.c 65 /* Copy the elements one-by-one. */
93 #define COPY(Name) result->Name = phdr->Name
94 COPY (p_type);
95 COPY (p_offset);
96 COPY (p_vaddr);
97 COPY (p_paddr);
98 COPY (p_filesz);
99 COPY (p_memsz);
100 COPY (p_flags);
101 COPY (p_align)
    [all...]
gelf_getsymshndx.c 96 /* This might look like a simple copy operation but it's
98 #define COPY(name) \
100 COPY (st_name);
101 /* Please note that we can simply copy the `st_info' element since
104 COPY (st_info);
105 COPY (st_other);
106 COPY (st_shndx);
107 COPY (st_value);
108 COPY (st_size);
gelf_update_symshndx.c 108 #define COPY(name) \
110 COPY (st_name);
111 COPY (st_value);
112 COPY (st_size);
113 /* Please note that we can simply copy the `st_info' element since
116 COPY (st_info);
117 COPY (st_other);
118 COPY (st_shndx);
gelf_update_phdr.c 96 #define COPY(name) \
98 COPY (p_type);
99 COPY (p_offset);
100 COPY (p_vaddr);
101 COPY (p_paddr);
102 COPY (p_filesz);
103 COPY (p_memsz);
104 COPY (p_flags);
105 COPY (p_align);
130 /* Just copy the data. *
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Target/
TargetOpcodes.h 61 /// register-to-register copy into a specific register class. This is only
65 /// instructions are insufficient. It is emitted as a COPY MachineInstr.
83 /// COPY - Target-independent register copy. This instruction can also be
84 /// used to copy between subregisters of virtual registers.
85 COPY = 13
  /external/linux-kselftest/tools/testing/selftests/powerpc/
instructions.h 7 /* This defines the "copy" instruction from Power ISA 3.0 Book II, section 4.4. */
10 #define COPY(RA, RB, L) \
13 static inline void copy(void *i) function
15 asm volatile(str(COPY(0, %0, 0))";"
24 asm volatile(str(COPY(0, %0, 1))";"
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fvwrite.c 66 #define COPY(n) (void)memcpy((void *)fp->_p, (void *)p, (size_t)(n))
128 COPY(w); /* copy MIN(fp->_w,len), */
134 COPY(w);
147 COPY(w);
174 COPY(w);
185 COPY(w);
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fvwrite.c 88 #define COPY(n) (void)memcpy((void *)fp->_p, (void *)p, (size_t)(n))
153 COPY(w); /* copy MIN(fp->_w,len), */
159 COPY(w);
172 COPY(w);
199 COPY(w);
210 COPY(w);
  /external/libpng/contrib/pngminim/decoder/
makefile 15 COPY=cp
129 $(COPY) $(PNGSRC)/$@ $@
135 $(COPY) $(ZLIBSRC)/$@ $@
143 echo $(COPY) $(ZLIBSRC)/$$f $@ &&\
144 $(COPY) $(ZLIBSRC)/$$f $@ && exit 0;\
145 done; echo copy: $(ZLIBSRC)/zconf.h not found; exit 1
149 $(COPY) $(PROGSRC)/png2pnm.c $@
  /external/libpng/contrib/pngminim/encoder/
makefile 15 COPY=cp
128 $(COPY) $(PNGSRC)/$@ $@
134 $(COPY) $(ZLIBSRC)/$@ $@
142 echo $(COPY) $(ZLIBSRC)/$$f $@ &&\
143 $(COPY) $(ZLIBSRC)/$$f $@ && exit 0;\
144 done; echo copy: $(ZLIBSRC)/zconf.h not found; exit 1
148 $(COPY) $(PROGSRC)/pnm2png.c $@
  /external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
PartiallyUncompressingPipeTest.java 5 // You may obtain a copy of the License at
47 stream.pipe(new ByteArrayInputStream(expectedBytes), Mode.COPY);
88 stream.pipe(new ByteArrayInputStream(expectedBytes1), Mode.COPY);
95 stream.pipe(new ByteArrayInputStream(expectedBytes3), Mode.COPY);
103 stream.pipe(new ByteArrayInputStream(expectedBytes5), Mode.COPY);
  /external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
PartiallyUncompressingPipe.java 5 // You may obtain a copy of the License at
47 * Copy bytes form the {@link InputStream} to the {@link OutputStream} without modification.
49 COPY,
86 if (mode == Mode.COPY) {
  /external/linux-kselftest/tools/testing/selftests/powerpc/context_switch/
cp_abort.c 12 * This program tests the copy paste abort functionality of a P9
14 * which executes the copy instruction and the other which
52 /* This defines the "copy" instruction from Power ISA 3.0 Book II, section 4.4. */
53 #define COPY(RA, RB, L) \
56 void copy(void *i) function
58 asm volatile(str(COPY(0, %0, 1))";"
77 * Run both processes on the same CPU, so that copy is more likely
99 copy(buf);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
ScheduleDAGEmit.cpp 41 // Copy to physical register.
54 BuildMI(*BB, InsertPos, DebugLoc(), TII->get(TargetOpcode::COPY), Reg)
57 // Copy from physical register.
63 BuildMI(*BB, InsertPos, DebugLoc(), TII->get(TargetOpcode::COPY), VRBase)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
inflate.h 35 COPY_, /* i/o: same as COPY below, but only first time in */
36 COPY, /* i/o: waiting for input or output to copy stored block */
45 MATCH, /* o: waiting for output space to copy string */
69 STORED -> COPY_ -> COPY -> TYPE
88 unsigned long check; /* protected copy of check value */
89 unsigned long total; /* protected copy of output count */
101 unsigned length; /* literal or length of data to copy */
102 unsigned offset; /* distance back to copy string from */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inflate.h 35 COPY, /* i/o: waiting for input or output to copy stored block */
43 MATCH, /* o: waiting for output space to copy string */
66 STORED -> COPY -> TYPE
84 unsigned long check; /* protected copy of check value */
85 unsigned long total; /* protected copy of output count */
97 unsigned length; /* literal or length of data to copy */
98 unsigned offset; /* distance back to copy string from */
  /external/pdfium/third_party/zlib_v128/
inflate.h 35 COPY_, /* i/o: same as COPY below, but only first time in */
36 COPY, /* i/o: waiting for input or output to copy stored block */
45 MATCH, /* o: waiting for output space to copy string */
69 STORED -> COPY_ -> COPY -> TYPE
88 unsigned long check; /* protected copy of check value */
89 unsigned long total; /* protected copy of output count */
101 unsigned length; /* literal or length of data to copy */
102 unsigned offset; /* distance back to copy string from */
  /external/syslinux/com32/lib/zlib/
inflate.h 35 COPY_, /* i/o: same as COPY below, but only first time in */
36 COPY, /* i/o: waiting for input or output to copy stored block */
45 MATCH, /* o: waiting for output space to copy string */
69 STORED -> COPY_ -> COPY -> TYPE
88 unsigned long check; /* protected copy of check value */
89 unsigned long total; /* protected copy of output count */
101 unsigned length; /* literal or length of data to copy */
102 unsigned offset; /* distance back to copy string from */
  /external/zlib/src/
inflate.h 35 COPY_, /* i/o: same as COPY below, but only first time in */
36 COPY, /* i/o: waiting for input or output to copy stored block */
45 MATCH, /* o: waiting for output space to copy string */
69 STORED -> COPY_ -> COPY -> TYPE
88 unsigned long check; /* protected copy of check value */
89 unsigned long total; /* protected copy of output count */
101 unsigned length; /* literal or length of data to copy */
102 unsigned offset; /* distance back to copy string from */

Completed in 1425 milliseconds

1 2 3 4 5 6 7 8 91011>>