Searched refs:perm (Results 26 - 50 of 141) sorted by relevance

123456

/external/libunwind/src/
H A Dos-linux.h209 char perm[16], dash = 0, colon = 0, *cp; local
269 cp = scan_string (cp, perm, sizeof (perm));
284 if (perm[0] == 'r')
288 if (perm[1] == 'w')
292 if (perm[2] == 'x')
/external/icu/icu4c/source/io/
H A Dufile.c133 const char *perm,
138 FILE *systemFile = fopen(filename, perm);
156 const char *perm,
165 result = u_fopen(buffer, perm, locale, codepage);
169 FILE *systemFile = _wfopen(filename, (UChar*)perm);
132 u_fopen(const char *filename, const char *perm, const char *locale, const char *codepage) argument
155 u_fopen_u(const UChar *filename, const char *perm, const char *locale, const char *codepage) argument
/external/openssh/
H A Dsftp-common.c60 a->perm = 0;
77 a->perm = st->st_mode;
96 st->st_mode = a->perm;
122 if ((r = sshbuf_get_u32(b, &a->perm)) != 0)
170 if ((r = sshbuf_put_u32(b, a->perm)) != 0)
/external/jetty/src/java/org/eclipse/jetty/util/resource/
H A DURLResource.java177 Permission perm = _connection.getPermission();
178 if (perm instanceof java.io.FilePermission)
179 return new File(perm.getName());
H A DFileResource.java112 Permission perm = _connection.getPermission();
113 _file = new File(perm==null?url.getFile():perm.getName());
/external/skia/src/ports/
H A DSkOSFile_stdio.cpp21 char perm[4]; local
22 char* p = perm;
35 return (SkFILE*)::fopen(path, perm);
/external/eigen/Eigen/src/MetisSupport/
H A DMetisSupport.h19 * WARNING: As computed by METIS, this corresponds to the vector iperm (instead of perm)
106 IndexVector perm(m),iperm(m);
112 output_error = METIS_NodeND(&m, m_indexPtr.data(), m_innerIndices.data(), NULL, NULL, perm.data(), iperm.data());
122 //NOTE: If Ap is the permuted matrix then perm and iperm vectors are defined as follows
123 // Row (column) i of Ap is the perm(i) row(column) of A, and row (column) i of A is the iperm(i) row(column) of Ap
/external/eigen/Eigen/src/QR/
H A DColPivHouseholderQR_MKL.h76 lapack_int *perm = m_colsPermutation.indices().data(); \
80 for(i=0;i<cols;i++) perm[i]--;\
/external/libselinux/include/selinux/
H A Dselinux.h267 access_vector_t perm);
280 const char *perm, void *aux);
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DDGMRES.h32 * \param perm gives the sorted sequence on output. Must be initialized with 0..n-1
39 void sortWithPermutation (VectorType& vec, IndexType& perm, typename IndexType::Scalar& ncut) argument
41 eigen_assert(vec.size() == perm.size());
50 if ( vec(perm(j)) < vec(perm(j+1)) )
52 std::swap(perm(j),perm(j+1));
444 Matrix<Index,Dynamic,1>perm(it);
450 perm.setLinSpaced(it,0,it-1);
451 internal::sortWithPermutation(modulEig, perm, nei
[all...]
/external/eigen/bench/
H A Dsparse_cholesky.cpp167 std::vector<int> perm(cols);
170 perm[i] = i;
179 L = cholmod_analyze_p(&A, &perm[0], &perm[0], cols, &c);
/external/selinux/policycoreutils/sepolgen-ifgen/
H A Dsepolgen-ifgen-attr-helper.c61 char *perm = NULL; local
78 perm = v.name;
79 if (perm) {
80 fprintf(fp, ",%s", perm);
/external/vboot_reference/firmware/lib/include/
H A Drollback_index.h163 uint32_t SafeDefineSpace(uint32_t index, uint32_t perm, uint32_t size);
/external/sepolicy/tools/sepolicy-analyze/
H A Dneverallow.c192 perm_datum_t *perm = NULL; local
336 perm = hashtab_search(cls->permissions.table, id);
337 if (cls->comdatum && !perm)
338 perm = hashtab_search(cls->comdatum->permissions.table, id);
339 if (!perm) {
344 node->data |= 1U << (perm->s.value - 1);
/external/selinux/checkpolicy/
H A Dmodule_compiler.c746 perm_datum_t *perm = NULL; local
816 perm = hashtab_search(datum->permissions.table, perm_id);
817 if (!perm && datum->comdatum)
818 perm =
821 if (perm) {
834 if ((perm = malloc(sizeof(*perm))) == NULL) {
839 memset(perm, 0, sizeof(*perm));
842 perm);
[all...]
/external/eigen/Eigen/src/PaStiXSupport/
H A DPaStiXSupport.h59 void eigen_pastix(pastix_data_t **pastix_data, int pastix_comm, int n, int *ptr, int *idx, float *vals, int *perm, int * invp, float *x, int nbrhs, int *iparm, double *dparm) argument
63 s_pastix(pastix_data, pastix_comm, n, ptr, idx, vals, perm, invp, x, nbrhs, iparm, dparm);
66 void eigen_pastix(pastix_data_t **pastix_data, int pastix_comm, int n, int *ptr, int *idx, double *vals, int *perm, int * invp, double *x, int nbrhs, int *iparm, double *dparm) argument
70 d_pastix(pastix_data, pastix_comm, n, ptr, idx, vals, perm, invp, x, nbrhs, iparm, dparm);
73 void eigen_pastix(pastix_data_t **pastix_data, int pastix_comm, int n, int *ptr, int *idx, std::complex<float> *vals, int *perm, int * invp, std::complex<float> *x, int nbrhs, int *iparm, double *dparm) argument
77 c_pastix(pastix_data, pastix_comm, n, ptr, idx, reinterpret_cast<COMPLEX*>(vals), perm, invp, reinterpret_cast<COMPLEX*>(x), nbrhs, iparm, dparm);
80 void eigen_pastix(pastix_data_t **pastix_data, int pastix_comm, int n, int *ptr, int *idx, std::complex<double> *vals, int *perm, int * invp, std::complex<double> *x, int nbrhs, int *iparm, double *dparm) argument
84 z_pastix(pastix_data, pastix_comm, n, ptr, idx, reinterpret_cast<DCOMPLEX*>(vals), perm, invp, reinterpret_cast<DCOMPLEX*>(x), nbrhs, iparm, dparm);
/external/fio/profiles/
H A Dact.c300 double perm; local
327 perm = (1000.0 * slice->lat_buckets[i]) / slice->total_ios;
328 if (perm < act_pass[i].max_perm)
331 log_err("act: %f%% exceeds pass criteria of %f%%\n", perm / 10.0, (double) act_pass[i].max_perm / 10.0);
/external/vboot_reference/firmware/include/
H A Dtlcl.h78 * Define a space with permission [perm]. [index] is the index for the space,
81 uint32_t TlclDefineSpace(uint32_t index, uint32_t perm, uint32_t size);
/external/jemalloc/test/include/test/
H A DSFMT-alti.h178 const vector unsigned char perm = ALTI_SWAP; local
181 array[i].s = vec_perm(array[i].s, (vector unsigned int)perm, perm);
/external/selinux/sepolgen/src/sepolgen/
H A Dinterfaces.py156 for perm in av.perms:
157 if access.is_idparam(perm):
158 if __param_insert(perm, PERM) == 1:
447 for perm in av.perms:
448 p = self.map_param(perm, ifcall)
/external/vboot_reference/utility/
H A Dtpmc.c110 uint32_t index, size, perm; local
112 fprintf(stderr, "usage: tpmc def <index> <size> <perm>\n");
117 HexStringToUint32(args[4], &perm) != 0) {
118 fprintf(stderr, "<index>, <size>, and <perm> must be "
122 return TlclDefineSpace(index, perm, size);
392 { "definespace", "def", "define a space (def <index> <size> <perm>)",
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DCallablesTest.java79 @Override public void checkPermission(Permission perm) {
/external/selinux/libselinux/src/
H A Daudit2why.c321 sepol_access_vector_t perm, av; local
368 perm = string_to_av_perm(tclass, permstr);
369 if (!perm)
372 av |= perm;
/external/selinux/libsepol/cil/src/
H A Dcil_reset_ast.c15 struct cil_perm *perm = (struct cil_perm *)d; local
17 perm->value -= *((int *)args);
35 static void cil_reset_perm(struct cil_perm *perm) argument
37 cil_reset_classperms_list(perm->classperms);
/external/vboot_reference/firmware/lib/tpm_lite/
H A Dmocked_tlcl.c41 uint32_t TlclDefineSpace(uint32_t index, uint32_t perm, uint32_t size) { argument

Completed in 1464 milliseconds

123456