/external/clang/test/Driver/ |
D | opencl.cl | 18 // CHECK-CL: "-cc1" {{.*}} "-cl-std=CL" 19 // CHECK-CL11: "-cc1" {{.*}} "-cl-std=CL1.1" 20 // CHECK-CL12: "-cc1" {{.*}} "-cl-std=CL1.2" 21 // CHECK-CL20: "-cc1" {{.*}} "-cl-std=CL2.0" 22 // CHECK-OPT-DISABLE: "-cc1" {{.*}} "-cl-opt-disable" 23 // CHECK-STRICT-ALIASING: "-cc1" {{.*}} "-cl-strict-aliasing" 24 // CHECK-SINGLE-PRECISION-CONST: "-cc1" {{.*}} "-cl-single-precision-constant" 25 // CHECK-FINITE-MATH-ONLY: "-cc1" {{.*}} "-cl-finite-math-only" 26 // CHECK-KERNEL-ARG-INFO: "-cc1" {{.*}} "-cl-kernel-arg-info" 27 // CHECK-UNSAFE-MATH-OPT: "-cc1" {{.*}} "-cl-unsafe-math-optimizations" [all …]
|
D | darwin-objc-defaults.m | 9 // CHECK-CHECK-I386_OSX10_5: "-cc1" 18 // CHECK-CHECK-I386_OSX10_6: "-cc1" 27 // CHECK-CHECK-I386_IPHONE3_0: "-cc1" 38 // CHECK-CHECK-X86_64_OSX10_4: "-cc1" 46 // CHECK-CHECK-X86_64_OSX10_5: "-cc1" 55 // CHECK-CHECK-X86_64_OSX10_6: "-cc1" 63 // CHECK-CHECK-X86_64_IPHONE3_0: "-cc1" 73 // CHECK-CHECK-ARMV7_OSX10_5: "-cc1" 82 // CHECK-CHECK-ARMV7_OSX10_6: "-cc1" 91 // CHECK-CHECK-ARMV7_IPHONE3_0: "-cc1"
|
D | darwin-objc-options.m | 7 // CHECK-CHECK-X86_64_ABI1: "-cc1" 16 // CHECK-CHECK-I386_ABI2: "-cc1" 27 // CHECK-CHECK-I386_IOS: "-cc1"
|
D | objc-sdk-migration-options.m | 8 // CHECK: "-cc1"
|
D | rewrite-objc.m | 3 // TEST0: clang{{.*}}" "-cc1"
|
D | lit.local.cfg | 6 """*** Do not use 'clang -cc1' in Driver tests. ***""") )
|
/external/clang/docs/ |
D | FAQ.rst | 11 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``.
|
D | PTHInternals.rst | 13 The Clang compiler frontend, ``clang -cc1``, supports three command line 16 To generate PTH files using ``clang -cc1``, use the option ``-emit-pth``: 20 $ clang -cc1 test.h -emit-pth -o test.h.pth 28 $ clang -cc1 -include-pth test.h.pth test.c -o test.s 33 for *any* source files that are used by ``clang -cc1`` to process a 40 $ clang -cc1 -emit-pth test.h -o test.h.pth 43 $ clang -cc1 test.c -o test -token-cache test.h.pth 109 of ``clang -cc1`` can share the same pages in memory from a 152 ``stat`` that ``clang -cc1`` uses to resolve which files are included
|
D | ClangPlugins.rst | 78 Using the cc1 command line 87 Note that those options must reach clang's cc1 process. There are two 90 * Directly call the parsing process by using the `-cc1` option; this 94 * Use clang as usual, but prefix all arguments to the cc1 process with 120 through as an argument to `-load` on the cc1 command line. If the plugin
|
/external/clang/examples/PrintFunctionNames/ |
D | README.txt | 9 $ 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…
|
/external/v8/src/ |
D | uri.cc | 259 void EncodePair(uc16 cc1, uc16 cc2, List<uint8_t>* buffer) { in EncodePair() argument 262 unibrow::Utf8::Encode(s, unibrow::Utf16::CombineSurrogatePair(cc1, cc2), in EncodePair() 282 uc16 cc1 = uri_content.Get(k); in Encode() local 283 if (unibrow::Utf16::IsLeadSurrogate(cc1)) { in Encode() 288 EncodePair(cc1, cc2, &buffer); in Encode() 292 } else if (!unibrow::Utf16::IsTrailSurrogate(cc1)) { in Encode() 293 if (IsUnescapePredicateInUriComponent(cc1) || in Encode() 294 (is_uri && IsUriSeparator(cc1))) { in Encode() 295 buffer.Add(cc1); in Encode() 297 EncodeSingle(cc1, &buffer); in Encode()
|
/external/perfetto/src/ftrace_reader/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/tracer_pkt/tracer_pkt_event/ |
D | format | 10 field:uint32_t cc1; offset:12; size:4; signed:0; 14 print fmt: "CC - 0x%08x:0x%08x:0x%08x, ID - %d", REC->cc1, REC->cc2, REC->cc3, REC->id
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_cc.c | 136 cc->cc1.stencil_ref = _mesa_get_stencil_ref(ctx, 0); in upload_cc_unit() 137 cc->cc1.stencil_write_mask = ctx->Stencil.WriteMask[0]; in upload_cc_unit() 138 cc->cc1.stencil_test_mask = ctx->Stencil.ValueMask[0]; in upload_cc_unit() 150 cc->cc1.bf_stencil_ref = _mesa_get_stencil_ref(ctx, back); in upload_cc_unit()
|
D | brw_structs.h | 241 } cc1; member 309 } cc1; member
|
/external/llvm/test/tools/dsymutil/X86/ |
D | mismatch.m | 8 clang -cc1 -emit-obj -fmodules -fmodule-map-file=modules.modulemap \ 12 clang -cc1 -emit-obj -fmodules -fmodule-map-file=modules.modulemap \
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | bug-vopc-commute.ll | 24 %cc1 = icmp eq i32 %d1.i, 0 25 br i1 %cc1, label %ENDIF59, label %IF60
|
/external/strace/tests-m32/ |
D | ioctl_v4l2.c | 38 # define cc1(arg) ((unsigned int) (unsigned char) ((unsigned int) (arg) >> 16)) macro 48 # define cc1(arg) ((unsigned int) (unsigned char) ((unsigned int) (arg) >> 8)) macro 185 cc0(magic), cc1(magic), cc2(magic), cc3(magic), in dprint_ioctl_v4l2() 203 cc0(magic), cc1(magic), cc2(magic), cc3(magic)); in dprint_ioctl_v4l2() 264 cc0(magic), cc1(magic), cc2(magic), cc3(magic), in dprint_ioctl_v4l2() 313 cc0(magic), cc1(magic), cc2(magic), cc3(magic) in dprint_ioctl_v4l2() 893 cc1(p_v4l2_frmivalenum->pixel_format), in main()
|
/external/strace/tests-mx32/ |
D | ioctl_v4l2.c | 38 # define cc1(arg) ((unsigned int) (unsigned char) ((unsigned int) (arg) >> 16)) macro 48 # define cc1(arg) ((unsigned int) (unsigned char) ((unsigned int) (arg) >> 8)) macro 185 cc0(magic), cc1(magic), cc2(magic), cc3(magic), in dprint_ioctl_v4l2() 203 cc0(magic), cc1(magic), cc2(magic), cc3(magic)); in dprint_ioctl_v4l2() 264 cc0(magic), cc1(magic), cc2(magic), cc3(magic), in dprint_ioctl_v4l2() 313 cc0(magic), cc1(magic), cc2(magic), cc3(magic) in dprint_ioctl_v4l2() 893 cc1(p_v4l2_frmivalenum->pixel_format), in main()
|
/external/strace/tests/ |
D | ioctl_v4l2.c | 38 # define cc1(arg) ((unsigned int) (unsigned char) ((unsigned int) (arg) >> 16)) macro 48 # define cc1(arg) ((unsigned int) (unsigned char) ((unsigned int) (arg) >> 8)) macro 185 cc0(magic), cc1(magic), cc2(magic), cc3(magic), in dprint_ioctl_v4l2() 203 cc0(magic), cc1(magic), cc2(magic), cc3(magic)); in dprint_ioctl_v4l2() 264 cc0(magic), cc1(magic), cc2(magic), cc3(magic), in dprint_ioctl_v4l2() 313 cc0(magic), cc1(magic), cc2(magic), cc3(magic) in dprint_ioctl_v4l2() 893 cc1(p_v4l2_frmivalenum->pixel_format), in main()
|
/external/libvpx/libvpx/vpx_dsp/ |
D | ssim.c | 66 static const int64_t cc1 = 26634; // (64^2*(.01*255)^2 variable 80 c1 = (cc1 * count * count) >> 12; in similarity() 220 const int64_t c1 = (cc1 * n * n) >> 12; in ssimv_similarity() 251 const int64_t c1 = (cc1 * n * n) >> 12; in ssimv_similarity2()
|
/external/llvm/test/CodeGen/ARM/ |
D | ifcvt-iter-indbr.ll | 42 %cc1 = icmp eq i32 %a, 21 43 br i1 %cc1, label %cc1t, label %cc1f
|
/external/clang/test/Driver/Inputs/ |
D | cc1-response.txt | 3 -cc1
|
/external/clang/utils/perf-training/ |
D | perf-helper.py | 71 if opts.cc1: 141 def cc1(args): function 399 'cc1' : cc1,
|
/external/iproute2/lib/ |
D | utils.c | 1113 ssize_t cc1; in getcmdline() local 1115 cc1 = getline(&line1, &len1, in); in getcmdline() 1116 if (cc1 < 0) { in getcmdline() 1118 return cc1; in getcmdline() 1135 cc += cc1 - 2; in getcmdline()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/strftime/ |
D | coverage.txt | 6 cc1: warnings being treated as errors
|