HomeSort by relevance Sort by last modified time
    Searched defs:fc (Results 1 - 25 of 565) 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), "");
  /external/slf4j/slf4j-migrator/src/test/java/org/slf4j/migrator/
FileConverterTest.java 54 InplaceFileConverter fc = new InplaceFileConverter(new EmptyRuleSet(), new NopProgressListener()); local
55 fc.convert(new File("c:/varargs.txt"));
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
FileContent.java 80 private FileChannel fc = null; field in class:FileContent
89 if (fc == null)
90 fc = new RandomAccessFile(fn, "r").getChannel();
91 length = fc.size();
96 if (fc == null)
108 position += cio.transferTo(fc, position, length - position);
113 if (fc != null) {
114 fc.close();
115 fc = null;
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
FileContent.java 80 private FileChannel fc = null; field in class:FileContent
89 if (fc == null)
90 fc = new RandomAccessFile(fn, "r").getChannel();
91 length = fc.size();
96 if (fc == null)
108 position += cio.transferTo(fc, position, length - position);
113 if (fc != null) {
114 fc.close();
115 fc = null;
  /art/test/474-fp-sub-neg/src/
Main.java 21 float fc = 1f; local
23 f -= fc;
25 nf -= fc;
  /bootable/recovery/applypatch/
applypatch_modes.cpp 68 FileContents fc; local
69 if (LoadFileContents(pieces[1].c_str(), &fc) != 0) {
72 files->push_back(std::move(fc));
  /frameworks/minikin/tests/unittest/
FontCollectionTest.cpp 43 void expectVSGlyphs(const FontCollection* fc, uint32_t codepoint, const std::set<uint32_t>& vsSet) {
50 EXPECT_FALSE(fc->hasVariationSelector(codepoint, vs))
53 EXPECT_TRUE(fc->hasVariationSelector(codepoint, vs))
60 auto fc = buildFontCollection(kVsTestFont); local
62 EXPECT_FALSE(fc->hasVariationSelector(0x82A6, 0));
63 expectVSGlyphs(fc.get(), 0x82A6,
66 EXPECT_FALSE(fc->hasVariationSelector(0x845B, 0));
67 expectVSGlyphs(fc.get(), 0x845B,
70 EXPECT_FALSE(fc->hasVariationSelector(0x537F, 0));
71 expectVSGlyphs(fc.get(), 0x537F, std::set<uint32_t>({0xFE0E}))
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
FileChannelTest.java 55 FileChannel fc = new FileInputStream(tmp).getChannel(); local
57 fc.read(readOnly);
62 fc.read(new ByteBuffer[] { readOnly });
67 fc.read(new ByteBuffer[] { readOnly }, 0, 1);
72 fc.read(readOnly, 0L);
76 fc.close();
80 fc = new FileOutputStream(tmp).getChannel();
81 fc.write(readOnly);
82 fc.write(new ByteBuffer[] { readOnly });
83 fc.write(new ByteBuffer[] { readOnly }, 0, 1)
90 FileChannel fc = new FileOutputStream(tmp).getChannel(); local
110 FileChannel fc = new FileOutputStream(tmp).getChannel(); local
124 FileChannel fc = fos.getChannel(); local
140 FileChannel fc = createFileContainingBytes(initialBytes); local
160 FileChannel fc = createFileContainingBytes(initialBytes); local
182 FileChannel fc = createFileContainingBytes(initialBytes); local
202 FileChannel fc = createFileContainingBytes(initialBytes); local
222 FileChannel fc = createFileContainingBytes(initialBytes); local
250 FileChannel fc = fosFromFd.getChannel(); local
284 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());
  /prebuilts/go/darwin-x86/test/
func5.go 39 var fc func(int, int, chan int) var
46 return fc
74 fc = addc
78 go fc(1, 2, c)
  /prebuilts/go/linux-x86/test/
func5.go 39 var fc func(int, int, chan int) var
46 return fc
74 fc = addc
78 go fc(1, 2, c)
  /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();
  /build/kati/
find_test.cc 39 FindCommand fc; local
40 if (!fc.Parse(cmd)) {
45 if (!FindEmulator::Get()->HandleFind(cmd, fc, Loc(), &out)) {
72 FindCommand fc; local
73 if (!fc.Parse(cmd)) {
78 if (!FindEmulator::Get()->HandleFind(cmd, fc, Loc(), &emulated)) {
113 FindCommand fc; local
114 if (fc.Parse(cmd)) {
  /external/tcpdump/
print-802_15_4.c 50 #define FC_FRAME_TYPE(fc) ((fc) & 0x7)
55 #define FC_DEST_ADDRESSING_MODE(fc) (((fc) >> 10) & 0x3)
56 #define FC_FRAME_VERSION(fc) (((fc) >> 12) & 0x3)
57 #define FC_SRC_ADDRESSING_MODE(fc) (((fc) >> 14) & 0x3)
70 uint16_t fc; local
80 fc = EXTRACT_LE_16BITS(p)
    [all...]
  /frameworks/support/fragment/src/androidTest/java/androidx/fragment/app/
FragmentLifecycleTest.java 456 FragmentController fc = startupFragmentController(null); local
457 FragmentManager fm = fc.getSupportFragmentManager();
469 fc = restartFragmentController(fc);
470 fm = fc.getSupportFragmentManager();
484 fc = restartFragmentController(fc);
485 fm = fc.getSupportFragmentManager();
493 shutdownFragmentController(fc);
505 FragmentController fc = FragmentController.createController local
569 FragmentController fc = FragmentController.createController( local
600 FragmentController fc = startupFragmentController(null); local
701 FragmentController fc = startupFragmentController(null); local
731 FragmentController fc = startupFragmentController(null); local
758 FragmentController fc = startupFragmentController(null); local
969 FragmentController fc = FragmentTestUtil.createController(mActivityRule); local
1015 FragmentController fc = FragmentTestUtil.createController(mActivityRule); local
1062 FragmentController fc = FragmentTestUtil.createController(mActivityRule); local
1100 FragmentController fc = FragmentTestUtil.createController(mActivityRule); local
1121 FragmentController fc = FragmentTestUtil.createController(mActivityRule); local
1156 FragmentController fc = FragmentTestUtil.createController(mActivityRule); local
1182 FragmentController fc = FragmentTestUtil.createController(mActivityRule); local
1225 FragmentController fc = FragmentTestUtil.createController(mActivityRule); local
1272 final FragmentController fc = FragmentController.createController( local
    [all...]
  /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/clang/test/Analysis/Inputs/
system-header-simulator.h 61 freeCallback fc; member in struct:__anon15482
  /external/libvpx/libvpx/vp9/common/
vp9_entropymv.c 159 nmv_context *fc = &cm->fc->nmvc; local
164 fc->joints);
167 nmv_component *comp = &fc->comps[i];
193 void vp9_init_mv_probs(VP9_COMMON *cm) { cm->fc->nmvc = default_nmv_context; }
  /external/sonivox/arm-wt-22k/host_src/
eas_wave.h 54 FMT_CHUNK fc; member in struct:__anon35106
  /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) */
151 LVM_UINT32 fc; /* Filter centre frequency */ local
162 fc = (LVM_UINT32)pParams->pBandDefinition[i].Frequency; /* Get the band centre frequency */
174 if ((fc << 15) <= (LOW_FREQ * fs))
177 * fc <= fs/110
181 else if (((fc << 15) <= (HIGH_FREQ * fs)) && (QFactor > 300))
184 * (fs/110 < fc < fs/85) & (Q>3)
193 if (fc > (fs >> 1))
  /libcore/benchmarks/src/benchmarks/regression/
ByteBufferBulkBenchmark.java 61 FileChannel fc = raf.getChannel(); local
62 result = fc.map(FileChannel.MapMode.READ_WRITE, 0, fc.size());
  /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));
  /system/bt/stack/rfcomm/
port_utils.cc 388 bool fc = p_port->tx.peer_fc || !p_port->rfc.p_mcb || local
393 if (p_port->tx.user_fc == fc) return (0);
395 p_port->tx.user_fc = fc;
397 if (fc)
486 /* if queue count reached credit rx max, set peer fc */
519 RFCOMM_TRACE_EVENT("PORT_DataInd Data reached HW. Sending FC set.");
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
unwind-1.s 191 fc: label

Completed in 588 milliseconds

1 2 3 4 5 6 7 8 91011>>