HomeSort by relevance Sort by last modified time
    Searched refs:lu (Results 26 - 50 of 93) sorted by null

12 3 4

  /external/boringssl/src/crypto/x509/
x509_lu.c 246 X509_LOOKUP *lu; local
259 lu = sk_X509_LOOKUP_value(sk, j);
260 X509_LOOKUP_shutdown(lu);
261 X509_LOOKUP_free(lu);
275 X509_LOOKUP *lu; local
279 lu = sk_X509_LOOKUP_value(sk, i);
280 if (m == lu->method) {
281 return lu;
285 lu = X509_LOOKUP_new(m);
286 if (lu == NULL
303 X509_LOOKUP *lu; local
    [all...]
by_dir.c 92 static int new_dir(X509_LOOKUP *lu);
93 static void free_dir(X509_LOOKUP *lu);
143 static int new_dir(X509_LOOKUP *lu)
154 lu->method_data = (char *)a;
181 static void free_dir(X509_LOOKUP *lu)
185 a = (BY_DIR *)lu->method_data;
  /external/iproute2/ip/
iplink_bond_slave.c 52 static void bond_slave_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
91 static int bond_slave_parse_opt(struct link_util *lu, int argc, char **argv,
link_veth.c 31 static int veth_parse_opt(struct link_util *lu, int argc, char **argv,
87 static void veth_print_help(struct link_util *lu, int argc, char **argv,
iplink_bridge_slave.c 61 static void bridge_slave_print_opt(struct link_util *lu, FILE *f,
118 static int bridge_slave_parse_opt(struct link_util *lu, int argc, char **argv,
180 static void bridge_slave_print_help(struct link_util *lu, int argc, char **argv,
iplink_geneve.c 34 static int geneve_parse_opt(struct link_util *lu, int argc, char **argv,
115 static void geneve_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
161 static void geneve_print_help(struct link_util *lu, int argc, char **argv,
link_iptnl.c 53 static int iptunnel_parse_opt(struct link_util *lu, int argc, char **argv,
211 } else if (strcmp(lu->id, "sit") == 0 &&
214 } else if (strcmp(lu->id, "sit") == 0 &&
285 usage(strcmp(lu->id, "sit") == 0);
306 if (strcmp(lu->id, "sit") == 0) {
324 static void iptunnel_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
453 static void iptunnel_print_help(struct link_util *lu, int argc, char **argv,
456 print_usage(f, strcmp(lu->id, "sit") == 0);
iplink_can.c 112 static int can_parse_opt(struct link_util *lu, int argc, char **argv,
257 static void can_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
347 static void can_print_xstats(struct link_util *lu,
364 static void can_print_help(struct link_util *lu, int argc, char **argv,
iplink_vlan.c 83 static int vlan_parse_opt(struct link_util *lu, int argc, char **argv,
198 static void vlan_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
234 static void vlan_print_help(struct link_util *lu, int argc, char **argv,
link_vti.c 46 static int vti_parse_opt(struct link_util *lu, int argc, char **argv,
199 static void vti_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
248 static void vti_print_help(struct link_util *lu, int argc, char **argv,
iplink.c 679 struct link_util *lu = NULL; local
787 lu = get_link_slave_kind(slavebuf);
790 lu = get_link_kind(type);
793 if (lu && argc) {
796 if (lu->parse_opt &&
797 lu->parse_opt(lu, argc, argv, &req.n))
1217 struct link_util *lu = NULL; local
1224 lu = get_link_kind(*argv);
1225 if (lu && lu->print_help
    [all...]
link_ip6tnl.c 58 static int ip6tunnel_parse_opt(struct link_util *lu, int argc, char **argv,
255 static void ip6tunnel_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
345 static void ip6tunnel_print_help(struct link_util *lu, int argc, char **argv,
link_vti6.c 42 static int vti6_parse_opt(struct link_util *lu, int argc, char **argv,
196 static void vti6_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
iplink_bond.c 159 static int bond_parse_opt(struct link_util *lu, int argc, char **argv,
369 static void bond_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
571 static void bond_print_help(struct link_util *lu, int argc, char **argv,
iplink_vxlan.c 47 static int vxlan_parse_opt(struct link_util *lu, int argc, char **argv,
306 static void vxlan_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
450 static void vxlan_print_help(struct link_util *lu, int argc, char **argv,
link_gre.c 50 static int gre_parse_opt(struct link_util *lu, int argc, char **argv,
340 static void gre_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
471 static void gre_print_help(struct link_util *lu, int argc, char **argv,
link_gre6.c 60 static int gre_parse_opt(struct link_util *lu, int argc, char **argv,
298 static void gre_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
394 static void gre_print_help(struct link_util *lu, int argc, char **argv,
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealMatrix.java 37 /** Cached LU solver.
41 private DecompositionSolver lu; field in class:AbstractRealMatrix
47 lu = null;
67 lu = null;
405 lu = null;
625 if (lu == null) {
626 lu = new LUDecompositionImpl(this, MathUtils.SAFE_MIN).getSolver();
628 return lu.getInverse();
646 if (lu == null) {
647 lu = new LUDecompositionImpl(this, MathUtils.SAFE_MIN).getSolver()
    [all...]
  /external/webrtc/webrtc/modules/video_coding/test/
plotTimingTest.m 28 [p, count] = sscanf(line, 'Frame decoded: timeStamp=%lu decTime=%d maxDecTime=%d, at %lu');
  /test/vts-testcase/kernel/api/proc/
ProcMapsTest.py 63 "{:addr}-{:addr} {:rbit}{:wbit}{:xbit}{:spbit} {:addr} {:mm}:{:mm} {:lu}{:path}",
64 line, dict(mm=token_mm, addr=token_addr, lu=token_lu, path=token_path,
ProcMemInfoTest.py 82 return [self.parse_line("{:name}: {:lu}{:^kb}", line,
83 dict(name=token_name, lu=token_lu, kb=token_kb)) for line in lines[:-1]]
  /external/aac/libSBRenc/src/
mh_det.cpp 154 UCHAR i, ll, lu, k; local
160 lu = pFreqBandTable[i+1];
165 for(k=ll;k<lu;k++){
218 INT lu = pFreqBandTable[i+1]; local
222 if(lu - ll > 1){
224 invBands = GetInvInt(lu-ll);
230 for(j= ll; j<lu; j++) {
704 INT i,j,ll, lu; local
741 lu = pFreqBandTable[i+1];
747 for(j= ll;j<lu;j++)
978 INT scfBand,est,l,ll,lu,maxPosF,maxPosT; local
    [all...]
  /external/eigen/unsupported/test/
mpreal_support.cpp 3 #include <Eigen/LU>
49 // partial LU
50 X = A.lu().solve(B);
  /external/eigen/bench/
dense_solvers.cpp 50 PartialPivLU<MatSquare> lu(size);
61 BENCH(t_lu, tries, rep, compute_norm_equation(lu,A));
  /external/curl/docs/examples/
curlx.c 507 int lu; int i=0; local
508 while((lu = BIO_read (in, &binaryptr[i], tabLength-i)) >0) {
509 i+=lu;

Completed in 6041 milliseconds

12 3 4