Home
last modified time | relevance | path

Searched refs:cc1 (Results 1 – 25 of 78) sorted by relevance

1234

/openbsd/sys/dev/fdt/
H A Dtcpci.c355 tcpci_cc_is_sink(int cc1, int cc2) in tcpci_cc_is_sink() argument
357 if ((cc1 == TYPEC_CC_RP_DEF || cc1 == TYPEC_CC_RP_1_5 || in tcpci_cc_is_sink()
367 tcpci_cc_is_source(int cc1, int cc2) in tcpci_cc_is_source() argument
377 tcpci_cc_is_audio(int cc1, int cc2) in tcpci_cc_is_audio() argument
385 tcpci_cc_is_audio_detached(int cc1, int cc2) in tcpci_cc_is_audio_detached() argument
397 uint8_t cc, cc1, cc2; in tcpci_cc_change() local
404 cc1 = tcpci_cc_to_typec(cc1, cc & TCPC_CC_STATUS_TERM); in tcpci_cc_change()
426 } else if (tcpci_cc_is_source(cc1, cc2)) { in tcpci_cc_change()
429 if (cc1 == TYPEC_CC_RD) in tcpci_cc_change()
442 } else if (tcpci_cc_is_sink(cc1, cc2)) { in tcpci_cc_change()
[all …]
/openbsd/gnu/llvm/clang/docs/
H A DFAQ.rst11 I run ``clang -cc1 ...`` and get weird errors about missing headers
29 $ clang -cc1 hello.c
35 ``clang -cc1`` is the frontend, ``clang`` is the :doc:`driver
45 Users should not run ``clang -cc1`` directly, because ``-cc1`` options are not
48 If you want to use a frontend-only option ("a ``-cc1`` option"), for example
49 ``-ast-dump``, then you need to take the ``clang -cc1`` line generated by the
52 ``clang -cc1``.
H A DClangPlugins.rst147 cc1 command line options listed below.
150 Using the cc1 command line
159 Note that those options must reach clang's cc1 process. There are two
162 * Directly call the parsing process by using the `-cc1` option; this
166 * Use clang as usual, but prefix all arguments to the cc1 process with
192 through as an argument to `-load` on the cc1 command line. If the plugin
H A DModules.rst238 -cc1 Options
288 …ut ``-cc1``, but the commands used to prebuild the modules would need to be updated to take into a…
296 clang -cc1 -emit-module -o prebuilt/A.pcm -fmodules module.modulemap -fmodule-name=A
305 clang -cc1 -emit-module -o prebuilt/A.pcm -fmodules module.modulemap -fmodule-name=A
307 clang -cc1 -emit-obj use.c -fmodules -fimplicit-module-maps -fprebuilt-module-path=prebuilt
314 …clang -cc1 -emit-obj use.c -fmodules -fimplicit-module-maps -fmodules-cache-path=prebuilt -fdisabl…
323 …clang -cc1 -emit-obj use.c -fmodules -fimplicit-module-maps -fprebuilt-module-path=prebuilt -DENAB…
336 clang -cc1 -emit-obj use.c -fmodules -fimplicit-module-maps -fprebuilt-module-path=prebuilt
337 …clang -cc1 -emit-obj use.c -fmodules -fimplicit-module-maps -fprebuilt-module-path=prebuilt_a -DEN…
345 clang -cc1 -emit-obj -o use.o use.c -fmodules -fimplicit-module-maps -fmodules-cache-path=prebuilt
[all …]
H A DLibASTImporter.rst536 $ clang -cc1 -emit-pch -o bar.ast bar.c
537 $ clang -cc1 -emit-pch -o main.ast main.c
543 $ clang -cc1 -ast-merge bar.ast -ast-merge main.ast /dev/null -ast-dump
561 $ clang -cc1 -ast-merge bar.ast -ast-merge main.ast /dev/null -emit-obj -o main.o
607 $ clang++ -cc1 -x c++ -ast-merge foo.ast -ast-merge main.ast /dev/null -ast-dump
608 $ clang++ -cc1 -x c++ -ast-merge foo.ast -ast-merge main.ast /dev/null -emit-obj -o main.o
/openbsd/gnu/llvm/clang/examples/PrintFunctionNames/
H A DREADME.txt9 $ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.so -plugin print-fns some-input-fi…
10 $ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.so -plugin print-fns -plugin-arg-p…
11 $ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.so -plugin print-fns -plugin-arg-p…
14 $ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.dylib -plugin print-fns some-input…
15 $ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.dylib -plugin print-fns -plugin-ar…
16 $ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.dylib -plugin print-fns -plugin-ar…
/openbsd/gnu/lib/libstdc++/libstdc++/testsuite/21_strings/
H A Dc_strings.cc33 const char* cc1 = &cc; in test01() local
43 cc1 = std::strchr(ccarray1, 'c'); in test01()
48 cc1 = std::strpbrk(ccarray1, ccarray2); in test01()
53 cc1 = std::strrchr(ccarray1, 'c'); in test01()
58 cc1 = std::strstr(ccarray1, ccarray2); in test01()
/openbsd/gnu/lib/libstdc++/libstdc++/testsuite/22_locale/
H A Dctype_is_wchar_t.cc107 const char_type* cc1 = NULL; in test01() local
114 cc1 = gctype.is(cc0, cc0, m01); in test01()
115 VERIFY( cc1 == strlit00 ); in test01()
136 cc1 = gctype.is(cc0, cc0 + 13, m02); in test01()
137 VERIFY( cc1 == strlit01 + 13); in test01()
H A Dctype_is_char.cc106 const char_type* cc1 = NULL; in test01() local
113 cc1 = gctype.is(cc0, cc0, m01); in test01()
114 VERIFY( cc1 == strlit00 ); in test01()
133 cc1 = gctype.is(cc0, cc0 + 13, m02); in test01()
134 VERIFY( cc1 == strlit01 + 13); in test01()
/openbsd/gnu/usr.bin/perl/ext/XS-APItest/t/
H A Dcleanup.t21 push @events, [ "cc1", aa() ];
35 [ "cc1", "aa2" ],
/openbsd/gnu/usr.bin/cc/libgcov/
H A DMakefile19 CC=${.OBJDIR}/../cc/cc -B ${.OBJDIR}/../cc1
21 CC=${.CURDIR}/../cc/cc -B ${.CURDIR}/../cc1
/openbsd/gnu/usr.bin/cc/
H A DMakefile9 SUBDIR= cc_tools libcpp libdecnumber cc_int cc cc1 include doc
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/unsorted/
H A Drmsc.c2 cc1 (x, y) in cc1() function
H A Dcc.c55 cc1 (a, b) in cc1() function
/openbsd/gnu/llvm/clang/utils/perf-training/
H A Dperf-helper.py80 if opts.cc1:
152 def cc1(args): function
410 'cc1' : cc1,
H A Dlit.cfg30 cc1_wrapper = '%s %s/perf-helper.py cc1' % (config.python_exe, config.perf_helper_dir)
H A Dorder-files.lit.cfg32 dtrace_wrapper_cc1 = '%s %s/perf-helper.py dtrace --cc1' % (config.python_exe, config.perf_helper_d…
/openbsd/gnu/usr.bin/cc/cc1/
H A DMakefile11 PROG= cc1
/openbsd/gnu/gcc/gcc/config/frv/
H A Dlib1funcs.asm66 fckeq fcc0, cc1
68 cmov gr0, gr8, cc1, 1
/openbsd/gnu/usr.bin/gcc/gcc/config/frv/
H A Dlib1funcs.asm59 fckeq fcc0, cc1
61 cmov gr0, gr8, cc1, 1
/openbsd/gnu/usr.bin/binutils/gdb/testsuite/gdb.disasm/
H A Dsh3.s4 ! Renesas SH cc1 (cygnus-2.7.1-950728) arguments: -O -fpeephole
/openbsd/gnu/usr.bin/perl/cpan/Compress-Raw-Bzip2/bzip2-src/
H A Dblocksort.c220 Int32 H, i, j, k, l, r, cc, cc1; in fallbackSort() local
302 cc1 = eclass[fmap[i]]; in fallbackSort()
303 if (cc != cc1) { SET_BH(i); cc = cc1; }; in fallbackSort()
/openbsd/gnu/usr.bin/cc/libgcc/
H A DMakefile19 CC=${.OBJDIR}/../cc/cc -B ${.OBJDIR}/../cc1
21 CC=${.CURDIR}/../cc/cc -B ${.CURDIR}/../cc1
/openbsd/gnu/llvm/llvm/include/llvm/Option/
H A DOptParser.td147 // Helpers for defining marshalling information (typically used in Clang's -cc1
166 // Parent class for marshalled options (typically used in Clang's -cc1 frontend).
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/
H A DREADME.txt108 $ clang -cc1 -help | grep analyze
122 $ clang -cc1 -help | grep cfg

1234