/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);
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/ |
ForgettingCurveTests.java | 26 final byte fc = (byte)i; 27 final int e = UserHistoryForgettingCurveUtils.fcToElapsedTime(fc); 28 final int c = UserHistoryForgettingCurveUtils.fcToCount(fc); 29 final int l = UserHistoryForgettingCurveUtils.fcToLevel(fc); 31 assertEquals(fc, fc2); 33 byte fc = 0; 37 fc = UserHistoryForgettingCurveUtils.pushCount(fc, true); 39 l = UserHistoryForgettingCurveUtils.fcToLevel(fc); 42 fc = 0 [all...] |
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
FileChannelTest.java | 32 FileChannel fc = new FileInputStream(tmp).getChannel(); local 34 fc.read(readOnly); 39 fc.read(new ByteBuffer[] { readOnly }); 44 fc.read(new ByteBuffer[] { readOnly }, 0, 1); 49 fc.read(readOnly, 0L); 53 fc.close(); 57 fc = new FileOutputStream(tmp).getChannel(); 58 fc.write(readOnly); 59 fc.write(new ByteBuffer[] { readOnly }); 60 fc.write(new ByteBuffer[] { readOnly }, 0, 1) 67 FileChannel fc = new FileOutputStream(tmp).getChannel(); local 87 FileChannel fc = new FileOutputStream(tmp).getChannel(); local 101 FileChannel fc = fos.getChannel(); local [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
UserHistoryForgettingCurveUtils.java | 68 public ForgettingCurveParams(int fc, long now, long last) { 72 this(fc, now, last, fcToLevel((byte)fc) > 0); 75 private ForgettingCurveParams(int fc, long now, long last, boolean isValid) { 77 mFc = (byte)fc; 121 /* package */ static int fcToElapsedTime(byte fc) { 122 return fc & 0x0F; 125 /* package */ static int fcToCount(byte fc) { 126 return (fc >> 4) & 0x03; 129 /* package */ static int fcToLevel(byte fc) { [all...] |
/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/elfutils/tests/ |
coverage.sh | 18 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"
|
/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/tcpdump/ |
ieee802_11.h | 112 #define FC_VERSION(fc) ((fc) & 0x3) 113 #define FC_TYPE(fc) (((fc) >> 2) & 0x3) 114 #define FC_SUBTYPE(fc) (((fc) >> 4) & 0xF) 115 #define FC_TO_DS(fc) ((fc) & 0x0100) 116 #define FC_FROM_DS(fc) ((fc) & 0x0200 125 u_int16_t fc; member in struct:mgmt_header_t 254 u_int16_t fc; member in struct:ctrl_rts_t 265 u_int16_t fc; member in struct:ctrl_cts_t 274 u_int16_t fc; member in struct:ctrl_ack_t 283 u_int16_t fc; member in struct:ctrl_ps_poll_t 294 u_int16_t fc; member in struct:ctrl_end_t 305 u_int16_t fc; member in struct:ctrl_end_ack_t [all...] |
/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,
|
/libcore/luni/src/test/java/libcore/sqlite/ |
OldFunctionContextTest.java | 203 public void function(FunctionContext fc, String args[]) { 205 fc.set_error(errorMsg); 208 public void last_step(FunctionContext fc) {} 209 public void step(FunctionContext fc, String[] args) {} 216 public void function(FunctionContext fc, String args[]) { 218 noOfRows = fc.count(); 219 fc.set_result(noOfRows); 222 public void last_step(FunctionContext fc) {} 223 public void step(FunctionContext fc, String[] args) {} 230 public void function(FunctionContext fc, String args[]) [all...] |
/external/libvpx/libvpx/vp9/common/ |
vp9_entropymode.c | 322 vp9_copy(cm->fc.uv_mode_prob, default_if_uv_probs); 323 vp9_copy(cm->fc.y_mode_prob, default_if_y_probs); 324 vp9_copy(cm->fc.switchable_interp_prob, default_switchable_interp_prob); 325 vp9_copy(cm->fc.partition_prob, default_partition_probs); 326 vp9_copy(cm->fc.intra_inter_prob, default_intra_inter_p); 327 vp9_copy(cm->fc.comp_inter_prob, default_comp_inter_p); 328 vp9_copy(cm->fc.comp_ref_prob, default_comp_ref_p); 329 vp9_copy(cm->fc.single_ref_prob, default_single_ref_p); 330 cm->fc.tx_probs = default_tx_probs; 331 vp9_copy(cm->fc.mbskip_probs, default_mbskip_probs) 365 FRAME_CONTEXT *fc = &cm->fc; local [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
DcFailCause.java | 69 for (DcFailCause fc : values()) { 70 sErrorCodeToFailCauseMap.put(fc.getErrorCode(), fc); typedefs 112 DcFailCause fc = sErrorCodeToFailCauseMap.get(errorCode); local 113 if (fc == null) { 114 fc = UNKNOWN; 116 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/libvpx/libvpx/vp9/encoder/ |
vp9_modecosts.c | 31 vp9_cost_tokens(c->mb.mbmode_cost, cm->fc.y_mode_prob[1], 34 cm->fc.uv_mode_prob[INTRA_MODES - 1], vp9_intra_mode_tree); 41 cm->fc.switchable_interp_prob[i],
|
/external/clang/test/Index/ |
complete-memfunc-cvquals.cpp | 17 void text(Foo f, Foo *fp, const Foo &fc, const Foo *fcp, 21 fc.baz();
|
/libcore/luni/src/main/java/java/nio/ |
NioUtils.java | 37 * Returns the int file descriptor from within the given FileChannel 'fc'. 39 public static FileDescriptor getFD(FileChannel fc) { 40 return ((FileChannelImpl) fc).getFD();
|
/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...] |
/external/sonivox/arm-wt-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...] |
/bootable/recovery/applypatch/ |
main.c | 76 FileContents fc; local 77 if (LoadFileContents(colon, &fc, RETOUCH_DONT_MASK) != 0) { 82 (*patches)[i]->size = fc.size; 83 (*patches)[i]->data = (char*)fc.data; 105 FileContents fc; local 106 if (LoadFileContents(argv[2], &fc, RETOUCH_DONT_MASK) != 0) { 112 bonus->size = fc.size; 113 bonus->data = (char*)fc.data;
|
/frameworks/base/core/java/android/widget/ |
RemoteViewsService.java | 216 Intent.FilterComparison fc = new Intent.FilterComparison(intent); local 217 if (RemoteViewsService.sRemoteViewFactories.containsKey(fc)) { 218 RemoteViewsFactory factory = RemoteViewsService.sRemoteViewFactories.get(fc); 225 RemoteViewsService.sRemoteViewFactories.remove(fc); 237 Intent.FilterComparison fc = new Intent.FilterComparison(intent); local 240 if (!sRemoteViewFactories.containsKey(fc)) { 242 sRemoteViewFactories.put(fc, factory); 246 factory = sRemoteViewFactories.get(fc);
|
/external/libvpx/libvpx/vp8/common/ |
entropymode.c | 162 vpx_memcpy(x->fc.ymode_prob, vp8_ymode_prob, sizeof(vp8_ymode_prob)); 163 vpx_memcpy(x->fc.uv_mode_prob, vp8_uv_mode_prob, sizeof(vp8_uv_mode_prob)); 164 vpx_memcpy(x->fc.sub_mv_ref_prob, sub_mv_ref_prob, sizeof(sub_mv_ref_prob));
|