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

1 2 3 4 5 6 7 8 91011

  /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/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), "");
  /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...]
  /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());
  /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();
  /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;
  /external/clang/test/Analysis/Inputs/
system-header-simulator.h 60 freeCallback fc; member in struct:__anon18030
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
FlatPackageWriterImpl.java 150 FileChannel fc = fos.getChannel(); local
153 b.getBox(fc); // moof
154 mdat.getBox(fc); // mdat
155 fc.truncate(fc.position());
156 fc.close();
  /external/bluetooth/bluedroid/stack/rfcomm/
port_utils.c 419 BOOLEAN fc = p_port->tx.peer_fc local
425 if (p_port->tx.user_fc == fc)
428 p_port->tx.user_fc = fc;
430 if (fc)
538 /* if queue count reached credit rx max, set peer fc */
579 RFCOMM_TRACE_EVENT0 ("PORT_DataInd Data reached HW. Sending FC set.");
  /external/chromium_org/third_party/libjingle/source/talk/base/
macutils.cc 65 void DecodeFourChar(UInt32 fc, std::string* out) {
70 char ch = (fc >> (8 * i)) & 0xFF;
82 ss << "0x" << std::hex << fc; local
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_addr.c 1261 IPAddressFamily *fc = sk_IPAddressFamily_value(child, j); local
1271 IPAddressFamily *fc = sk_IPAddressFamily_value(child, j); local
    [all...]
  /external/openssl/crypto/x509v3/
v3_addr.c 1261 IPAddressFamily *fc = sk_IPAddressFamily_value(child, j); local
1271 IPAddressFamily *fc = sk_IPAddressFamily_value(child, j); local
    [all...]
  /external/sonivox/arm-fm-22k/host_src/
eas_wave.h 54 FMT_CHUNK fc; member in struct:__anon28046
  /external/sonivox/arm-hybrid-22k/host_src/
eas_wave.h 54 FMT_CHUNK fc; member in struct:__anon28096
  /external/sonivox/arm-wt-22k/host_src/
eas_wave.h 54 FMT_CHUNK fc; member in struct:__anon28147
  /frameworks/av/media/libeffects/lvm/lib/Eq/src/
LVEQNB_Control.c 134 /* Double precision if (fc <= fs/110) */
135 /* Double precision if (fs/110 < fc < fs/85) & (Q>3) */
147 LVM_UINT32 fc; /* Filter centre frequency */ local
158 fc = (LVM_UINT32)pParams->pBandDefinition[i].Frequency; /* Get the band centre frequency */
166 if ((fc << 15) <= (LOW_FREQ * fs))
169 * fc <= fs/110
173 else if (((fc << 15) <= (HIGH_FREQ * fs)) && (QFactor > 300))
176 * (fs/110 < fc < fs/85) & (Q>3)
185 if (fc > (fs >> 1))
  /libcore/support/src/test/java/tests/support/
Support_Format.java 138 FieldContainer fc = (FieldContainer) obj; local
139 return (start == fc.start && end == fc.end
140 && attribute == fc.attribute && value.equals(fc.value));
  /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;
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
Support_Format.java 138 FieldContainer fc = (FieldContainer) obj; local
139 return (start == fc.start && end == fc.end
140 && attribute == fc.attribute && value.equals(fc.value));
  /external/chromium/third_party/libjingle/source/talk/base/
macutils.cc 65 void DecodeFourChar(UInt32 fc, std::string* out) {
70 char ch = (fc >> (8 * i)) & 0xFF;
82 ss << "0x" << std::hex << fc; local
  /external/clang/test/CodeGenCXX/
vtable-linkage.cpp 95 F<char> fc; local
96 fc.foo();
  /external/libvpx/libvpx/vp8/decoder/
detokenize.c 173 const FRAME_CONTEXT * const fc = &dx->common.fc; local
195 coef_probs = fc->coef_probs [1];
203 coef_probs = fc->coef_probs [0];
208 coef_probs = fc->coef_probs [3];
226 coef_probs = fc->coef_probs [2];
  /external/libvpx/libvpx/vp9/common/
vp9_entropymv.c 206 nmv_context *fc = &cm->fc.nmvc; local
210 adapt_probs(vp9_mv_joint_tree, pre_fc->joints, counts->joints, fc->joints);
213 nmv_component *comp = &fc->comps[i];
246 cm->fc.nmvc = default_nmv_context;
  /external/wpa_supplicant_8/src/common/
ieee802_11_common.c 382 u16 fc, type, stype; local
391 fc = le_to_host16(hdr->frame_control);
392 type = WLAN_FC_GET_TYPE(fc);
393 stype = WLAN_FC_GET_STYPE(fc);
399 switch (fc & (WLAN_FC_FROMDS | WLAN_FC_TODS)) {
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_Control.c 262 /* Double precision if (fc <= fs/110) */
263 /* Double precision if (fs/110 < fc < fs/85) & (Q>3) */
274 LVM_UINT32 fc; /* Filter centre frequency */ local
282 fc = (LVM_UINT32)pInst->pFiltersParams[ii].CenterFrequency; /* Get the band centre frequency */
290 if ((LOW_FREQ * fs) >= (fc << 15))
293 * fc <= fs/110
299 if (((LOW_FREQ * fs) < (fc << 15)) && ((fc << 15) < (HIGH_FREQ * fs)) && (QFactor > 300))
302 * (fs/110 < fc < fs/85) & (Q>3)
448 /* t0 = 2 * Pi * Fc / Fs *
    [all...]

Completed in 791 milliseconds

1 2 3 4 5 6 7 8 91011