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

1 2 3 4 5 6 7 8 91011>>

  /external/javasqlite/src/main/java/SQLite/
Function.java 13 * 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[]);
45 * @param fc function's context for reporting result
49 public void step(FunctionContext fc, String args[]);
54 * @param fc function's context for reporting result
57 public void last_step(FunctionContext fc);
  /libcore/luni/src/test/java/libcore/java/nio/channels/
FileChannelTest.java 34 FileChannel fc = new FileInputStream(tmp).getChannel(); local
36 fc.read(readOnly);
41 fc.read(new ByteBuffer[] { readOnly });
46 fc.read(new ByteBuffer[] { readOnly }, 0, 1);
51 fc.read(readOnly, 0L);
55 fc.close();
59 fc = new FileOutputStream(tmp).getChannel();
60 fc.write(readOnly);
61 fc.write(new ByteBuffer[] { readOnly });
62 fc.write(new ByteBuffer[] { readOnly }, 0, 1)
69 FileChannel fc = new FileOutputStream(tmp).getChannel(); local
89 FileChannel fc = new FileOutputStream(tmp).getChannel(); local
103 FileChannel fc = fos.getChannel(); local
119 FileChannel fc = createFileContainingBytes(initialBytes); local
139 FileChannel fc = createFileContainingBytes(initialBytes); local
161 FileChannel fc = createFileContainingBytes(initialBytes); local
181 FileChannel fc = createFileContainingBytes(initialBytes); local
201 FileChannel fc = createFileContainingBytes(initialBytes); local
221 FileChannel fc = fos.getChannel(); local
    [all...]
  /external/libcxxabi/src/Unwind/
