Home
last modified time | relevance | path

Searched refs:oc (Results 1 – 25 of 415) sorted by relevance

12345678910>>...17

/external/deqp-deps/glslang/glslang/MachineIndependent/
Dglslang.y296 $$ = parseContext.handleVariable($1.loc, $1.symbol, $1.string);
305 parseContext.explicitInt32Check($1.loc, "32-bit signed literal");
306 $$ = parseContext.intermediate.addConstantUnion($1.i, $1.loc, true);
309 parseContext.explicitInt32Check($1.loc, "32-bit signed literal");
310 $$ = parseContext.intermediate.addConstantUnion($1.u, $1.loc, true);
313 $$ = parseContext.intermediate.addConstantUnion($1.i, $1.loc, true);
316 parseContext.fullIntegerCheck($1.loc, "unsigned literal");
317 $$ = parseContext.intermediate.addConstantUnion($1.u, $1.loc, true);
320 parseContext.int64Check($1.loc, "64-bit integer literal");
321 $$ = parseContext.intermediate.addConstantUnion($1.i64, $1.loc, true);
[all …]
/external/clang/test/CXX/expr/expr.mptr.oper/
Dp5.cpp19 const X0 &oc, in test_object_cvquals() argument
47 …(oc.*pm)(); // expected-error-re{{call to pointer to member function of type 'void (){{( __attribu… in test_object_cvquals()
48 (oc.*pmc)(); in test_object_cvquals()
49 …(oc.*pmv)(); // expected-error-re{{call to pointer to member function of type 'void (){{( __attrib… in test_object_cvquals()
50 (oc.*pmcv)(); in test_object_cvquals()
/external/aac/libDRCdec/src/
DFDK_drcDecLib.cpp836 int frameSize, n, ic, oc; in FDK_drcDec_ApplyDownmix() local
866 for (oc = 0; oc < targetChCnt; oc++) { in FDK_drcDec_ApplyDownmix()
867 tmp_out[oc] = (FIXP_DBL)0; in FDK_drcDec_ApplyDownmix()
869 tmp_out[oc] += in FDK_drcDec_ApplyDownmix()
872 [reverseOutChannelMap[oc]]) in FDK_drcDec_ApplyDownmix()
876 for (oc = 0; oc < targetChCnt; oc++) { in FDK_drcDec_ApplyDownmix()
877 if (oc >= baseChCnt) break; in FDK_drcDec_ApplyDownmix()
878 audioChannels[oc][n] = tmp_out[oc]; in FDK_drcDec_ApplyDownmix()
882 for (oc = targetChCnt; oc < baseChCnt; oc++) { in FDK_drcDec_ApplyDownmix()
883 FDKmemset(audioChannels[oc], 0, frameSize * sizeof(FIXP_DBL)); in FDK_drcDec_ApplyDownmix()
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
Drx-subscriber.hpp284 auto make_subscriber(const OnNext& on, const OnCompleted& oc) in make_subscriber() argument
290 …tateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>(on, detail::OnErrorEmpty(), oc)); in make_subscriber()
293 auto make_subscriber(const OnNext& on, const OnError& oe, const OnCompleted& oc) in make_subscriber() argument
300 … observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>(on, oe, oc)); in make_subscriber()
361 auto make_subscriber(const composite_subscription& cs, const OnNext& on, const OnCompleted& oc) in make_subscriber() argument
367 …tateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>(on, detail::OnErrorEmpty(), oc)); in make_subscriber()
370 …riber(const composite_subscription& cs, const OnNext& on, const OnError& oe, const OnCompleted& oc) in make_subscriber() argument
377 … observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>(on, oe, oc)); in make_subscriber()
478 auto make_subscriber(trace_id id, const OnNext& on, const OnCompleted& oc) in make_subscriber() argument
484 …tateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>(on, detail::OnErrorEmpty(), oc)); in make_subscriber()
[all …]
Drx-observer.hpp99 explicit OnCompletedForward(oncompleted_t oc) : oncompleted(std::move(oc)) {} in OnCompletedForward()
514 auto make_observer(OnNext on, OnCompleted oc) in make_observer() argument
520 std::move(on), DefaultOnError(), std::move(oc)); in make_observer()
523 auto make_observer(OnNext on, OnError oe, OnCompleted oc) in make_observer() argument
530 std::move(on), std::move(oe), std::move(oc)); in make_observer()
564 auto make_observer(State os, OnNext on, OnCompleted oc) in make_observer() argument
570 std::move(os), std::move(on), std::move(oc)); in make_observer()
573 auto make_observer(State os, OnNext on, OnError oe, OnCompleted oc) in make_observer() argument
580 std::move(os), std::move(on), std::move(oe), std::move(oc)); in make_observer()
608 auto make_observer_dynamic(OnNext&& on, OnCompleted&& oc) in make_observer_dynamic() argument
[all …]
/external/tensorflow/tensorflow/lite/kernels/internal/reference/
Ddepthwiseconv_float.h61 const int oc = m + ic * depth_multiplier; in DepthwiseConv() local
77 filter_shape, 0, filter_y, filter_x, oc)]; in DepthwiseConv()
84 bias_value = bias_data[oc]; in DepthwiseConv()
86 output_data[Offset(output_shape, b, out_y, out_x, oc)] = in DepthwiseConv()
Ddepthwiseconv_uint8.h135 const int oc = m + ic * depth_multiplier; in Run() local
152 filter_shape, 0, filter_y, filter_x, oc)]; in Run()
159 acc += bias_data[oc]; in Run()
166 output_data[Offset(output_shape, b, out_y, out_x, oc)] = in Run()
/external/tensorflow/tensorflow/lite/experimental/micro/kernels/portable_optimized/
Ddepthwise_conv.cc151 for (int oc = 0; oc < output_depth; ++oc) { in DepthwiseConvOptimizedForFilterWidthEight() local
153 filter_data + Offset(filter_shape, 0, filter_y, filter_x, oc); in DepthwiseConvOptimizedForFilterWidthEight()
156 Offset(reshaped_filter_shape, 0, oc, filter_y, filter_x); in DepthwiseConvOptimizedForFilterWidthEight()
169 const int oc = m + ic * depth_multiplier; in DepthwiseConvOptimizedForFilterWidthEight() local
203 reshaped_filter_data + Offset(reshaped_filter_shape, 0, oc, in DepthwiseConvOptimizedForFilterWidthEight()
243 Offset(filter_shape, 0, filter_y, filter_x_start, oc); in DepthwiseConvOptimizedForFilterWidthEight()
256 acc += bias_data[oc]; in DepthwiseConvOptimizedForFilterWidthEight()
264 output_data[Offset(output_shape, b, out_y, out_x, oc)] = in DepthwiseConvOptimizedForFilterWidthEight()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/SystemZ/
Dor-08.ll8 ; CHECK: oc 1(1,%r2), 0(%r2)
21 ; CHECK: oc 2(2,%r2), 0(%r2)
34 ; CHECK: oc 4(4,%r2), 0(%r2)
47 ; CHECK: oc 8(8,%r2), 0(%r2)
/external/llvm/test/CodeGen/SystemZ/
Dor-08.ll8 ; CHECK: oc 1(1,%r2), 0(%r2)
21 ; CHECK: oc 2(2,%r2), 0(%r2)
34 ; CHECK: oc 4(4,%r2), 0(%r2)
47 ; CHECK: oc 8(8,%r2), 0(%r2)
/external/llvm/test/Bindings/OCaml/
Ddiagnostic_handler.ml27 begin let oc = open_out fn in
28 output_string oc "not a bitcode file\n";
29 close_out oc
Dbitreader.ml64 begin let oc = open_out fn in
65 output_string oc "not a bitcode file\n";
66 close_out oc
/external/clang/test/SemaCXX/
DPR9461.cpp11 template<typename aT,typename,typename oc>
15 basic_string(const aT*,const oc&a=int());
/external/swiftshader/third_party/llvm-7.0/llvm/test/Bindings/OCaml/
Ddiagnostic_handler.ml27 begin let oc = open_out fn in
28 output_string oc "not a bitcode file\n";
29 close_out oc
Dbitreader.ml64 begin let oc = open_out fn in
65 output_string oc "not a bitcode file\n";
66 close_out oc
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
Dbitreader.ml57 begin let oc = open_out fn in
58 output_string oc "not a bitcode file\n";
59 close_out oc
/external/tensorflow/tensorflow/python/kernel_tests/
Ddepthtospace_op_test.py254 ow, oh, oc = iw * block_size, ih * block_size, ic // block_size_sq
256 [b, ih, iw, block_size, block_size, oc])
258 tensor = array_ops.reshape(tensor, [b, oh, ow, oc])
262 ow, oh, oc = iw * block_size, ih * block_size, ic // block_size_sq
264 [b, block_size, block_size, oc, ih, iw])
266 tensor = array_ops.reshape(tensor, [b, oc, oh, ow])
Dspacetodepth_op_test.py242 ow, oh, oc = iw // block_size, ih // block_size, ic * block_size_sq
246 tensor = array_ops.reshape(tensor, [b, oh, ow, oc])
251 ow, oh, oc = iw // block_size, ih // block_size, ic * block_size_sq
255 tensor = array_ops.reshape(tensor, [b, oc, oh, ow])
/external/u-boot/arch/arm/dts/
Dstih410-pinctrl.dtsi18 usb-oc-detect = <&pio35 0 ALT1 IN>;
27 usb-oc-detect = <&pio35 2 ALT1 IN>;
/external/skia/src/gpu/ops/
DGrQuadPerEdgeAA.cpp458 Sk4f oc = edges.fC + mask * (outset ? 0.5f : -0.5f); in compute_degenerate_quad() local
464 Sk4f px = (edges.fB * nextCW(oc) - oc * nextCW(edges.fB)) / denom; in compute_degenerate_quad()
465 Sk4f py = (oc * nextCW(edges.fA) - edges.fA * nextCW(oc)) / denom; in compute_degenerate_quad()
473 SkNx_shuffle<3, 3, 0, 0>(oc); in compute_degenerate_quad()
476 SkNx_shuffle<1, 2, 1, 2>(oc); in compute_degenerate_quad()
528 Sk2f ex = (SkNx_shuffle<0, 1>(edges.fB) * SkNx_shuffle<3, 2>(oc) - in compute_degenerate_quad()
529 SkNx_shuffle<0, 1>(oc) * SkNx_shuffle<3, 2>(edges.fB)) / eDenom; in compute_degenerate_quad()
530 Sk2f ey = (SkNx_shuffle<0, 1>(oc) * SkNx_shuffle<3, 2>(edges.fA) - in compute_degenerate_quad()
531 SkNx_shuffle<0, 1>(edges.fA) * SkNx_shuffle<3, 2>(oc)) / eDenom; in compute_degenerate_quad()
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/zstandard/
DZstdRoundtripTest.java48 private void roundtrip(OutputStreamCreator oc) throws IOException { in roundtrip() argument
54 ZstdCompressorOutputStream zos = oc.wrap(os)) { in roundtrip()
/external/deqp-deps/glslang/SPIRV/
Ddoc.h171 void push(OperandClass oc, const char* d, bool opt = false)
173 opClass.push_back(oc);
/external/honggfuzz/examples/apache-httpd/corpus_http2/
De187a54f7c357c377c19360d446e10cb.0000007a.honggfuzz.cov5 Range:e-Match:oc�:`ive
/external/honggfuzz/examples/apache-httpd/corpus_http1/
De187a54f7c357c377c19360d446e10cb.0000007a.honggfuzz.cov5 Range:e-Match:oc�:`ive
Db6f5fc9411036a0a2dc2d36f5a212c2b.0000007a.honggfuzz.cov5 R~`�e:e-Match:oc�:`ive

12345678910>>...17