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

1 2 3 4 5 6 7

  /external/elfutils/0.153/libelf/
gelf_update_ehdr.c 15 You should have received a copy of the GNU General Public License along
98 /* Copy the data. */
100 #define COPY(name) \
102 COPY (e_type);
103 COPY (e_machine);
104 COPY (e_version);
105 COPY (e_entry);
106 COPY (e_phoff);
107 COPY (e_shoff);
108 COPY (e_flags)
    [all...]
gelf_getshdr.c 15 You should have received a copy of the GNU General Public License along
81 /* Copy the elements one-by-one. */
91 #define COPY(name) \
93 COPY (sh_name);
94 COPY (sh_type);
95 COPY (sh_flags);
96 COPY (sh_addr);
97 COPY (sh_offset);
98 COPY (sh_size);
99 COPY (sh_link)
    [all...]
gelf_update_shdr.c 15 You should have received a copy of the GNU General Public License along
95 #define COPY(name) \
97 COPY (sh_name);
98 COPY (sh_type);
99 COPY (sh_flags);
100 COPY (sh_addr);
101 COPY (sh_offset);
102 COPY (sh_size);
103 COPY (sh_link);
104 COPY (sh_info)
    [all...]
gelf_getehdr.c 15 You should have received a copy of the GNU General Public License along
94 #define COPY(name) \
96 COPY (e_type);
97 COPY (e_machine);
98 COPY (e_version);
99 COPY (e_entry);
100 COPY (e_phoff);
101 COPY (e_shoff);
102 COPY (e_flags);
103 COPY (e_ehsize)
    [all...]
gelf_getsym.c 15 You should have received a copy of the GNU General Public License along
101 /* This might look like a simple copy operation but it's
103 #define COPY(name) \
105 COPY (st_name);
106 /* Please note that we can simply copy the `st_info' element since
109 COPY (st_info);
110 COPY (st_other);
111 COPY (st_shndx);
112 COPY (st_value);
113 COPY (st_size)
    [all...]
gelf_update_sym.c 15 You should have received a copy of the GNU General Public License along
113 #define COPY(name) \
115 COPY (st_name);
116 COPY (st_value);
117 COPY (st_size);
118 /* Please note that we can simply copy the `st_info' element since
121 COPY (st_info);
122 COPY (st_other);
123 COPY (st_shndx);
gelf_getphdr.c 15 You should have received a copy of the GNU General Public License along
89 /* Copy the elements one-by-one. */
119 #define COPY(Name) result->Name = phdr->Name
120 COPY (p_type);
121 COPY (p_offset);
122 COPY (p_vaddr);
123 COPY (p_paddr);
124 COPY (p_filesz);
125 COPY (p_memsz);
126 COPY (p_flags)
    [all...]
gelf_getsymshndx.c 16 You should have received a copy of the GNU General Public License along
121 /* This might look like a simple copy operation but it's
123 #define COPY(name) \
125 COPY (st_name);
126 /* Please note that we can simply copy the `st_info' element since
129 COPY (st_info);
130 COPY (st_other);
131 COPY (st_shndx);
132 COPY (st_value);
133 COPY (st_size)
    [all...]
gelf_update_symshndx.c 16 You should have received a copy of the GNU General Public License along
139 #define COPY(name) \
141 COPY (st_name);
142 COPY (st_value);
143 COPY (st_size);
144 /* Please note that we can simply copy the `st_info' element since
147 COPY (st_info);
148 COPY (st_other);
149 COPY (st_shndx);
gelf_update_phdr.c 15 You should have received a copy of the GNU General Public License along
117 #define COPY(name) \
119 COPY (p_type);
120 COPY (p_offset);
121 COPY (p_vaddr);
122 COPY (p_paddr);
123 COPY (p_filesz);
124 COPY (p_memsz);
125 COPY (p_flags);
126 COPY (p_align)
    [all...]
  /external/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.
84 /// COPY - Target-independent register copy. This instruction can also be
85 /// used to copy between subregisters of virtual registers.
86 COPY = 13,
  /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);
  /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/linux-tools-perf/perf-3.12.0/arch/ia64/lib/
memcpy.S 8 * in2: number of bytes to copy
44 * the more general copy routine handling arbitrary
66 mov dst=in0 // copy because of rotation
67 shr.u cnt=in2,3 // number of 8-byte words to copy
81 mov src=in1 // copy because of rotation
113 * copy loop. This performs relatively poorly on Itanium, but it doesn't
219 // At this point, dst is aligned to 8 bytes and there at least 16-7=9 bytes left to copy:
222 sub cnt=in2,cnt // cnt = number of bytes left to copy
230 shr.u t2=cnt,3 // t2 = number of 8-byte words left to copy
242 mov pr=cnt,0x38 // set (p5,p4,p3) to # of bytes last-word bytes to copy
    [all...]
  /external/chromium_org/third_party/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/chromium_org/ui/events/linux/
text_edit_command_auralinux.h 15 // Copy and assignment are explicitly allowed; these objects live in vectors.
19 COPY,
  /external/pdfium/core/src/fxcodec/fx_zlib/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/qemu/distrib/zlib-1.2.8/
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 */
  /external/chromium-libpac/
Android.mk 26 # DO NOT COPY without permission from WebView Owners
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestEditorContributor.java 6 * You may obtain a copy of the License at
86 actionBars.setGlobalActionHandler(ActionFactory.COPY.getId(),
87 getAction(editor, ITextEditorActionConstants.COPY));
  /external/libpng/contrib/pngminim/preader/
makefile 15 COPY=cp
144 $(COPY) $(PNGSRC)/$@ $@
150 $(COPY) $(ZLIBSRC)/$@ $@
158 echo $(COPY) $(ZLIBSRC)/$$f $@ &&\
159 $(COPY) $(ZLIBSRC)/$$f $@ && exit 0;\
160 done; echo copy: $(ZLIBSRC)/zconf.h not found; exit 1
164 $(COPY) $(PROGSRC)/$@ $@
  /external/elfutils/0.153/backends/
alpha_reloc.def 14 You should have received a copy of the GNU General Public License along
43 RELOC_TYPE (COPY, 0)
  /external/llvm/lib/Target/AArch64/
AArch64CleanupLocalDynamicTLSPass.cpp 90 // Replace the TLS_base_addr instruction I with a copy from
99 // Insert a Copy from TLSBaseAddrReg to x0, which is where the rest of the
101 MachineInstr *Copy = BuildMI(*I->getParent(), I, I->getDebugLoc(),
102 TII->get(TargetOpcode::COPY),
108 return Copy;
112 // inserting a copy instruction after I. Returns the new instruction.
123 // Insert a copy from X0 to TLSBaseAddrReg for later.
125 MachineInstr *Copy = BuildMI(*I->getParent(), Next, I->getDebugLoc(),
126 TII->get(TargetOpcode::COPY),
129 return Copy;
    [all...]

Completed in 535 milliseconds

1 2 3 4 5 6 7