HomeSort by relevance Sort by last modified time
    Searched refs:func (Results 251 - 275 of 1580) sorted by null

<<11121314151617181920>>

  /external/libppp/src/
timer.h 39 void (*func)(void *); /* Function called when timer is expired */ member in struct:pppTimer
  /external/llvm/test/tools/llvm-objdump/
win64-unwind-data.s 55 .globl func
56 .def func; .scl 2; .type 32; .endef
57 .seh_proc func
58 func: label
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
sdiovar.h 32 int func; member in struct:sdreg
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherAesWrapTest.java 16 package org.apache.harmony.crypto.tests.javax.crypto.func;
CipherDESedeWrapTest.java 16 package org.apache.harmony.crypto.tests.javax.crypto.func;
KeyAgreementFunctionalTest.java 16 package org.apache.harmony.crypto.tests.javax.crypto.func;
KeyGeneratorFunctionalTest.java 16 package org.apache.harmony.crypto.tests.javax.crypto.func;
MacFunctionalTest.java 16 package org.apache.harmony.crypto.tests.javax.crypto.func;
SecretKeyFactoryFunctionalTest.java 16 package org.apache.harmony.crypto.tests.javax.crypto.func;
  /system/core/libnl_2/
handlers.c 58 nl_recvmsg_msg_cb_t func, void *arg)
60 cb->cb_set[type] = func;
69 nl_recvmsg_err_cb_t func, void *arg)
71 cb->cb_err = func;
  /external/eigen/Eigen/src/Core/products/
Parallelizer.h 86 void parallelize_gemm(const Functor& func, Index rows, Index cols, bool transpose)
96 func(0,rows, 0,cols);
108 return func(0,rows, 0,cols);
120 return func(0,rows, 0,cols);
123 func.initParallelSession();
146 func(0, cols, r0, actualBlockRows, info);
148 func(r0, actualBlockRows, 0,cols, info);
  /build/tools/
filter-product-graph.py 8 for func,reg in regs:
11 return (func,m)
40 func,m = choose_regex(REGS, line)
41 if func:
42 func(m)
  /external/clang/test/CXX/expr/expr.prim/expr.prim.general/
p8-0x.cpp 10 int func();
34 a.decltype(outer::middle::inner())::func();
35 a.decltype(outer::middle())::inner::func();
36 a.decltype(outer())::middle::inner::func();
40 decltype(outer())::middle::inner().func();
  /external/clang/test/SemaCXX/
