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

1 2 3 45 6 7

  /external/chromium_org/third_party/zlib/
inflate.c 20 * - Unroll direct copy to three copies per loop in inffast.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
46 * - Unroll last copy for window match in inflate_fast()
363 unsigned copy, dist; local
382 /* copy state->wsize or less output bytes into the circular window */
383 copy = out - strm->avail_out;
384 if (copy >= state->wsize) {
391 if (dist > copy) dist = copy;
392 zmemcpy(state->window + state->wnext, strm->next_out - copy, dist)
600 unsigned copy; \/* number of stored or match bytes to copy *\/ local
    [all...]
gzlib.c 309 if (state->mode == GZ_READ && state->how == COPY &&
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_inflate.c 20 * - Unroll direct copy to three copies per loop in inffast.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
46 * - Unroll last copy for window match in inflate_fast()
97 unsigned copy));
382 unsigned copy)
404 /* copy state->wsize or less output bytes into the circular window */
405 if (copy >= state->wsize) {
412 if (dist > copy) dist = copy;
413 zmemcpy(state->window + state->wnext, end - copy, dist)
616 unsigned copy; \/* number of stored or match bytes to copy *\/ local
    [all...]
gzlib.c 394 if (state->mode == GZ_READ && state->how == COPY &&
  /external/qemu/distrib/zlib-1.2.8/
inflate.c 20 * - Unroll direct copy to three copies per loop in inffast.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
46 * - Unroll last copy for window match in inflate_fast()
97 unsigned copy));
379 local int updatewindow(strm, end, copy)
382 unsigned copy;
404 /* copy state->wsize or less output bytes into the circular window */
405 if (copy >= state->wsize) {
412 if (dist > copy) dist = copy;
616 unsigned copy; \/* number of stored or match bytes to copy *\/ local
    [all...]
gzlib.c 394 if (state->mode == GZ_READ && state->how == COPY &&
  /external/zlib/src/
inflate.c 20 * - Unroll direct copy to three copies per loop in inffast.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
46 * - Unroll last copy for window match in inflate_fast()
97 unsigned copy));
379 local int updatewindow(strm, end, copy)
382 unsigned copy;
404 /* copy state->wsize or less output bytes into the circular window */
405 if (copy >= state->wsize) {
412 if (dist > copy) dist = copy;
616 unsigned copy; \/* number of stored or match bytes to copy *\/ local
    [all...]
gzlib.c 394 if (state->mode == GZ_READ && state->how == COPY &&
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILISelDAGToDAG.cpp 166 unsigned int NewOpc = AMDGPU::COPY;
R600ISelLowering.cpp 101 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(AMDGPU::COPY))
  /external/llvm/include/llvm/Target/
TargetInstrInfo.h 110 /// extension instruction. That is, it's like a copy where it's legal for the
179 /// is a copy of one stack slot to another and has no other effect.
429 /// copy TrueReg to DstReg when Cond is true, and FalseReg to DstReg when
442 /// @param TrueReg Virtual register to copy when Cond is true.
443 /// @param FalseReg Virtual register to copy when Cons is false.
497 /// copyPhysReg - Emit instructions to copy a pair of physical registers.
503 /// careful implementation when multiple copy instructions are required for
    [all...]
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 246 // Copy backwards if Dst is within the Src range.
254 // Copy one operand at a time.
379 // Emit a copy.
381 TII.get(TargetOpcode::COPY), LiveIns[i].second)
PeepholeOptimizer.cpp 55 // b = copy A <-- cross-bank copy
56 // C = copy b <-- cross-bank copy
58 // b = copy A <-- cross-bank copy
59 // C = copy A <-- same-bank copy
62 // b = bitcast A <-- cross-bank copy
63 // C = bitcast b <-- cross-bank copy
    [all...]
TwoAddressInstructionPass.cpp 335 /// isCopyToReg - Return true if the specified MI is a copy instruction or
390 /// %reg1034 = copy %reg1024
391 /// %reg1035 = copy %reg1025<kill>
397 /// coalescing eliminate the extra copy.
424 // If the def is something other than a copy, then it isn't going to
449 /// use, return the use instruction if it's a copy or a two-address use.
542 // Commute the ADD to hopefully eliminate an otherwise unavoidable copy.
609 // Turn ADD into a 3-address instruction to avoid a copy.
659 /// is a copy or a two-address instruction.
706 /// if it's a copy. For a copy instruction, we find the physical registers th
    [all...]
  /external/llvm/lib/Target/R600/
R600OptimizeVectorRegisters.cpp 212 Pos = BuildMI(MBB, Pos, DL, TII->get(AMDGPU::COPY), Reg)
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILISelDAGToDAG.cpp 166 unsigned int NewOpc = AMDGPU::COPY;
R600ISelLowering.cpp 101 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(AMDGPU::COPY))
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
OldLogCatView.java 6 * You may obtain a copy of the License at
288 // setup the copy action
291 actionBars.setGlobalActionHandler(ActionFactory.COPY.getId(), new Action(
295 mLogPanel.copy(mClipboard);
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 481 // emits a copy from the physical register to a virtual register unless
482 // it requires a cross class copy (cost < 0). That means we are only
483 // treating "expensive to copy" register dependency as physical register
533 // Check for phys reg copy.
643 // This copy is a liveout value. It is likely coalesced, so reduce the
655 dbgs() << "PHYS REG COPY\n";
764 // Copy to physical register.
777 BuildMI(*BB, InsertPos, DebugLoc(), TII->get(TargetOpcode::COPY), Reg)
780 // Copy from physical register.
786 BuildMI(*BB, InsertPos, DebugLoc(), TII->get(TargetOpcode::COPY), VRBase
    [all...]
  /frameworks/compile/mclinker/lib/Script/
ScriptScanner.ll 150 <LDSCRIPT,EXPRESSION>"COPY" { return token::COPY; }
  /external/llvm/lib/Target/ARM/
A15SDOptimizer.cpp 265 // a subreg copy of a DPR, just use that DPR.
268 // Is it a subreg copy of ssub_0?
271 DEBUG(dbgs() << "Found a subreg copy: " << *SPRMI);
279 DEBUG(dbgs() << "Subreg copy is compatible - returning ");
330 // The only way we can do a partial register update is through a COPY,
358 // Look through full copies and PHIs to get the set of non-copy MachineInstrs
394 DEBUG(dbgs() << "Found partial copy" << *MI <<"\n");
453 TII->get(TargetOpcode::COPY), Out)
585 // D/Q registers. These can only be caused by COPY, INSERT_SUBREG and
589 // COPY and PHI nodes to find it
    [all...]
  /external/qemu/android/
hw-events.h 186 KEY_CODE(COPY ,133) \
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
progress_center_item_group.js 353 case ProgressItemType.COPY:
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp     [all...]
AArch64InstrInfo.cpp 942 case TargetOpcode::COPY:
954 case TargetOpcode::COPY: {
982 case TargetOpcode::COPY: {
    [all...]

Completed in 512 milliseconds

1 2 3 45 6 7