unwind_ext.h 29 __Unwind_SjLj_SetTopOfFunctionStack(struct _Unwind_FunctionContext *fc);
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
unwind_ext.h 29 __Unwind_SjLj_SetTopOfFunctionStack(struct _Unwind_FunctionContext *fc);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
FastConstructor.java 23 FastConstructor(FastClass fc, Constructor constructor) {
24 super(fc, constructor, fc.getIndex(constructor.getParameterTypes()));
36 return fc.newInstance(index, null);
40 return fc.newInstance(index, args);
FastMember.java 22 protected FastClass fc; field in class:FastMember
26 protected FastMember(FastClass fc, Member member, int index) {
27 this.fc = fc;
44 return fc.getJavaClass();
FastMethod.java 23 FastMethod(FastClass fc, Method method) {
24 super(fc, method, helper(fc, method));
27 private static int helper(FastClass fc, Method method) {
28 int index = fc.getIndex(method.getName(), method.getParameterTypes());
53 return fc.invoke(index, obj, args);
  /external/clang/test/Sema/
overloadable-complex.c 4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) {
8 char *cp3 = foo(fc);
14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) {
17 int *ip = foo(fc);
23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) {
26 int *ip = foo(fc);
33 void test_promote_or_convert(float f, float _Complex fc) {
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) {
42 int *cp = promote_or_convert2(fc);
    [all...]
  /external/clang/test/SemaCXX/
complex-overload.cpp 4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) {
8 char *cp3 = foo(fc);
14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) {
17 int *ip = foo(fc);
23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) {
26 int *ip = foo(fc);
33 void test_promote_or_convert(float f, float _Complex fc) {
34 char *cp = promote_or_convert(fc);
41 void test_promote_or_convert2(float _Complex fc) {
42 int *cp = promote_or_convert2(fc);
    [all...]
  /external/tcpdump/
print-802_15_4.c 50 extract_header_length(u_int16_t fc)
54 switch ((fc >> 10) & 0x3) {
56 if (fc & (1 << 6)) /* intra-PAN with none dest addr */
69 switch ((fc >> 14) & 0x3) {
82 if (fc & (1 << 6)) {
98 u_int16_t fc; local
106 fc = EXTRACT_LE_16BITS(p);
107 hdrlen = extract_header_length(fc);
114 ND_PRINT((ndo,"IEEE 802.15.4 %s packet ", ftypes[fc & 0x7]));
129 switch ((fc >> 10) & 0x3)
    [all...]
ieee802_11.h 116 #define FC_VERSION(fc) ((fc) & 0x3)
117 #define FC_TYPE(fc) (((fc) >> 2) & 0x3)
118 #define FC_SUBTYPE(fc) (((fc) >> 4) & 0xF)
119 #define FC_TO_DS(fc) ((fc) & 0x0100)
120 #define FC_FROM_DS(fc) ((fc) & 0x0200
129 u_int16_t fc; member in struct:mgmt_header_t
252 u_int16_t fc; member in struct:ctrl_rts_t
263 u_int16_t fc; member in struct:ctrl_cts_t
272 u_int16_t fc; member in struct:ctrl_ack_t
281 u_int16_t fc; member in struct:ctrl_ps_poll_t
292 u_int16_t fc; member in struct:ctrl_end_t
303 u_int16_t fc; member in struct:ctrl_end_ack_t
314 u_int16_t fc; member in struct:ctrl_ba_t
323 u_int16_t fc; member in struct:ctrl_bar_t
    [all...]
  /libcore/luni/src/test/java/tests/support/
MockFunction.java 35 public void function(FunctionContext fc, String args[]) {
38 fc.set_result(args[0].toLowerCase());
42 public void step(FunctionContext fc, String args[]) {
50 public void last_step(FunctionContext fc) {
52 fc.set_result(acc.toString());
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
modecosts.c 41 vp8_cost_tokens(rd_costs->inter_bmode_costs, x->fc.bmode_prob, T);
43 vp8_cost_tokens(rd_costs->inter_bmode_costs, x->fc.sub_mv_ref_prob,
46 vp8_cost_tokens(rd_costs->mbmode_cost[1], x->fc.ymode_prob, vp8_ymode_tree);
50 vp8_cost_tokens(rd_costs->intra_uv_mode_cost[1], x->fc.uv_mode_prob,
  /external/libvpx/libvpx/vp8/encoder/
modecosts.c 41 vp8_cost_tokens(rd_costs->inter_bmode_costs, x->fc.bmode_prob, T);
43 vp8_cost_tokens(rd_costs->inter_bmode_costs, x->fc.sub_mv_ref_prob,
46 vp8_cost_tokens(rd_costs->mbmode_cost[1], x->fc.ymode_prob, vp8_ymode_tree);
50 vp8_cost_tokens(rd_costs->intra_uv_mode_cost[1], x->fc.uv_mode_prob,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
modecosts.c 41 vp8_cost_tokens(rd_costs->inter_bmode_costs, x->fc.bmode_prob, T);
43 vp8_cost_tokens(rd_costs->inter_bmode_costs, x->fc.sub_mv_ref_prob,
46 vp8_cost_tokens(rd_costs->mbmode_cost[1], x->fc.ymode_prob, vp8_ymode_tree);
50 vp8_cost_tokens(rd_costs->intra_uv_mode_cost[1], x->fc.uv_mode_prob,
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_entropymode.c 317 void vp9_init_mode_probs(FRAME_CONTEXT *fc) {
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->tx_probs = default_tx_probs
353 FRAME_CONTEXT *fc = &cm->fc; local
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_entropymode.c 317 void vp9_init_mode_probs(FRAME_CONTEXT *fc) {
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->tx_probs = default_tx_probs
353 FRAME_CONTEXT *fc = &cm->fc; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_entropymode.c 317 void vp9_init_mode_probs(FRAME_CONTEXT *fc) {
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->tx_probs = default_tx_probs
353 FRAME_CONTEXT *fc = &cm->fc; local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcFailCause.java 72 for (DcFailCause fc : values()) {
73 sErrorCodeToFailCauseMap.put(fc.getErrorCode(), fc); typedefs
116 DcFailCause fc = sErrorCodeToFailCauseMap.get(errorCode); local
117 if (fc == null) {
118 fc = UNKNOWN;
120 return fc;
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
FileDisk.java 43 private final FileChannel fc; field in class:FileDisk
64 this.fc = raf.getChannel();
67 public FileDisk(RandomAccessFile raf, FileChannel fc, boolean readOnly) {
70 this.fc = fc;
77 this.fc = raf.getChannel();
118 final int read = fc.read(dest, devOffset);
137 final int written = fc.write(src, devOffset);
161 this.fc.close();
  /external/clang/test/Headers/
tgmath.c 10 float complex fc; variable
20 _Static_assert(sizeof(creal(fc)) == sizeof(f), "");
30 _Static_assert(sizeof(fabs(fc)) == sizeof(f), "");
  /external/clang/test/Index/
complete-memfunc-cvquals.cpp 17 void text(Foo f, Foo *fp, const Foo &fc, const Foo *fcp,
21 fc.baz();
  /external/clang/test/CodeGen/
complex-builtints.c 27 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-fm-22k/host_src/
eas_wave.c 110 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.wBitsPerSample = (EAS_U16) wBitsPerSample
    [all...]
  /external/sonivox/arm-hybrid-22k/host_src/
eas_wave.c 110 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.wBitsPerSample = (EAS_U16) wBitsPerSample
    [all...]

Completed in 808 milliseconds

1 2 3 4 5 6 7 8 91011>>