/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AArch64/SVE/ |
D | cpy.s | 10 cpy z0.b, p0/m, w0 label 16 cpy z0.h, p0/m, w0 label 22 cpy z0.s, p0/m, w0 label 28 cpy z0.d, p0/m, x0 label 34 cpy z31.b, p7/m, wsp label 40 cpy z31.h, p7/m, wsp label 46 cpy z31.s, p7/m, wsp label 52 cpy z31.d, p7/m, sp label 58 cpy z0.b, p0/m, b0 label 64 cpy z31.b, p7/m, b31 label [all …]
|
D | cpy-diagnostics.s | 6 cpy z0.b, p0/m, x0 label 11 cpy z0.h, p0/m, x0 label 16 cpy z0.s, p0/m, x0 label 21 cpy z0.d, p0/m, w0 label 26 cpy z0.b, p0/m, h0 label 31 cpy z0.b, p0/m, s0 label 36 cpy z0.b, p0/m, d0 label 41 cpy z0.h, p0/m, b0 label 46 cpy z0.h, p0/m, s0 label 51 cpy z0.h, p0/m, d0 label [all …]
|
D | movprfx-diagnostics.s | 53 cpy z0.d, p0/m, d0 label
|
/external/u-boot/lib/ |
D | lz4.c | 88 BYTE* cpy; in LZ4_decompress_generic() local 129 cpy = op+length; in LZ4_decompress_generic() 130 …if (((endOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITER… in LZ4_decompress_generic() 131 || ((!endOnInput) && (cpy>oend-COPYLENGTH))) in LZ4_decompress_generic() 135 …if (cpy > oend) goto _output_error; /* Error : write attempt beyond end … in LZ4_decompress_generic() 140 …if ((!endOnInput) && (cpy != oend)) goto _output_error; /* Error : block decoding must stop … in LZ4_decompress_generic() 141 …if ((endOnInput) && ((ip+length != iend) || (cpy > oend))) goto _output_error; /* Error : input … in LZ4_decompress_generic() 148 LZ4_wildCopy(op, ip, cpy); in LZ4_decompress_generic() 149 ip += length; op = cpy; in LZ4_decompress_generic() 152 match = cpy - LZ4_readLE16(ip); ip+=2; in LZ4_decompress_generic() [all …]
|
/external/tensorflow/tensorflow/go/ |
D | shape.go | 43 cpy := make([]int64, len(shape)) 44 copy(cpy, shape) 45 return Shape{dims: cpy} 88 cpy := make([]int64, len(s.dims)) 89 copy(cpy, s.dims) 90 return cpy, nil
|
/external/u-boot/fs/zfs/ |
D | zfs_lzjb.c | 52 uint8_t *cpy, copymap = 0; in lzjb_decompress() local 68 cpy = dst - offset; in lzjb_decompress() 69 if (src > s_end || cpy < (uint8_t *) d_start) { in lzjb_decompress() 74 *dst++ = *cpy++; in lzjb_decompress()
|
/external/libpcap/ |
D | nametoaddr.c | 438 char *off, *cpy; in pcap_nametoportrange() local 442 if ((cpy = strdup(name)) == NULL) in pcap_nametoportrange() 445 if ((off = strchr(cpy, '-')) == NULL) { in pcap_nametoportrange() 446 free(cpy); in pcap_nametoportrange() 452 if (pcap_nametoport(cpy, port1, proto) == 0) { in pcap_nametoportrange() 453 free(cpy); in pcap_nametoportrange() 459 free(cpy); in pcap_nametoportrange() 462 free(cpy); in pcap_nametoportrange()
|
/external/skqp/experimental/canvaskit/htmlcanvas/ |
D | path2d.js | 126 function quadraticCurveTo(skpath, cpx, cpy, x, y) { argument 127 if (!allAreFinite([cpx, cpy, x, y])) { 131 skpath.moveTo(cpx, cpy); 133 skpath.quadTo(cpx, cpy, x, y); 199 this.quadraticCurveTo = function(cpx, cpy, x, y) { argument 200 quadraticCurveTo(this._path, cpx, cpy, x, y);
|
/external/skia/modules/canvaskit/htmlcanvas/ |
D | path2d.js | 126 function quadraticCurveTo(skpath, cpx, cpy, x, y) { argument 127 if (!allAreFinite([cpx, cpy, x, y])) { 131 skpath.moveTo(cpx, cpy); 133 skpath.quadTo(cpx, cpy, x, y); 199 this.quadraticCurveTo = function(cpx, cpy, x, y) { argument 200 quadraticCurveTo(this._path, cpx, cpy, x, y);
|
/external/spirv-llvm/lib/SPIRV/Mangler/ |
D | Refcount.h | 31 cpy(other); in RefCount() 44 cpy(other); 92 void cpy(const RefCount<T>& other) { in cpy() function
|
/external/skia/modules/pathkit/ |
D | chaining.js | 119 PathKit.SkPath.prototype.quadraticCurveTo = function(cpx, cpy, x, y) { argument 120 this._quadTo(cpx, cpy, x, y); 124 PathKit.SkPath.prototype.quadTo = function(cpx, cpy, x, y) { argument 125 this._quadTo(cpx, cpy, x, y);
|
/external/skqp/modules/pathkit/ |
D | chaining.js | 119 PathKit.SkPath.prototype.quadraticCurveTo = function(cpx, cpy, x, y) { argument 120 this._quadTo(cpx, cpy, x, y); 124 PathKit.SkPath.prototype.quadTo = function(cpx, cpy, x, y) { argument 125 this._quadTo(cpx, cpy, x, y);
|
/external/python/cpython3/Modules/_blake2/ |
D | blake2b_impl.c | 265 BLAKE2bObject *cpy; in _blake2_blake2b_copy_impl() local 267 if ((cpy = new_BLAKE2bObject(Py_TYPE(self))) == NULL) in _blake2_blake2b_copy_impl() 271 cpy->param = self->param; in _blake2_blake2b_copy_impl() 272 cpy->state = self->state; in _blake2_blake2b_copy_impl() 274 return (PyObject *)cpy; in _blake2_blake2b_copy_impl()
|
D | blake2s_impl.c | 265 BLAKE2sObject *cpy; in _blake2_blake2s_copy_impl() local 267 if ((cpy = new_BLAKE2sObject(Py_TYPE(self))) == NULL) in _blake2_blake2s_copy_impl() 271 cpy->param = self->param; in _blake2_blake2s_copy_impl() 272 cpy->state = self->state; in _blake2_blake2s_copy_impl() 274 return (PyObject *)cpy; in _blake2_blake2s_copy_impl()
|
/external/lz4/lib/ |
D | lz4.c | 1422 BYTE* cpy; in LZ4_decompress_generic() local 1508 cpy = op+length; in LZ4_decompress_generic() 1510 if ( ((endOnInput) && ((cpy>oend-MFLIMIT) || (ip+length>iend-(2+1+LASTLITERALS))) ) in LZ4_decompress_generic() 1511 || ((!endOnInput) && (cpy>oend-WILDCOPYLENGTH)) ) in LZ4_decompress_generic() 1514 …if (cpy > oend) { cpy = oend; length = oend-op; } /* Partial decoding : stop in the mi… in LZ4_decompress_generic() 1517 …if ((!endOnInput) && (cpy != oend)) goto _output_error; /* Error : block decoding must stop … in LZ4_decompress_generic() 1518 …if ((endOnInput) && ((ip+length != iend) || (cpy > oend))) goto _output_error; /* Error : input … in LZ4_decompress_generic() 1523 if (!partialDecoding || (cpy == oend)) { in LZ4_decompress_generic() 1529 LZ4_wildCopy(op, ip, cpy); /* may overwrite up to WILDCOPYLENGTH beyond cpy */ in LZ4_decompress_generic() 1530 ip += length; op = cpy; in LZ4_decompress_generic() [all …]
|
/external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/ |
D | TensorTest.java | 533 Tensor<Float> cpy = Tensor.fromHandle(src.getNativeHandle()).expect(Float.class); in fromHandle() local 534 assertEquals(src.dataType(), cpy.dataType()); in fromHandle() 535 assertEquals(src.numDimensions(), cpy.numDimensions()); in fromHandle() 536 assertArrayEquals(src.shape(), cpy.shape()); in fromHandle() 537 assertArrayEquals(matrix, cpy.copyTo(new float[2][3])); in fromHandle()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Mips/Fast-ISel/ |
D | memtest1.ll | 17 define void @cpy(i8* %src, i32 %i) { 18 ; ALL-LABEL: cpy:
|
/external/llvm/test/CodeGen/Mips/Fast-ISel/ |
D | memtest1.ll | 17 define void @cpy(i8* %src, i32 %i) { 18 ; ALL-LABEL: cpy:
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/ |
D | ZipArchiveEntry.java | 475 final ZipExtraField[] cpy = new ZipExtraField[length]; in copyOf() local 476 System.arraycopy(src, 0, cpy, 0, Math.min(src.length, length)); in copyOf() 477 return cpy; in copyOf()
|
/external/llvm/include/llvm/Transforms/Scalar/ |
D | MemCpyOptimizer.h | 55 bool performCallSlotOptzn(Instruction *cpy, Value *cpyDst, Value *cpySrc,
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Scalar/ |
D | MemCpyOptimizer.h | 65 bool performCallSlotOptzn(Instruction *cpy, Value *cpyDst, Value *cpySrc,
|
/external/llvm/lib/Transforms/Scalar/ |
D | MemCpyOptimizer.cpp | 330 bool performCallSlotOptzn(Instruction *cpy, Value *cpyDst, Value *cpySrc, 764 bool MemCpyOptPass::performCallSlotOptzn(Instruction *cpy, Value *cpyDest, in performCallSlotOptzn() argument 799 const DataLayout &DL = cpy->getModule()->getDataLayout(); in performCallSlotOptzn() 884 if (U != C && U != cpy) in performCallSlotOptzn() 947 combineMetadata(C, cpy, KnownIDs); in performCallSlotOptzn() 950 MD->removeInstruction(cpy); in performCallSlotOptzn()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | MemCpyOptimizer.cpp | 334 bool performCallSlotOptzn(Instruction *cpy, Value *cpyDst, Value *cpySrc, 560 bool MemCpyOpt::performCallSlotOptzn(Instruction *cpy, in performCallSlotOptzn() argument 648 } else if (UI != C && UI != cpy) { in performCallSlotOptzn() 691 MD->removeInstruction(cpy); in performCallSlotOptzn()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | MemCpyOptimizer.cpp | 803 bool MemCpyOptPass::performCallSlotOptzn(Instruction *cpy, Value *cpyDest, in performCallSlotOptzn() argument 838 const DataLayout &DL = cpy->getModule()->getDataLayout(); in performCallSlotOptzn() 923 if (U != C && U != cpy) in performCallSlotOptzn() 997 combineMetadata(C, cpy, KnownIDs); in performCallSlotOptzn() 1000 MD->removeInstruction(cpy); in performCallSlotOptzn()
|
/external/tensorflow/tensorflow/java/src/main/native/ |
D | tensor_jni.cc | 232 jbyte* cpy = env->GetByteArrayElements(ret, nullptr); in TF_StringDecodeTojbyteArray() local 233 memcpy(cpy, dst, dst_len); in TF_StringDecodeTojbyteArray() 234 env->ReleaseByteArrayElements(ret, cpy, 0); in TF_StringDecodeTojbyteArray()
|