/external/eigen/demos/mandelbrot/ |
D | mandelbrot.cpp | 33 enum { packetSize = Eigen::internal::packet_traits<Real>::size }; // number of reals in a Packet in render() enumerator 34 typedef Eigen::Array<Real, packetSize, 1> Packet; // wrap a Packet as a vector in render() 38 const int alignedWidth = (img_width/packetSize)*packetSize; in render() 57 for(int i = 0; i < packetSize; i++) pzi_start[i] = pci_start[i] = start.y() + y * step.y(); in render() 59 for(int x = 0; x < alignedWidth; x += packetSize, pix += packetSize) in render() 62 for(int i = 0; i < packetSize; i++) pzr[i] = pcr[i] = start.x() + (x+i) * step.x(); in render() 67 typedef Eigen::Matrix<int, packetSize, 1> Packeti; in render() 91 total_iter += iters_before_test * packetSize; in render() 96 for(int i = 0; i < packetSize; i++) in render() 150 int packetSize = threads[0]->single_precision in paintEvent() local [all …]
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/ |
D | AudioSampleEntry.java | 58 private int packetSize; field in AudioSampleEntry 94 return packetSize; in getPacketSize() 145 public void setPacketSize(int packetSize) { in setPacketSize() argument 146 this.packetSize = packetSize; in setPacketSize() 197 packetSize = IsoTypeReader.readUInt16(content); in _parseDetails() 239 ", packetSize=" + packetSize + in toString() 258 IsoTypeWriter.writeUInt16(byteBuffer, packetSize); in getContent()
|
/external/eigen/Eigen/src/Core/ |
D | Redux.h | 219 const Index packetSize = redux_traits<Func, Derived>::PacketSize; 226 const Index alignedSize2 = ((size-alignedStart)/(2*packetSize))*(2*packetSize); 227 const Index alignedSize = ((size-alignedStart)/(packetSize))*(packetSize); 234 if(alignedSize>packetSize) // we have at least two packets to partly unroll the loop 236 … PacketScalar packet_res1 = mat.template packet<alignment,PacketScalar>(alignedStart+packetSize); 237 for(Index index = alignedStart + 2*packetSize; index < alignedEnd2; index += 2*packetSize) 240 …t_res1 = func.packetOp(packet_res1, mat.template packet<alignment,PacketScalar>(index+packetSize)); 280 packetSize = redux_traits<Func, Derived>::PacketSize 282 const Index packetedInnerSize = ((innerSize)/packetSize)*packetSize; 288 for(Index i=(j==0?packetSize:0); i<packetedInnerSize; i+=Index(packetSize))
|
D | AssignEvaluator.h | 404 packetSize = unpacket_traits<PacketType>::size, 411 const Index alignedEnd = alignedStart + ((size-alignedStart)/packetSize)*packetSize; 415 for(Index index = alignedStart; index < alignedEnd; index += packetSize) 431 packetSize =unpacket_traits<PacketType>::size, 432 alignedSize = (size/packetSize)*packetSize }; 455 const Index packetSize = unpacket_traits<PacketType>::size; 457 for(Index inner = 0; inner < innerSize; inner+=packetSize) 523 packetSize = unpacket_traits<PacketType>::size, 536 const Index packetAlignedMask = packetSize - 1; 539 …const Index alignedStep = alignable ? (packetSize - kernel.outerStride() % packetSize) & packetAli… [all …]
|
/external/deqp/framework/referencerenderer/ |
D | rrVertexPacket.cpp | 55 const size_t packetSize = sizeof(VertexPacket) + extraVaryings * sizeof(GenericVec4); in allocArray() local 58 deInt8* ptr = new deInt8[packetSize * count]; // throws bad_alloc => ok in allocArray() 65 retVal.push_back(new (ptr + i*packetSize) VertexPacket()); // throws bad_alloc in allocArray()
|
/external/eigen/unsupported/test/ |
D | cxx11_tensor_random.cpp | 53 const int packetSize = internal::packet_traits<int>::size; in packetOp() local 54 EIGEN_ALIGN_MAX int values[packetSize]; in packetOp() 55 for (int i = 0; i < packetSize; ++i) { in packetOp()
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorConcatenation.h | 251 const int packetSize = internal::unpacket_traits<PacketReturnType>::size; 252 EIGEN_STATIC_ASSERT((packetSize > 1), YOU_MADE_A_PROGRAMMING_MISTAKE) 253 eigen_assert(index + packetSize - 1 < dimensions().TotalSize()); 255 EIGEN_ALIGN_MAX CoeffReturnType values[packetSize]; 256 for (int i = 0; i < packetSize; ++i) { 347 const int packetSize = internal::unpacket_traits<PacketReturnType>::size; 348 EIGEN_STATIC_ASSERT((packetSize > 1), YOU_MADE_A_PROGRAMMING_MISTAKE) 349 eigen_assert(index + packetSize - 1 < this->dimensions().TotalSize()); 351 EIGEN_ALIGN_MAX CoeffReturnType values[packetSize]; 353 for (int i = 0; i < packetSize; ++i) {
|
D | TensorRandom.h | 166 const int packetSize = internal::unpacket_traits<Packet>::size; in packetOp() local 167 EIGEN_ALIGN_MAX T values[packetSize]; in packetOp() 169 for (int j = 0; j < packetSize; ++j) { in packetOp() 245 const int packetSize = internal::unpacket_traits<Packet>::size; 246 EIGEN_ALIGN_MAX T values[packetSize]; 248 for (int j = 0; j < packetSize; ++j) {
|
D | TensorGenerator.h | 136 const int packetSize = internal::unpacket_traits<PacketReturnType>::size; 137 EIGEN_STATIC_ASSERT((packetSize > 1), YOU_MADE_A_PROGRAMMING_MISTAKE) 138 eigen_assert(index+packetSize-1 < dimensions().TotalSize()); 140 EIGEN_ALIGN_MAX typename internal::remove_const<CoeffReturnType>::type values[packetSize]; 141 for (int i = 0; i < packetSize; ++i) {
|
D | TensorMorphing.h | 411 const int packetSize = internal::unpacket_traits<PacketReturnType>::size; 412 EIGEN_STATIC_ASSERT((packetSize > 1), YOU_MADE_A_PROGRAMMING_MISTAKE) 413 eigen_assert(index+packetSize-1 < internal::array_prod(dimensions())); 416 Index indices[] = {index, index + packetSize - 1}; 440 if (inputIndices[1] - inputIndices[0] == packetSize - 1) { 445 EIGEN_ALIGN_MAX typename internal::remove_const<CoeffReturnType>::type values[packetSize]; 447 values[packetSize-1] = m_impl.coeff(inputIndices[1]); 448 for (int i = 1; i < packetSize-1; ++i) { 564 const int packetSize = internal::unpacket_traits<PacketReturnType>::size; 566 Index indices[] = {index, index + packetSize - 1}; [all …]
|
D | TensorReduction.h | 169 const int packetSize = internal::unpacket_traits<typename Self::PacketReturnType>::size; 170 const typename Self::Index VectorizedSize = (numValuesToReduce / packetSize) * packetSize; 172 for (typename Self::Index j = 0; j < VectorizedSize; j += packetSize) {
|
D | README.md | 1755 EIGEN_STATIC_ASSERT(packetSize > 1, YOU_MADE_A_PROGRAMMING_MISTAKE)
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/cea/ |
D | Cea708Decoder.java | 234 int packetSize = ccData1 & 0x3F; // last 6 bits in decode() local 235 if (packetSize == 0) { in decode() 236 packetSize = 64; in decode() 239 currentDtvCcPacket = new DtvCcPacket(sequenceNumber, packetSize); in decode() 254 if (currentDtvCcPacket.currentIndex == (currentDtvCcPacket.packetSize * 2 - 1)) { in decode() 272 if (currentDtvCcPacket.currentIndex != (currentDtvCcPacket.packetSize * 2 - 1)) { in processCurrentPacket() 273 Log.w(TAG, "DtvCcPacket ended prematurely; size is " + (currentDtvCcPacket.packetSize * 2 - 1) in processCurrentPacket() 798 public final int packetSize; field in Cea708Decoder.DtvCcPacket 803 public DtvCcPacket(int sequenceNumber, int packetSize) { in DtvCcPacket() argument 805 this.packetSize = packetSize; in DtvCcPacket() [all …]
|
/external/tensorflow/tensorflow/core/kernels/ |
D | eigen_spatial_convolutions-inl.h | 349 const Index packetSize = internal::unpacket_traits<Packet>::size; in loadPacket() local 350 EIGEN_STATIC_ASSERT(packetSize > 1, YOU_MADE_A_PROGRAMMING_MISTAKE) in loadPacket() 397 const Index packetSize = internal::unpacket_traits<Packet>::size; in loadPartialPacketStandard() local 399 typename internal::remove_const<Scalar>::type values[packetSize]; in loadPartialPacketStandard() 404 for (int i = span[1] + 1; i < packetSize; ++i) values[i] = Scalar(0); in loadPartialPacketStandard() 418 const Index packetSize = internal::unpacket_traits<Packet>::size; in loadPacketStandardFromTwoColumns() local 432 {patchIdSplit - patchId + 1, packetSize - 1}}; in loadPacketStandardFromTwoColumns() 487 const Index packetSize = internal::unpacket_traits<Packet>::size; in loadPacketStandard() local 488 EIGEN_STATIC_ASSERT(packetSize > 1, YOU_MADE_A_PROGRAMMING_MISTAKE) in loadPacketStandard() 493 if ((patchDepth() % packetSize) == 0) { in loadPacketStandard() [all …]
|
D | eigen_cuboid_convolution.h | 440 const Index packetSize = internal::unpacket_traits<Packet>::size; in loadPacket() local 442 EIGEN_STATIC_ASSERT(packetSize > 1, YOU_MADE_A_PROGRAMMING_MISTAKE) in loadPacket() 496 const Index packetSize = internal::unpacket_traits<Packet>::size; in loadPartialPacketStandard() local 498 typename internal::remove_const<Scalar>::type values[packetSize]; in loadPartialPacketStandard() 503 for (int i = span[1] + 1; i < packetSize; ++i) values[i] = Scalar(0); in loadPartialPacketStandard() 519 const Index packetSize = internal::unpacket_traits<Packet>::size; in loadPacketStandardFromSingleColumnTwoRows() local 536 {patchIdSplit - patchId + 1, packetSize - 1}}; in loadPacketStandardFromSingleColumnTwoRows() 595 const Index packetSize = internal::unpacket_traits<Packet>::size; in loadPacketStandard() local 596 EIGEN_STATIC_ASSERT(packetSize > 1, YOU_MADE_A_PROGRAMMING_MISTAKE) in loadPacketStandard() 601 if ((patchDepth() % packetSize) == 0) { in loadPacketStandard() [all …]
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/ |
D | AudioQuality.java | 26 int packetSize; field in AudioQuality
|
D | FlatManifestWriterImpl.java | 163 qualityLevel.setAttribute("PacketSize", Integer.toString(aq.packetSize)); in getManifest() 224 l.packetSize = 4; in getAacAudioQuality() 365 l.packetSize = track.getSamples().get(0).limit(); //assuming all are same size in getEc3AudioQuality() 423 l.packetSize = track.getSamples().get(0).limit(); //assuming all are same size in getDtsAudioQuality()
|
/external/eigen/doc/ |
D | InsideEigenExample.dox | 339 const int packetSize = internal::packet_traits<typename Derived1::Scalar>::size; 342 const int alignedEnd = alignedStart + ((size-alignedStart)/packetSize)*packetSize; 347 for(int index = alignedStart; index < alignedEnd; index += packetSize) 364 …o copy is not in general a multiple of \a packetSize. Here, there are 50 coefficients to copy and … 370 for(int index = alignedStart; index < alignedEnd; index += packetSize) 404 …SE-specific type. Notice that the enum \a size here is what was used to define \a packetSize above. 477 for(int index = alignedStart; index < alignedEnd; index += packetSize)
|
/external/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
D | HexagonMCInstrInfo.h | 308 unsigned packetSize(StringRef CPU);
|
D | HexagonAsmBackend.cpp | 67 Extender(nullptr), MaxPacketSize(HexagonMCInstrInfo::packetSize(CPU)) in HexagonAsmBackend()
|
D | HexagonMCInstrInfo.cpp | 908 unsigned HexagonMCInstrInfo::packetSize(StringRef CPU) { in packetSize() function in HexagonMCInstrInfo
|