Searched refs:fc (Results 1 - 25 of 213) sorted by relevance

123456789

/external/javasqlite/src/main/java/SQLite/
H A DFunction.java13 * public void function(SQLite.FunctionContext fc, String args[]) {
16 * fc.set_result(Math.sin(d.doubleValue()));
18 * fc.set_error("sin(" + args[0] + "):" + e);
36 * @param fc function's context for reporting result
40 public void function(FunctionContext fc, String args[]); argument
45 * @param fc function's context for reporting result
49 public void step(FunctionContext fc, String args[]); argument
54 * @param fc function's context for reporting result
57 public void last_step(FunctionContext fc); argument
/external/libunwind_llvm/src/
H A Dunwind_ext.h29 __Unwind_SjLj_SetTopOfFunctionStack(struct _Unwind_FunctionContext *fc);
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
H A DFastConstructor.java23 FastConstructor(FastClass fc, Constructor constructor) { argument
24 super(fc, constructor, fc.getIndex(constructor.getParameterTypes()));
36 return fc.newInstance(index, null);
40 return fc.newInstance(index, args);
H A DFastMember.java22 protected FastClass fc; field in class:FastMember
26 protected FastMember(FastClass fc, Member member, int index) { argument
27 this.fc = fc;
44 return fc.getJavaClass();
H A DFastMethod.java23 FastMethod(FastClass fc, Method method) { argument
24 super(fc, method, helper(fc, method));
27 private static int helper(FastClass fc, Method method) { argument
28 int index = fc.getIndex(method.getName(), method.getParameterTypes());
53 return fc.invoke(index, obj, args);
/external/clang/test/Sema/
H A Doverloadable-complex.c4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) { argument
8 char *cp3 = foo(fc);
14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) { argument
17 int *ip = foo(fc);
23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) { argument
26 int *ip = foo(fc);
33 void test_promote_or_convert(float f, float _Complex fc) { argument
34 char *cp = promote_or_convert(fc); // expected-error{{call to 'promote_or_convert' is ambiguous}}
41 void test_promote_or_convert2(float _Complex fc) { argument
42 int *cp = promote_or_convert2(fc);
[all...]
/external/clang/test/SemaCXX/
H A Dcomplex-overload.cpp4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) { argument
8 char *cp3 = foo(fc);
14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) { argument
17 int *ip = foo(fc);
23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) { argument
26 int *ip = foo(fc);
33 void test_promote_or_convert(float f, float _Complex fc) { argument
34 char *cp = promote_or_convert(fc);
41 void test_promote_or_convert2(float _Complex fc) { argument
42 int *cp = promote_or_convert2(fc);
[all...]
/external/tcpdump/
H A Dprint-802_15_4.c47 extract_header_length(uint16_t fc) argument
51 switch ((fc >> 10) & 0x3) {
53 if (fc & (1 << 6)) /* intra-PAN with none dest addr */
66 switch ((fc >> 14) & 0x3) {
79 if (fc & (1 << 6)) {
95 uint16_t fc; local
103 fc = EXTRACT_LE_16BITS(p);
104 hdrlen = extract_header_length(fc);
111 ND_PRINT((ndo,"IEEE 802.15.4 %s packet ", ftypes[fc & 0x7]));
126 switch ((fc >> 1
[all...]
/external/skia/include/ports/
H A DSkFontMgr_fontconfig.h17 * If 'fc' is NULL, will use a new default config.
18 * Takes ownership of 'fc' and will call FcConfigDestroy on it.
20 SK_API SkFontMgr* SkFontMgr_New_FontConfig(FcConfig* fc);
/external/elfutils/tests/
H A Dcoverage.sh18 fc="$base.c"
21 gcov -n -a "$fc" |
22 gawk "/$d.$fc/ { getline; co=gensub(/.*:(.*)% .*/, \"\\\\1\", \"g\"); co=co+0.0; li=\$4+0; printf \"%-35s %6.2f %5d\n\", \"$d/$fc\", co, li } " >> $tmp
25 unused_files="$unused_files $fc"
/external/libvpx/libvpx/vp8/encoder/
H A Dmodecosts.c42 vp8_cost_tokens(rd_costs->inter_bmode_costs, x->fc.bmode_prob, T);
44 vp8_cost_tokens(rd_costs->inter_bmode_costs, x->fc.sub_mv_ref_prob,
47 vp8_cost_tokens(rd_costs->mbmode_cost[1], x->fc.ymode_prob, vp8_ymode_tree);
51 vp8_cost_tokens(rd_costs->intra_uv_mode_cost[1], x->fc.uv_mode_prob,
/external/libvpx/libvpx/vp9/common/
H A Dvp9_entropymode.c317 static void init_mode_probs(FRAME_CONTEXT *fc) { argument
318 vp9_copy(fc->uv_mode_prob, default_if_uv_probs);
319 vp9_copy(fc->y_mode_prob, default_if_y_probs);
320 vp9_copy(fc->switchable_interp_prob, default_switchable_interp_prob);
321 vp9_copy(fc->partition_prob, default_partition_probs);
322 vp9_copy(fc->intra_inter_prob, default_intra_inter_p);
323 vp9_copy(fc->comp_inter_prob, default_comp_inter_p);
324 vp9_copy(fc->comp_ref_prob, default_comp_ref_p);
325 vp9_copy(fc->single_ref_prob, default_single_ref_p);
326 fc
339 FRAME_CONTEXT *fc = cm->fc; local
[all...]
/external/jetty/src/java/org/eclipse/jetty/continuation/
H A DContinuationFilter.java103 FilteredContinuation fc;
106 fc = new FauxContinuation(request);
107 request.setAttribute(Continuation.ATTRIBUTE,fc);
110 fc=(FilteredContinuation)c;
117 if (fc==null || (fc).enter(response))
126 if (fc==null)
127 fc = (FilteredContinuation) request.getAttribute(Continuation.ATTRIBUTE);
129 complete=fc==null || (fc)
[all...]
/external/clang/test/Headers/
H A Dtgmath.c10 float complex fc; variable
20 _Static_assert(sizeof(creal(fc)) == sizeof(f), "");
30 _Static_assert(sizeof(fabs(fc)) == sizeof(f), "");
/external/clang/test/Index/
H A Dcomplete-memfunc-cvquals.cpp17 void text(Foo f, Foo *fp, const Foo &fc, const Foo *fcp, argument
21 fc.baz();
/external/slf4j/slf4j-migrator/src/test/java/org/slf4j/migrator/
H A DFileConverterTest.java54 InplaceFileConverter fc = new InplaceFileConverter(new EmptyRuleSet(), new NopProgressListener());
55 fc.convert(new File("c:/varargs.txt"));
/external/clang/test/CodeGen/
H A Dcomplex-builtints.c27 volatile float _Complex fc = 1.0F + 2.0iF; local
31 if (__builtin_conjf (fc) != 1.0F - 2.0iF)
35 if (__builtin_crealf (fc) != 1.0F)
39 if (__builtin_cimagf (fc) != 2.0F)
/external/sonivox/arm-wt-22k/host_src/
H A Deas_wave.c110 FlipWord(&p->fc.wFormatTag);
111 FlipWord(&p->fc.nChannels);
112 FlipDWord(&p->fc.nSamplesPerSec);
113 FlipDWord(&p->fc.nAvgBytesPerSec);
114 FlipWord(&p->fc.nBlockAlign);
115 FlipWord(&p->fc.wBitsPerSample);
158 wFile->wh.fc.wFormatTag = 1;
159 wFile->wh.fc.nChannels = (EAS_U16) nChannels;
160 wFile->wh.fc.nSamplesPerSec = (EAS_U32) nSamplesPerSec;
161 wFile->wh.fc
[all...]
/external/libcxx/test/std/numerics/complex.number/complex.member.ops/
H A Ddivide_equal_complex.pass.cpp41 std::complex<float> fc (1,1);
42 c3 /= fc;
H A Dminus_equal_complex.pass.cpp41 std::complex<float> fc (1,1);
42 c3 -= fc;
H A Dplus_equal_complex.pass.cpp41 std::complex<float> fc (1,1);
42 c3 += fc;
H A Dtimes_equal_complex.pass.cpp41 std::complex<float> fc (1,1);
42 c3 *= fc;
/external/skia/bench/
H A DnanobenchAndroid.cpp21 this->fc.reset(targetCanvas);
22 canvas = &this->fc;
/external/selinux/libsepol/cil/src/
H A Dcil_post.h39 void cil_post_fc_fill_data(struct fc_data *fc, char *path);
/external/libvpx/libvpx/vp8/common/
H A Dentropymode.c162 memcpy(x->fc.ymode_prob, vp8_ymode_prob, sizeof(vp8_ymode_prob));
163 memcpy(x->fc.uv_mode_prob, vp8_uv_mode_prob, sizeof(vp8_uv_mode_prob));
164 memcpy(x->fc.sub_mv_ref_prob, sub_mv_ref_prob, sizeof(sub_mv_ref_prob));

Completed in 894 milliseconds

123456789