conversion.cpp 97 void func();
117 void func() { function in namespace:test4
128 void func() { function in namespace:test5
132 template void func<3>();
136 decltype(nullptr) func() { function in namespace:test6
  /external/openssl/crypto/asn1/
asn1_mac.h 75 #define M_ASN1_D2I_vars(a,type,func) \
83 { if ((ret=(type)func()) == NULL) \
98 #define M_ASN1_D2I_Finish(a,func,e) \
103 if ((ret != NULL) && ((a == NULL) || (*a != ret))) func(ret); \
114 #define M_ASN1_D2I_Finish_nolen(a, func, e) \
121 if ((ret != NULL) && ((a == NULL) || (*a != ret))) func(ret); \
129 #define M_ASN1_D2I_get(b, func) \
131 if (func(&(b),&c.p,c.slen) == NULL) \
136 #define M_ASN1_D2I_get_x(type,b,func) \
138 if (((D2I_OF(type))func)(&(b),&c.p,c.slen) == NULL)
    [all...]
  /external/openssl/include/openssl/
asn1_mac.h 75 #define M_ASN1_D2I_vars(a,type,func) \
83 { if ((ret=(type)func()) == NULL) \
98 #define M_ASN1_D2I_Finish(a,func,e) \
103 if ((ret != NULL) && ((a == NULL) || (*a != ret))) func(ret); \
114 #define M_ASN1_D2I_Finish_nolen(a, func, e) \
121 if ((ret != NULL) && ((a == NULL) || (*a != ret))) func(ret); \
129 #define M_ASN1_D2I_get(b, func) \
131 if (func(&(b),&c.p,c.slen) == NULL) \
136 #define M_ASN1_D2I_get_x(type,b,func) \
138 if (((D2I_OF(type))func)(&(b),&c.p,c.slen) == NULL)
    [all...]
  /external/openssl/crypto/perlasm/
x86nasm.pl 95 { my $func=shift;
96 my $global=($func !~ /^_/);
97 my $begin="${::lbdecor}_${func}_begin";
101 &::LABEL($func,$global?"$begin":"$nmdecor$func");
102 $func=$nmdecor.$func;
104 push(@out,"${drdecor}global $func\n") if ($global);
106 push(@out,"$func:\n");
x86gas.pl 101 { my $func=shift;
102 my $global=($func !~ /^_/);
103 my $begin="${::lbdecor}_${func}_begin";
105 &::LABEL($func,$global?"$begin":"$nmdecor$func");
106 $func=$nmdecor.$func;
108 push(@out,".globl\t$func\n") if ($global);
110 { push(@out,".def\t$func;\t.scl\t".(3-$global).";\t.type\t32;\t.endef\n"); }
114 { push(@out,".type $func,\@function\n");
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGComponentTransferFunctionElement.cpp 146 ComponentTransferFunction func; local
147 func.type = static_cast<ComponentTransferType>(type());
148 func.slope = slope();
149 func.intercept = intercept();
150 func.amplitude = amplitude();
151 func.exponent = exponent();
152 func.offset = offset();
153 func.tableValues = tableValues();
154 return func;
  /hardware/ti/wlan/lib/
shlist.c 17 SHLIST *shListFindItem( SHLIST *head, void *val, shListEqual func )
22 if( func ) {
23 if( func( val, item->data ) ) {
78 void shListDelItem( SHLIST *head, SHLIST *item, shListFree func )
87 if( func && item->data ) {
88 func( (void *)(item->data) );
131 shListCmp func )
135 if( func == NULL )
143 if( func( val, iptr->data, etal ) )
156 void shListDelAllItems( SHLIST *head, shListFree func )
    [all...]
  /external/v8/test/mjsunit/
comparison-ops-and-undefined.js 30 function test_helper_for_ics(func, b1, b2, b3, b4) {
31 assertEquals(b1, func(.5, .5));
32 assertEquals(b2, func(.5, undefined));
33 assertEquals(b3, func(undefined, .5));
34 assertEquals(b4, func(undefined, undefined));
37 function test_helper_for_crankshaft(func, b1, b2, b3, b4) {
38 assertEquals(b1, func(.5, .5));
39 %OptimizeFunctionOnNextCall(func);
40 assertEquals(b1, func(.5, .5));
41 assertEquals(b2, func(.5, undefined))
    [all...]
string-replace.js 125 assertEquals(3, arguments.length, "replace('x',func) func-args");
126 assertEquals("x", m, "replace('x',func(m,..))");
127 assertEquals(0, i, "replace('x',func(..,i,..))");
128 assertEquals(short, s, "replace('x',func(..,s))");
131 assertEquals(1, ctr, "replace('x',func) num-match");
135 assertEquals(3, arguments.length, "replace(/x/,func) func-args");
136 assertEquals("x", m, "replace(/x/,func(m,..))");
137 assertEquals(0, i, "replace(/x/,func(..,i,..))")
    [all...]
  /external/eigen/blas/
level2_impl.h 15 static functype func[4]; local
21 func[k] = 0;
23 func[NOTR] = (internal::general_matrix_vector_product<int,Scalar,ColMajor,false,Scalar,false>::run);
24 func[TR ] = (internal::general_matrix_vector_product<int,Scalar,RowMajor,false,Scalar,false>::run);
25 func[ADJ ] = (internal::general_matrix_vector_product<int,Scalar,RowMajor,Conj, Scalar,false>::run);
65 func[code](actual_m, actual_n, a, *lda, actual_b, 1, actual_c, 1, alpha);
76 static functype func[16]; local
82 func[k] = 0;
84 func[NOTR | (UP << 2) | (NUNIT << 3)] = (internal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Upper|0, false,ColMajor>::run);
85 func[TR | (UP << 2) | (NUNIT << 3)] = (internal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft (…)
131 static functype func[16]; local
332 static functype func[16]; local
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_symbolize_addr2line_linux.cc 162 InternalScopedBuffer<char> func(1024);
163 ssize_t len = internal_read(m->inp_fd, func.data(), func.size() - 1);
169 func.data()[len] = 0;
173 char *pos = (char*)internal_strchr(func.data(), '\n');
174 if (pos && func[0] != '?') {
175 res->func = (char*)internal_alloc(MBlockReportStack, pos - func.data() + 1);
176 internal_memcpy(res->func, func.data(), pos - func.data())
    [all...]
  /external/bison/darwin-lib/
inttypes.h 131 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
138 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
139 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
143 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
144 declares the system function, named func, with the given prototype,
150 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
151 _GL_EXTERN_C rettype func parameters_and_attributes
153 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
154 declares a C++ alias called GNULIB_NAMESPACE::func
159 #define _GL_CXXALIAS_RPL(func,rettype,parameters)
    [all...]

Completed in 726 milliseconds

<<11121314151617181920>>