OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tperm
(Results
1 - 3
of
3
) sorted by null
/external/libselinux/src/
mapping.c
111
unmap_perm(security_class_t tclass, access_vector_t
tperm
)
118
if (
tperm
& (1<<i)) {
121
tperm
&= ~(1<<i);
123
assert(
tperm
== 0);
128
return
tperm
;
153
access_vector_t
tperm
= 0;
local
157
tperm
|= 1<<i;
161
return
tperm
;
mapping.h
19
unmap_perm(security_class_t tclass, access_vector_t
tperm
);
/external/eigen/Eigen/src/SparseCore/
SparsePermutation.h
132
operator*(const SparseMatrixBase<SparseDerived>& matrix, const Transpose<PermutationBase<PermDerived> >&
tperm
)
134
return internal::permut_sparsematrix_product_retval<PermutationBase<PermDerived>, SparseDerived, OnTheRight, true>(
tperm
.nestedPermutation(), matrix.derived());
141
operator*(const Transpose<PermutationBase<PermDerived> >&
tperm
, const SparseMatrixBase<SparseDerived>& matrix)
143
return internal::permut_sparsematrix_product_retval<PermutationBase<PermDerived>, SparseDerived, OnTheLeft, true>(
tperm
.nestedPermutation(), matrix.derived());
Completed in 1390 milliseconds