/prebuilts/go/darwin-x86/src/math/rand/ |
regress_test.go | 57 if m.Name == "Perm" { 315 []int{}, // Perm(0) 316 []int{0}, // Perm(1) 317 []int{0, 4, 1, 3, 2}, // Perm(5) 318 []int{3, 1, 0, 4, 7, 5, 2, 6}, // Perm(8) 319 []int{5, 0, 3, 6, 7, 4, 2, 1, 8}, // Perm(9) 320 []int{4, 5, 0, 2, 6, 9, 3, 1, 8, 7}, // Perm(10) 321 []int{14, 2, 0, 8, 3, 5, 13, 12, 1, 4, 6, 7, 11, 9, 15, 10}, // Perm(16) 322 []int{}, // Perm(0) 323 []int{0}, // Perm(1 [all...] |
example_test.go | 83 // Perm generates a random permutation of the numbers [0, n). 84 show("Perm", r.Perm(5), r.Perm(5), r.Perm(5)) 96 // Perm [1 4 2 3 0] [4 2 1 3 0] [1 2 4 0 3]
|
rand.go | 148 // Perm returns, as a slice of n ints, a pseudo-random permutation of the integers [0,n). 149 func (r *Rand) Perm(n int) []int { 208 // Perm returns, as a slice of n ints, a pseudo-random permutation of the integers [0,n) 210 func Perm(n int) []int { return globalRand.Perm(n) }
|
rand_test.go | 398 r.Perm(3) 405 r.Perm(30)
|
/prebuilts/go/linux-x86/src/math/rand/ |
regress_test.go | 57 if m.Name == "Perm" { 315 []int{}, // Perm(0) 316 []int{0}, // Perm(1) 317 []int{0, 4, 1, 3, 2}, // Perm(5) 318 []int{3, 1, 0, 4, 7, 5, 2, 6}, // Perm(8) 319 []int{5, 0, 3, 6, 7, 4, 2, 1, 8}, // Perm(9) 320 []int{4, 5, 0, 2, 6, 9, 3, 1, 8, 7}, // Perm(10) 321 []int{14, 2, 0, 8, 3, 5, 13, 12, 1, 4, 6, 7, 11, 9, 15, 10}, // Perm(16) 322 []int{}, // Perm(0) 323 []int{0}, // Perm(1 [all...] |
example_test.go | 83 // Perm generates a random permutation of the numbers [0, n). 84 show("Perm", r.Perm(5), r.Perm(5), r.Perm(5)) 96 // Perm [1 4 2 3 0] [4 2 1 3 0] [1 2 4 0 3]
|
rand.go | 148 // Perm returns, as a slice of n ints, a pseudo-random permutation of the integers [0,n). 149 func (r *Rand) Perm(n int) []int { 208 // Perm returns, as a slice of n ints, a pseudo-random permutation of the integers [0,n) 210 func Perm(n int) []int { return globalRand.Perm(n) }
|
rand_test.go | 398 r.Perm(3) 405 r.Perm(30)
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/ |
fft.c | 756 fftstate->Perm [0] = ns; 762 fftstate->Perm [k] = jc; 764 fftstate->Perm [j] = fftstate->Perm [j - 1] / fftstate->factor [j - 1]; 765 fftstate->Perm [k - 1] = fftstate->Perm [k] * fftstate->factor [j - 1]; 769 k3 = fftstate->Perm [k]; 770 kspan = fftstate->Perm [1]; 795 k2 -= fftstate->Perm [j - 1]; 797 k2 = fftstate->Perm [j] + k2 [all...] |
structs.h | 256 int Perm[MAXFFTSIZE];
|
/prebuilts/go/darwin-x86/src/os/ |
types.go | 97 // Perm returns the Unix permission bits in m. 98 func (m FileMode) Perm() FileMode {
|
file_posix.go | 33 o |= uint32(i.Perm())
|
file_plan9.go | 64 o |= uint32(i.Perm()) 79 // (O_RDONLY etc.) and perm, (0666 etc.) if applicable. If successful, 82 func OpenFile(name string, flag int, perm FileMode) (*File, error) { 109 fd, e = syscall.Create(name, flag, syscallMode(perm)) 114 fd, e1 = syscall.Create(name, flag, syscallMode(perm))
|
/prebuilts/go/linux-x86/src/os/ |
types.go | 97 // Perm returns the Unix permission bits in m. 98 func (m FileMode) Perm() FileMode {
|
file_posix.go | 33 o |= uint32(i.Perm())
|
file_plan9.go | 64 o |= uint32(i.Perm()) 79 // (O_RDONLY etc.) and perm, (0666 etc.) if applicable. If successful, 82 func OpenFile(name string, flag int, perm FileMode) (*File, error) { 109 fd, e = syscall.Create(name, flag, syscallMode(perm)) 114 fd, e1 = syscall.Create(name, flag, syscallMode(perm))
|
/prebuilts/go/darwin-x86/doc/play/ |
tree.go | 76 for _, v := range rand.Perm(n) {
|
/prebuilts/go/linux-x86/doc/play/ |
tree.go | 76 for _, v := range rand.Perm(n) {
|
/external/eigen/Eigen/src/SparseCore/ |
SparseSelfAdjointView.h | 42 void permute_symm_to_symm(const MatrixType& mat, SparseMatrix<typename MatrixType::Scalar,DestOrder,typename MatrixType::Index>& _dest, const typename MatrixType::Index* perm = 0); 45 void permute_symm_to_fullsymm(const MatrixType& mat, SparseMatrix<typename MatrixType::Scalar,DestOrder,typename MatrixType::Index>& _dest, const typename MatrixType::Index* perm = 0); 138 SparseSymmetricPermutationProduct<_MatrixTypeNested,UpLo> twistedBy(const PermutationMatrix<Dynamic,Dynamic,Index>& perm) const 140 return SparseSymmetricPermutationProduct<_MatrixTypeNested,UpLo>(m_matrix, perm); 314 void permute_symm_to_fullsymm(const MatrixType& mat, SparseMatrix<typename MatrixType::Scalar,DestOrder,typename MatrixType::Index>& _dest, const typename MatrixType::Index* perm) 333 Index jp = perm ? perm[j] : j; 339 Index ip = perm ? perm[i] : i; 370 Index jp = perm ? perm[j] : j [all...] |
/prebuilts/go/darwin-x86/src/archive/tar/ |
common.go | 96 mode = os.FileMode(fi.h.Mode).Perm() 113 // clear perm, setuid, setgid and sticky bits. 212 Mode: int64(fm.Perm()), // or'd with c_IS* constants later
|
tar_test.go | 30 if g, e := h.Mode, int64(fi.Mode().Perm())|c_ISREG; g != e { 58 if g, e := h.Mode&^c_ISGID, int64(fi.Mode().Perm())|c_ISDIR; g != e {
|
/prebuilts/go/linux-x86/src/archive/tar/ |
common.go | 96 mode = os.FileMode(fi.h.Mode).Perm() 113 // clear perm, setuid, setgid and sticky bits. 212 Mode: int64(fm.Perm()), // or'd with c_IS* constants later
|
tar_test.go | 30 if g, e := h.Mode, int64(fi.Mode().Perm())|c_ISREG; g != e { 58 if g, e := h.Mode&^c_ISGID, int64(fi.Mode().Perm())|c_ISDIR; g != e {
|
/external/boringssl/src/ssl/test/runner/ |
dtls.go | 211 perm := rand.New(rand.NewSource(0)).Perm(len(fragments)) 214 tmp[i] = fragments[perm[i]]
|
/external/ppp/pppd/plugins/radius/etc/ |
dictionary.ascend | 178 VALUE Ascend-Call-Type Perm/Switched 3
|