| /external/webrtc/common_audio/third_party/ooura/fft_size_128/ |
| D | ooura_fft.cc | 2 * http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html 3 * Copyright Takuya OOURA, 1996-2001 10 * - Trivial type modifications. 11 * - Minimal code subset to do rdft of length 128. 12 * - Optimizations because of known length. 13 * - Removed the global variables by moving the code in to a class in order 17 * Use of this source code is governed by a BSD-style license 46 x1r = a[0] - a[2]; in cft1st_128_C() 47 x1i = a[1] - a[3]; in cft1st_128_C() 50 x3r = a[4] - a[6]; in cft1st_128_C() [all …]
|
| /external/fft2d/src/fft2d/fft2d/ |
| D | fftsg3d.f | 5 ! radix :split-radix, row-column 14 ! fftsg.f : 1D-FFT package 17 ! -------- Complex DFT (Discrete Fourier Transform) -------- 20 ! X(k1,k2,k3) = sum_j1=0^n1-1 sum_j2=0^n2-1 sum_j3=0^n3-1 21 ! x(j1,j2,j3) * 24 ! exp(2*pi*i*j3*k3/n3), 27 ! X(k1,k2,k3) = sum_j1=0^n1-1 sum_j2=0^n2-1 sum_j3=0^n3-1 28 ! x(j1,j2,j3) * 29 ! exp(-2*pi*i*j1*k1/n1) * 30 ! exp(-2*pi*i*j2*k2/n2) * [all …]
|
| D | fftsg.f | 5 ! radix :split-radix 14 ! dfst: Sine Transform of RDFT (Real Anti-symmetric DFT) 17 ! -------- Complex DFT (Discrete Fourier Transform) -------- 20 ! X(k) = sum_j=0^n-1 x(j)*exp(2*pi*i*j*k/n), 0<=k<n 22 ! X(k) = sum_j=0^n-1 x(j)*exp(-2*pi*i*j*k/n), 0<=k<n 23 ! (notes: sum_j=0^n-1 is a summation from j=0 to n-1) 30 ! call cdft(2*n, -1, a, ip, w) 34 ! a(0:2*n-1) :input/output data (real*8) 47 ! w(0:n/2-1) :cos/sin table (real*8) 51 ! call cdft(2*n, -1, a, ip, w) [all …]
|
| D | fftsg.c | 6 radix :split-radix 15 dfst: Sine Transform of RDFT (Real Anti-symmetric DFT) 32 -------- Complex DFT (Discrete Fourier Transform) -------- 35 X[k] = sum_j=0^n-1 x[j]*exp(2*pi*i*j*k/n), 0<=k<n 37 X[k] = sum_j=0^n-1 x[j]*exp(-2*pi*i*j*k/n), 0<=k<n 38 (notes: sum_j=0^n-1 is a summation from j=0 to n-1) 45 cdft(2*n, -1, a, ip, w); 49 a[0...2*n-1] :input/output data (double *) 62 w[0...n/2-1] :cos/sin table (double *) 66 cdft(2*n, -1, a, ip, w); [all …]
|
| D | fft4f2d.f | 5 ! radix :4, 2, row-column 15 ! -------- Complex DFT (Discrete Fourier Transform) -------- 18 ! X(k1,k2) = sum_j1=0^n1-1 sum_j2=0^n2-1 x(j1,j2) * 23 ! X(k1,k2) = sum_j1=0^n1-1 sum_j2=0^n2-1 x(j1,j2) * 24 ! exp(-2*pi*i*j1*k1/n1) * 25 ! exp(-2*pi*i*j2*k2/n2), 27 ! (notes: sum_j=0^n-1 is a summation from j=0 to n-1) 34 ! call cdft2d(n1max, 2*n1, n2, -1, a, ip, w) 41 ! a(0:2*n1-1,0:n2-1) 60 ! call cdft2d(n1max, 2*n1, n2, -1, a, ip, w) [all …]
|
| D | fft4f2d.c | 6 radix :4, 2, row-column 21 -------- Complex DFT (Discrete Fourier Transform) -------- 24 X[k1][k2] = sum_j1=0^n1-1 sum_j2=0^n2-1 x[j1][j2] * 28 X[k1][k2] = sum_j1=0^n1-1 sum_j2=0^n2-1 x[j1][j2] * 29 exp(-2*pi*i*j1*k1/n1) * 30 exp(-2*pi*i*j2*k2/n2), 0<=k1<n1, 0<=k2<n2 31 (notes: sum_j=0^n-1 is a summation from j=0 to n-1) 38 cdft2d(n1, 2*n2, -1, a, ip, w); 44 a[0...n1-1][0...2*n2-1] 65 cdft2d(n1, 2*n2, -1, a, ip, w); [all …]
|
| D | fftsg3d.c | 6 radix :split-radix, row-column 21 fftsg.c : 1D-FFT package 31 -------- Complex DFT (Discrete Fourier Transform) -------- 34 X[k1][k2][k3] = sum_j1=0^n1-1 sum_j2=0^n2-1 sum_j3=0^n3-1 35 x[j1][j2][j3] * 38 exp(2*pi*i*j3*k3/n3), 41 X[k1][k2][k3] = sum_j1=0^n1-1 sum_j2=0^n2-1 sum_j3=0^n3-1 42 x[j1][j2][j3] * 43 exp(-2*pi*i*j1*k1/n1) * 44 exp(-2*pi*i*j2*k2/n2) * [all …]
|
| /external/webrtc/common_audio/third_party/ooura/fft_size_256/ |
| D | fft4g.cc | 2 * http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html 3 * Copyright Takuya OOURA, 1996-2001 27 dfst: Sine Transform of RDFT (Real Anti-symmetric DFT) 37 -------- Complex DFT (Discrete Fourier Transform) -------- 40 X[k] = sum_j=0^n-1 x[j]*exp(2*pi*i*j*k/n), 0<=k<n 42 X[k] = sum_j=0^n-1 x[j]*exp(-2*pi*i*j*k/n), 0<=k<n 43 (notes: sum_j=0^n-1 is a summation from j=0 to n-1) 50 cdft(2*n, -1, a, ip, w); 54 a[0...2*n-1] :input/output data (float *) 67 w[0...n/2-1] :cos/sin table (float *) [all …]
|
| /external/fft2d/src/fft2d/fft2d/sample2d/ |
| D | fftsg3dt.c | 41 cdft3d(n1, n2, n3, -1, a, NULL, ip, w); in main() 48 rdft3d(n1, n2, n3, -1, a, NULL, ip, w); in main() 55 ddct3d(n1, n2, n3, -1, a, NULL, ip, w); in main() 56 for (i = 0; i <= n1 - 1; i++) { in main() 57 for (j = 0; j <= n2 - 1; j++) { in main() 60 for (j = 0; j <= n3 - 1; j++) { in main() 64 for (i = 0; i <= n2 - 1; i++) { in main() 65 for (j = 0; j <= n3 - 1; j++) { in main() 75 ddst3d(n1, n2, n3, -1, a, NULL, ip, w); in main() 76 for (i = 0; i <= n1 - 1; i++) { in main() [all …]
|
| D | fftsg3dt.f | 8 real*8 a(0 : nmax - 1, 0 : nmax - 1, 0 : nmax - 1), 9 & t(0 : 8 * nmax - 1), 10 & w(0 : nmax * 3 / 2 - 1), err, errorcheck3d 23 call cdft3d(nmax, nmax, n1, n2, n3, -1, a, t, ip, w) 31 call rdft3d(nmax, nmax, n1, n2, n3, -1, a, t, ip, w) 39 call ddct3d(nmax, nmax, n1, n2, n3, -1, a, t, ip, w) 40 do j = 0, n2 - 1 41 do i = 0, n1 - 1 45 do j = 0, n3 - 1 46 do i = 0, n1 - 1 [all …]
|
| /external/ksp/test-utils/testData/api/ |
| D | recordJavaResolutions.kt | 3 * Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. 9 * http://www.apache.org/licenses/LICENSE-2.0 23 // p1.J3: javaSrc/p1/TestJ2J.java 28 // p3.J3: javaSrc/p1/TestJ2J.java 52 J3 j3 = null; 88 // FILE: p3/J3.java 90 public class J3 {} class
|
| D | docString.kt | 3 * Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. 9 * http://www.apache.org/licenses/LICENSE-2.0 23 // <init>: \n top level class\n\n doc can have multiple lines\n\n third non-empty line\n 27 // TopClass: \n top level class\n\n doc can have multiple lines\n\n third non-empty line\n 33 // j3: null 88 * third non-empty line in f1() 140 int j3 = 0;
|
| /external/sdv/vsomeip/third_party/boost/serialization/test/ |
| D | test_cyclic_ptrs.cpp | 4 // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com . 60 // serialization of the first member - j1 , provokes serialization 64 // detected by the system and an exception - pointer_conflict - 72 J j3; member in K 81 ar & BOOST_SERIALIZATION_NVP(j3); in serialize() 89 : j1(&j2), j2(&j3), j3(&j1) in K() 97 && j2.j == & j3 in operator ==() 98 && j3.j == & j1 in operator ==() 101 && j3 == rhs.j3 in operator ==() 131 j1->j = j1; in test2() [all …]
|
| /external/rust/android-crates-io/crates/ring/crypto/fipsmodule/modes/asm/ |
| D | ghashv8-armx.pl | 2 # Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. 17 # GHASH for ARMv8 Crypto Extension, 64-bit polynomial multiplication. 22 # Biesheuvel of Linaro from bits-n-pieces from other assembly modules. 23 # Just like aesv8-armx.pl this module supports both AArch32 and 28 # Implement 2x aggregated reduction [see ghash-x86.pl for background 34 # improve performance by 20-70% depending on processor. 38 # 64-bit PMULL 32-bit PMULL 32-bit NEON(*) 40 # Cortex-A53 0.85 1.01 8.39 41 # Cortex-A57 0.73 1.17 7.61 52 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or [all …]
|
| /external/boringssl/src/crypto/fipsmodule/modes/asm/ |
| D | ghashv8-armx.pl | 2 # Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. 17 # GHASH for ARMv8 Crypto Extension, 64-bit polynomial multiplication. 22 # Biesheuvel of Linaro from bits-n-pieces from other assembly modules. 23 # Just like aesv8-armx.pl this module supports both AArch32 and 28 # Implement 2x aggregated reduction [see ghash-x86.pl for background 34 # improve performance by 20-70% depending on processor. 38 # 64-bit PMULL 32-bit PMULL 32-bit NEON(*) 40 # Cortex-A53 0.85 1.01 8.39 41 # Cortex-A57 0.73 1.17 7.61 52 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or [all …]
|
| /external/cronet/stable/third_party/boringssl/src/crypto/fipsmodule/modes/asm/ |
| D | ghashv8-armx.pl | 2 # Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. 17 # GHASH for ARMv8 Crypto Extension, 64-bit polynomial multiplication. 22 # Biesheuvel of Linaro from bits-n-pieces from other assembly modules. 23 # Just like aesv8-armx.pl this module supports both AArch32 and 28 # Implement 2x aggregated reduction [see ghash-x86.pl for background 34 # improve performance by 20-70% depending on processor. 38 # 64-bit PMULL 32-bit PMULL 32-bit NEON(*) 40 # Cortex-A53 0.85 1.01 8.39 41 # Cortex-A57 0.73 1.17 7.61 52 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or [all …]
|
| /external/cronet/tot/third_party/boringssl/src/crypto/fipsmodule/modes/asm/ |
| D | ghashv8-armx.pl | 2 # Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. 17 # GHASH for ARMv8 Crypto Extension, 64-bit polynomial multiplication. 22 # Biesheuvel of Linaro from bits-n-pieces from other assembly modules. 23 # Just like aesv8-armx.pl this module supports both AArch32 and 28 # Implement 2x aggregated reduction [see ghash-x86.pl for background 34 # improve performance by 20-70% depending on processor. 38 # 64-bit PMULL 32-bit PMULL 32-bit NEON(*) 40 # Cortex-A53 0.85 1.01 8.39 41 # Cortex-A57 0.73 1.17 7.61 52 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or [all …]
|
| /external/sdv/vsomeip/third_party/boost/numeric/ublas/ |
| D | .appveyor.yml | 5 version: 1.0.{build}-{branch} 11 - master 12 - develop 13 - /feature\/.*/ 17 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 18 TOOLSET: msvc-14.1 20 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 21 TOOLSET: msvc-14.0 25 - c:\tools\vcpkg\installed\ 29 …- appveyor DownloadFile "http://registrationcenter-download.intel.com/akdlm/irc_nas/9022/opencl_ru… [all …]
|
| /external/sdv/vsomeip/third_party/boost/filesystem/test/ |
| D | boost_test.bat | 3 if not $%1==$--help goto nohelp 4 echo Invoke: boost_test [-ts toolset] [b2-options] 5 echo Default -ts is gcc-c++03,gcc-c++11,gcc-c++14,msvc-12.0,msvc-14.0,msvc-14.1 6 echo Example: boost_test -ts msvc-12.0 -a "define=BOOST_SOME_MACRO" config_info 10 if $%1==$-ts goto toolset 13 b2 -j3 --v2 --dump-tests --toolset=gcc-c++03,gcc-c++11,gcc-c++14,msvc-12.0,msvc-14.0,msvc-14.1 %* >… 18 b2 -j3 --v2 --dump-tests --toolset=%2 %3 %4 %5 %6 %7 %8 %9 >b2.log 2>&1 22 process_jam_log --v2 <b2.log 24 grep -i warning b2.log | sort | uniq 27 compiler_status --v2 . test_status.html test_links.html
|
| /external/eigen/Eigen/src/LU/ |
| D | InverseImpl.h | 4 // Copyright (C) 2008-2010 Benoit Jacob <jacob.benoit.1@gmail.com> 82 result.coeffRef(1,0) = -matrix.coeff(1,0) * invdet; 83 result.coeffRef(0,1) = -matrix.coeff(0,1) * invdet; 136 - m.coeff(i1, j2) * m.coeff(i2, j1); 210 (const MatrixBase<Derived>& matrix, int i1, int i2, int i3, int j1, int j2, int j3) 213 * (matrix.coeff(i2,j2) * matrix.coeff(i3,j3) - matrix.coeff(i2,j3) * matrix.coeff(i3,j2)); 226 j3 = (j+3) % 4 228 return general_det3_helper(matrix, i1, i2, i3, j1, j2, j3) 229 + general_det3_helper(matrix, i2, i3, i1, j1, j2, j3) 230 + general_det3_helper(matrix, i3, i1, i2, j1, j2, j3); [all …]
|
| /external/libwebsockets/ |
| D | .sai.json | 2 "schema": "sai-1", 8 "linux-debian-11/x86_64-amd/gcc": { 9 …-test-server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && mak… 11 "linux-debian-buster/x86-amd/gcc": { 12 …-test-server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && mak… 14 "linux-debian-sid/x86_64-amd/gcc": { 15 …-test-server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && mak… 17 "linux-ubuntu-xenial/x86_64-amd/gcc": { 18 …-test-server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && mak… 20 "linux-debian-sid/x86-amd/gcc": { [all …]
|
| /external/pcre/.github/workflows/ |
| D | dev.yml | 6 - master 12 runs-on: ubuntu-latest 14 - name: Checkout 17 - name: Prepare 20 - name: Configure 21 …-O0 -fsanitize=undefined,address -fsanitize-undefined-trap-on-error' CPPFLAGS='-Wall -Wextra -Werr… 23 - name: Build 24 run: make -j3 26 - name: Test (main test script) 29 - name: Test (JIT test program) [all …]
|
| /external/llvm/docs/ |
| D | README.txt | 12 Sphinx <http://sphinx-doc.org/> and then do: 14 cd <build-dir> 15 cmake -DLLVM_ENABLE_SPHINX=true -DSPHINX_OUTPUT_HTML=true <src-dir> 16 make -j3 docs-llvm-html 17 $BROWSER <build-dir>/docs//html/index.html 20 `docs/Foo.rst` <-> `<build-dir>/docs//html/Foo.html` <-> `http://llvm.org/docs/Foo.html`. 33 directory `<build-dir>/docs/man/`. 35 cd <build-dir> 36 cmake -DLLVM_ENABLE_SPHINX=true -DSPHINX_OUTPUT_MAN=true <src-dir> 37 make -j3 docs-llvm-man [all …]
|
| /external/jemalloc_new/scripts/ |
| D | gen_travis.py | 13 - autoconf 14 - ./configure ${COMPILER_FLAGS:+ \ 18 - make -j3 19 - make -j3 tests 22 - make check 26 # flags. We also test with clang, -m32, --enable-debug, --enable-prof, 27 # --disable-stats, and --with-malloc-conf=tcache:false. To avoid abusing 40 compiler_flag_unusuals = ['-m32'] 43 '--enable-debug', 44 '--enable-prof', [all …]
|
| /external/curl/.circleci/ |
| D | config.yml | 21 # SPDX-License-Identifier: curl 27 …ersion of CircleCI pipeline process engine. See: https://circleci.com/docs/configuration-reference/ 31 install-cares: 33 - run: 35 sudo apt-get update && sudo apt-get install -y libc-ares-dev 37 install-libssh: 39 - run: 41 sudo apt-get update && sudo apt-get install -y libssh-dev 43 install-deps: 45 - run: [all …]
|