Searched refs:fe (Results 1 - 25 of 45) sorted by relevance

12

/external/skia/forth/
H A DStdWords.cpp15 virtual void exec(ForthEngine* fe)
22 (void)fe->pop();
26 fe->push(fe->peek(1));
30 fe->push(fe->top());
34 intptr_t a = fe->pop();
35 intptr_t b = fe->top();
36 fe->setTop(a);
37 fe
110 exec(ForthEngine* fe) argument
116 exec(ForthEngine* fe) argument
122 exec(ForthEngine* fe) argument
128 exec(ForthEngine* fe) argument
134 exec(ForthEngine* fe) argument
140 exec(ForthEngine* fe) argument
148 exec(ForthEngine* fe) argument
155 exec(ForthEngine* fe) argument
163 exec(ForthEngine* fe) argument
168 exec(ForthEngine* fe) argument
177 exec(ForthEngine* fe) argument
189 exec(ForthEngine* fe) argument
197 exec(ForthEngine* fe) argument
205 exec(ForthEngine* fe) argument
213 exec(ForthEngine* fe) argument
221 exec(ForthEngine* fe) argument
230 exec(ForthEngine* fe) argument
240 exec(ForthEngine* fe) argument
250 exec(ForthEngine* fe) argument
260 exec(ForthEngine* fe) argument
267 exec(ForthEngine* fe) argument
274 exec(ForthEngine* fe) argument
281 exec(ForthEngine* fe) argument
288 exec(ForthEngine* fe) argument
296 exec(ForthEngine* fe) argument
302 exec(ForthEngine* fe) argument
308 exec(ForthEngine* fe) argument
315 exec(ForthEngine* fe) argument
322 exec(ForthEngine* fe) argument
329 exec(ForthEngine* fe) argument
356 exec(ForthEngine* fe) argument
362 exec(ForthEngine* fe) argument
368 exec(ForthEngine* fe) argument
375 exec(ForthEngine* fe) argument
382 exec(ForthEngine* fe) argument
389 exec(ForthEngine* fe) argument
[all...]
H A DForthTests.cpp29 static void drop_test0(ForthWord* word, ForthEngine* fe, Reporter* reporter) { argument
30 fe->push(-17);
31 word->exec(fe);
32 FORTH_ASSERT(reporter, 0 == fe->depth());
35 static void drop_test1(ForthWord* word, ForthEngine* fe, Reporter* reporter) { argument
36 fe->push(-17);
37 fe->push(93);
38 word->exec(fe);
39 FORTH_ASSERT(reporter, 1 == fe->depth());
40 FORTH_ASSERT(reporter, -17 == fe
43 dup_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
51 swap_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
60 over_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
70 rot_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
81 rrot_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
92 swap2_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
105 dup2_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
116 over2_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
131 drop2_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
144 iadd_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
156 isub_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
164 imul_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
176 idiv_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
194 imod_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
206 idivmod_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
215 idot_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
223 iabs_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
234 inegate_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
245 imin_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
257 imax_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
271 logical_and_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
288 logical_or_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
305 logical_not_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
320 if_dup_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) argument
[all...]
/external/slf4j/integration/src/test/java/org/slf4j/test_osgi/
H A DFrameworkErrorListener.java37 public void frameworkEvent(FrameworkEvent fe) { argument
38 if (fe.getType() == FrameworkEvent.ERROR) {
39 errorList.add(fe);
44 private void dump(FrameworkEvent fe) { argument
45 Throwable t = fe.getThrowable();
50 System.out.println("Framework ERROR:" + ", source " + fe.getSource() + ", bundle=" + fe.getBundle() + ", ex=" + tString);
58 FrameworkEvent fe = (FrameworkEvent) errorList.get(i);
59 dump(fe);
H A DCheckingBundleListener.java49 BundleEvent fe = (BundleEvent) eventList.get(i);
50 dump(fe);
56 BundleEvent fe = (BundleEvent) eventList.get(i);
57 Bundle b = fe.getBundle();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
H A DX9IntegerConverter.java17 ECFieldElement fe)
19 return (fe.getFieldSize() + 7) / 8;
16 getByteLength( ECFieldElement fe) argument
/external/valgrind/none/tests/ppc32/
H A Dlsw.stdout.exp1 ------ lswi n == 8 (fe special cased) ------
46 ------ stswi n == 8 (fe special cased) ------
/external/valgrind/none/tests/ppc64/
H A Dlsw.stdout.exp1 ------ lswi n == 8 (fe special cased) ------
46 ------ stswi n == 8 (fe special cased) ------
/external/zlib/src/watcom/
H A Dwatcom_l.mak35 $(LINKER) -fe=example.exe example.obj $(ZLIB_LIB)
38 $(LINKER) -fe=minigzip.exe minigzip.obj $(ZLIB_LIB)
H A Dwatcom_f.mak35 $(LINKER) -ldos32a -fe=example.exe example.obj $(ZLIB_LIB)
38 $(LINKER) -ldos32a -fe=minigzip.exe minigzip.obj $(ZLIB_LIB)
/external/v8/src/base/platform/
H A Dcondition-variable.cc194 for (Event* fe = freelist_; fe != NULL; fe = fe->next_) {
195 DCHECK_NE(event, fe);
/external/valgrind/memcheck/tests/amd64/
H A Dfxsave-amd64.stdout.exp7 0 7f 03 00 08 fe 00 00 00 00 00 00 00 00 00 00 00
13 96 xx xx cf d1 f7 17 72 b1 fe 3f 00 00 00 00 00 00
18 176 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
21 224 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
24 272 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
25 288 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
28 336 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
29 352 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
32 400 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
75 0 7f 03 00 08 fe 0
[all...]
/external/llvm/test/MC/ARM/
H A Dthumb1-relax-bcc.s11 @ CHECK-ELF: 7f f4 fe af bne.w #-4
/external/skia/src/core/
H A DSkScan_AntiPath.cpp233 int fe = stop & MASK;
237 fb = fe - fb;
239 fe = 0;
249 n, coverage_to_partial_alpha(fe),
563 int fe = stop & MASK;
570 add_aa_span(row, coverage_to_partial_alpha(fe - fb));
576 n, coverage_to_partial_alpha(fe),
/external/toybox/toys/pending/
H A Dmodprobe.c292 FILE *fe = xfopen("modules.dep", "r"); local
294 while (read_line(fe, &line) > 0) {
311 fclose(fe);
320 FILE *fe = xfopen("modules.dep", "r"); local
322 for (; read_line(fe, &line) > 0; free(line)) {
348 fclose(fe);
/external/v8/test/mjsunit/
H A Dbounds-checks-elimination.js109 test(function fe(b) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-junit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/libvpx/libvpx/vpx_dsp/x86/
H A Dloopfilter_sse2.c54 __m128i abs_p1q1, abs_p0q0, abs_q1q0, fe, ff, work; local
57 fe = _mm_set1_epi8(0xfe);
66 abs_p1q1 = _mm_srli_epi16(_mm_and_si128(abs_p1q1, fe), 1);
425 const __m128i fe = _mm_set1_epi8(0xfe); local
433 abs_p1q1 = _mm_srli_epi16(_mm_and_si128(abs_p1q1, fe), 1);
764 const __m128i fe = _mm_set1_epi8(0xfe); local
765 const __m128i ff = _mm_cmpeq_epi8(fe, fe);
777 abs_p1q1 = _mm_srli_epi16(_mm_and_si128(abs_p1q1, fe), 1);
987 const __m128i fe local
1228 const __m128i fe = _mm_set1_epi8(0xfe); local
[all...]
/external/lldb/source/Expression/
H A DClangExpressionParser.cpp446 for (llvm::Module::iterator fi = module->getFunctionList().begin(), fe = module->getFunctionList().end();
447 fi != fe;
H A DClangASTSource.cpp1381 for (typename MapType::iterator fi = source_map.begin(), fe = source_map.end();
1382 fi != fe;
1481 for (RecordDecl::field_iterator fi = origin_record->field_begin(), fe = origin_record->field_end();
1482 fi != fe;
1521 for (RecordDecl::field_iterator fi = record->field_begin(), fe = record->field_end();
1522 fi != fe;
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_FontMap.cpp393 CPDF_FontEncoding fe(PDFFONT_ENCODING_WINANSI);
394 pFont = pDoc->AddStandardFont(sFontName, &fe);
/external/valgrind/memcheck/tests/x86/
H A Dfxsave.stdout.exp10 80 xx xx cf d1 f7 17 72 b1 fe 3f 00 00 00 00 00 00
16 176 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
78 80 xx xx cf d1 f7 17 72 b1 fe 3f 00 00 00 00 00 00
84 176 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
/external/clang/lib/Frontend/
H A DCacheTokens.cpp66 PTHEntryKeyVariant(const FileEntry *fe) : FE(fe), Kind(IsFE), Data(nullptr) {} argument
/external/pdfium/fpdfsdk/src/
H A Dfpdf_flatten.cpp287 void GetOffset(FX_FLOAT& fa, FX_FLOAT& fd, FX_FLOAT& fe, FX_FLOAT& ff, CPDF_Rect rcAnnot, CPDF_Rect rcStream, CFX_AffineMatrix matrix) argument
319 fe = rcAnnot.left - left * fa;
/external/valgrind/none/tests/amd64/
H A Dslahf-amd64.stdout.exp257 fe -> d600
/external/clang/test/SemaCXX/
H A Dconditional-expr.cpp286 fa, fb, fc, fd, fe, ff enumerator in enum:test1::A::Foo

Completed in 1354 milliseconds

12