HomeSort by relevance Sort by last modified time
    Searched refs:P4 (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/clang/test/Modules/Inputs/
redecl-merge-bottom.h 5 @protocol P4;
6 @protocol P4;
7 @protocol P4;
category_right_sub.h 11 @protocol P4
16 @interface Foo(LeftP4) <P4>
category_top.h 22 @protocol P3, P4;
redecl-merge-left.h 46 @protocol P3, P4;
redecl-merge-right.h 51 @protocol P4, P3;
  /external/libgsm/inc/
unproto.h 17 #undef P4
proto.h 29 #undef P4
43 # define P4(x, a, b, c, d) (a, b, c, d)
57 # define P4(x, a, b, c, d) x a; b; c; d;
  /external/webrtc/src/system_wrappers/interface/
ref_count.h 57 template<typename P1, typename P2, typename P3, typename P4>
58 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4) : T(p1, p2, p3, p4), ref_count_(0) {}
60 template<typename P1, typename P2, typename P3, typename P4, typename P5>
61 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
62 : T(p1, p2, p3, p4, p5), ref_count_(0) {}
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/tests/
test_convert_scipy.py 97 P4 = path_graph(4)
100 A = nx.to_scipy_sparse_matrix(P4, nodelist=nodelist)
113 P4 = path_graph(4)
114 A = nx.to_scipy_sparse_matrix(P4)
126 P4 = path_graph(4)
127 A = nx.to_scipy_sparse_matrix(P4, format='csr')
131 A = nx.to_scipy_sparse_matrix(P4, format='csc')
135 A = nx.to_scipy_sparse_matrix(P4, format='coo')
139 A = nx.to_scipy_sparse_matrix(P4, format='bsr')
143 A = nx.to_scipy_sparse_matrix(P4, format='lil'
    [all...]
test_convert_numpy.py 99 P4 = path_graph(4)
102 A = nx.to_numpy_matrix(P4, nodelist=nodelist)
113 P4 = path_graph(4)
114 A = nx.to_numpy_matrix(P4)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/bipartite/tests/
test_centrality.py 8 self.P4 = nx.path_graph(4)
16 d = bipartite.degree_centrality(self.P4, [1,3])
27 c = bipartite.betweenness_centrality(self.P4, [1,3])
38 c = bipartite.closeness_centrality(self.P4, [1,3])
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_cbrt.c 34 P4 = 0.145996192886612446982; /* 0x3fc2b000, 0xd4e4edd7 */
89 t=t*((P0+r*(P1+r*P2))+((r*r)*r)*(P3+r*P4));
e_exp.c 37 * R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5
97 P4 = -1.65339022054652515390e-06, /* 0xBEBBBD41, 0xC5D26BF1 */
151 c = x - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
s_exp2f.c 43 P4 = 0x1.3b2c9cp-7f;
133 tv = tv + u * (P1 + z * P2) + u * (z * z) * (P3 + z * P4);
  /external/libgsm/src/
debug.c 21 void gsm_debug_words P4( (name, from, to, ptr),
41 void gsm_debug_longwords P4( (name, from, to, ptr),
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
template_arity.hpp 52 template< typename P1, typename P2, typename P3, typename P4 > class F
60 typename P1, typename P2, typename P3, typename P4
71 typename P1, typename P2, typename P3, typename P4
quote.hpp 78 template< typename P1, typename P2, typename P3, typename P4 > class F
99 typename P1, typename P2, typename P3, typename P4
  /external/v8/test/cctest/compiler/
call-tester.h 142 MachineType p3 = kMachNone, MachineType p4 = kMachNone) {
145 MachineType types[] = {p0, p1, p2, p3, p4};
202 typename P4>
203 R DoCall(F* f, P1 p1, P2 p2, P3 p3, P4 p4) {
206 Simulator::CallArgument(p3), Simulator::CallArgument(p4),
212 int32_t p3 = 0, int32_t p4 = 0) {
214 return static_cast<uintptr_t>(simulator->Call(f, 4, p1, p2, p3, p4));
238 typename P4>
239 R DoCall(F* f, P1 p1, P2 p2, P3 p3, P4 p4)
    [all...]
  /external/fdlibm/
e_exp.c 34 * R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5
97 P4 = -1.65339022054652515390e-06, /* 0xBEBBBD41, 0xC5D26BF1 */
146 c = x - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/assortativity/tests/
test_correlation.py 28 r=nx.degree_assortativity_coefficient(self.P4)
41 r=nx.degree_pearson_correlation_coefficient(self.P4)
test_pairs.py 60 xy=sorted(nx.node_degree_xy(self.P4))
70 xy=sorted(nx.node_degree_xy(self.P4,nodes=[0,1,-1]))
base_test.py 42 self.P4=nx.path_graph(4)
test_mixing.py 12 d=nx.degree_mixing_dict(self.P4)
19 d=nx.degree_mixing_dict(self.P4, normalized=True)
61 a=nx.degree_mixing_matrix(self.P4,normalized=False)
63 a=nx.degree_mixing_matrix(self.P4)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/centrality/tests/
test_closeness_centrality.py 12 self.P4 = nx.path_graph(4)
  /external/v8/src/
hydrogen.h     [all...]

Completed in 9046 milliseconds

1 2 3