Searched refs:func (Results 101 - 125 of 761) sorted by relevance

1234567891011>>

/external/openssl/crypto/ecdh/
H A Dech_err.c68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_ECDH,func,0)
/external/openssl/crypto/objects/
H A Dobj_err.c68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_OBJ,func,0)
/external/openssl/crypto/rand/
H A Drand_err.c68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_RAND,func,0)
/external/v8/test/mjsunit/compiler/
H A Dregress-serialized-slots.js39 var func = this;
44 return func.apply(
/external/v8/test/mjsunit/
H A Ddebug-stepnext-do-while.js41 assertEquals('runDoWhile', event_data.func().name());
45 assertEquals('runDoWhile', event_data.func().name());
H A Darray-slice.js224 function func(expected, a0, a1, a2) {
228 func([]);
229 func(['a'], 'a');
230 func(['a', 1], 'a', 1);
231 func(['a', 1, undefined], 'a', 1, undefined);
232 func(['a', 1, undefined, void(0)], 'a', 1, undefined, void(0));
237 function func(x, y) {
245 func('a');
250 function func(x, y) {
256 func('
[all...]
H A Dbuiltins.js41 function checkConstructor(func, name) {
45 if (typeof func.prototype != "object") return;
46 var propNames = Object.getOwnPropertyNames(func.prototype);
52 var proto_desc = Object.getOwnPropertyDescriptor(func, "prototype");
H A Ddebug-liveedit-patch-positions.js51 function ReadMarkerPositions(func) {
52 var text = func.toString();
62 function ReadPCMap(func, positions) {
65 var pc = Debug.LiveEdit.GetPcFromSourcePos(func, positions[i]);
/external/webkit/Source/WebCore/platform/efl/
H A DSharedTimerEfl.cpp43 void setSharedTimerFiredFunction(void (*func)()) argument
45 _timerFunction = func;
/external/qemu/
H A Darm-dis.c1590 arm_decode_shift (long given, fprintf_function func, void *stream, argument
1593 func (stream, "%s", arm_regnames[given & 0xf]);
1606 func (stream, ", rrx");
1614 func (stream, ", %s #%d", arm_shift[shift], amount);
1616 func (stream, ", #%d", amount);
1619 func (stream, ", %s %s", arm_shift[(given & 0x60) >> 5],
1622 func (stream, ", %s", arm_regnames[(given & 0xf00) >> 8]);
1636 fprintf_function func = info->fprintf_func; local
1690 func (stream, "%%");
1694 func (strea
2130 fprintf_function func = info->fprintf_func; local
2225 fprintf_function func = info->fprintf_func; local
2679 fprintf_function func = info->fprintf_func; local
3039 fprintf_function func = info->fprintf_func; local
3315 fprintf_function func = info->fprintf_func; local
[all...]
/external/chromium/net/base/
H A Dnet_module.h26 static void SetResourceProvider(ResourceProvider func);
/external/clang/test/Index/
H A Dc-index-getCursor-pp.c5 void OBSCURE(func)(int x) { function
/external/clang/test/Parser/
H A Dbuiltin_types_compatible.c9 #define func(expr) \ macro
27 func(a);
28 func(b);
29 func(d);
/external/clang/test/Sema/
H A Dinit-struct-qualified.c10 void func() { function
/external/elfutils/tests/
H A Dallfcts.c36 cb (Dwarf_Die *func, void *arg __attribute__ ((unused))) argument
38 const char *file = dwarf_decl_file (func);
40 dwarf_decl_line (func, &line);
41 const char *fct = dwarf_diename (func);
/external/icu4c/common/
H A Ducln.h76 * @param func the function pointer
79 cleanupFunc *func);
H A Ducln_cmn.c70 cleanupFunc *func)
75 gCommonCleanupFunctions[type] = func;
84 cleanupFunc *func)
89 gLibCleanupFunctions[type] = func;
69 ucln_common_registerCleanup(ECleanupCommonType type, cleanupFunc *func) argument
83 ucln_registerCleanup(ECleanupLibraryType type, cleanupFunc *func) argument
/external/libnfc-nxp/src/
H A DphDal4Nfc_DeferredCall.h37 void phDal4Nfc_DeferredCall(pphDal4Nfc_Deferred_Call_t func, void *param);
/external/libppp/src/
H A Dtimer.h39 void (*func)(void *); /* Function called when timer is expired */ member in struct:pppTimer
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/
H A Dp8-0x.cpp10 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/mesa3d/src/glsl/
H A Dopt_dead_functions.cpp139 ir_function *func = ir->as_function(); local
141 if (func && func->signatures.is_empty()) {
146 func->remove();
147 delete func;
/external/openssl/crypto/asn1/
H A Dasn1_mac.h75 #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)(
[all...]
/external/openssl/include/openssl/
H A Dasn1_mac.h75 #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)(
[all...]
/external/openssl/crypto/perlasm/
H A Dx86masm.pl96 { my $func=shift;
97 my $global=($func !~ /^_/);
98 my $begin="${::lbdecor}_${func}_begin";
100 &::LABEL($func,$global?"$begin":"$nmdecor$func");
101 $func="ALIGN\t16\n".$nmdecor.$func."\tPROC";
103 if ($global) { $func.=" PUBLIC\n${begin}::\n"; }
104 else { $func.=" PRIVATE\n"; }
105 push(@out,$func);
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGComponentTransferFunctionElement.cpp146 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;

Completed in 2788 milliseconds

1234567891011>>