Home
last modified time | relevance | path

Searched refs:impl (Results 1 – 25 of 3864) sorted by relevance

12345678910>>...155

/external/grpc-grpc/src/core/tsi/alts/frame_protector/
Dalts_frame_protector.cc60 static tsi_result seal(alts_frame_protector* impl) { in seal() argument
64 impl->seal_crypter, impl->in_place_protect_buffer, in seal()
65 impl->max_protected_frame_size, impl->in_place_protect_bytes_buffered, in seal()
67 impl->in_place_protect_bytes_buffered = output_size; in seal()
76 static size_t max_encrypted_payload_bytes(alts_frame_protector* impl) { in max_encrypted_payload_bytes() argument
77 return impl->max_protected_frame_size - kFrameHeaderSize; in max_encrypted_payload_bytes()
90 alts_frame_protector* impl = reinterpret_cast<alts_frame_protector*>(self); in alts_protect_flush() local
95 if (impl->in_place_protect_bytes_buffered == 0) { in alts_protect_flush()
105 if (alts_is_frame_writer_done(impl->writer)) { in alts_protect_flush()
106 tsi_result result = seal(impl); in alts_protect_flush()
[all …]
/external/rust/crates/grpcio-sys/grpc/src/core/tsi/alts/frame_protector/
Dalts_frame_protector.cc60 static tsi_result seal(alts_frame_protector* impl) { in seal() argument
64 impl->seal_crypter, impl->in_place_protect_buffer, in seal()
65 impl->max_protected_frame_size, impl->in_place_protect_bytes_buffered, in seal()
67 impl->in_place_protect_bytes_buffered = output_size; in seal()
76 static size_t max_encrypted_payload_bytes(alts_frame_protector* impl) { in max_encrypted_payload_bytes() argument
77 return impl->max_protected_frame_size - kFrameHeaderSize; in max_encrypted_payload_bytes()
90 alts_frame_protector* impl = reinterpret_cast<alts_frame_protector*>(self); in alts_protect_flush() local
95 if (impl->in_place_protect_bytes_buffered == 0) { in alts_protect_flush()
105 if (alts_is_frame_writer_done(impl->writer)) { in alts_protect_flush()
106 tsi_result result = seal(impl); in alts_protect_flush()
[all …]
/external/tensorflow/tensorflow/cc/framework/
Dscope.cc27 Scope::Scope(Impl* impl) : impl_(impl) {} in Scope() argument
29 Scope::Scope(const Scope& other) : impl_(new Impl(*other.impl())) {} in Scope()
84 : graph_(other.impl()->graph_), in Impl()
85 status_(other.impl()->status_), in Impl()
86 name_map_(copy_names ? other.impl()->name_map_ in Impl()
88 refiner_(other.impl()->refiner_), in Impl()
90 control_deps_(other.impl()->control_deps_), in Impl()
93 exit_on_error_(other.impl()->exit_on_error_), in Impl()
94 kernel_label_(other.impl()->kernel_label_), in Impl()
95 device_(other.impl()->device_), in Impl()
[all …]
/external/parameter-framework/asio-1.10.6/include/asio/
Dstream_socket_service.hpp64 void construct(implementation_type& impl) in construct() argument
66 service_impl_.construct(impl); in construct()
70 void move_construct(implementation_type& impl, in move_construct() argument
73 service_impl_.move_construct(impl, other_impl); in move_construct()
77 void move_assign(implementation_type& impl, in move_assign() argument
81 service_impl_.move_assign(impl, other_service.service_impl_, other_impl); in move_assign()
87 void converting_move_construct(implementation_type& impl, in converting_move_construct() argument
94 impl, other_impl); in converting_move_construct()
98 void destroy(implementation_type& impl) in destroy() argument
100 service_impl_.destroy(impl); in destroy()
[all …]
Dsocket_acceptor_service.hpp63 void construct(implementation_type& impl) in construct() argument
65 service_impl_.construct(impl); in construct()
69 void move_construct(implementation_type& impl, in move_construct() argument
72 service_impl_.move_construct(impl, other_impl); in move_construct()
76 void move_assign(implementation_type& impl, in move_assign() argument
80 service_impl_.move_assign(impl, other_service.service_impl_, other_impl); in move_assign()
86 void converting_move_construct(implementation_type& impl, in converting_move_construct() argument
93 impl, other_impl); in converting_move_construct()
97 void destroy(implementation_type& impl) in destroy() argument
99 service_impl_.destroy(impl); in destroy()
[all …]
/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dreactive_socket_service_base.hpp66 ASIO_DECL void construct(base_implementation_type& impl);
69 ASIO_DECL void base_move_construct(base_implementation_type& impl,
73 ASIO_DECL void base_move_assign(base_implementation_type& impl,
78 ASIO_DECL void destroy(base_implementation_type& impl);
81 bool is_open(const base_implementation_type& impl) const in is_open()
83 return impl.socket_ != invalid_socket; in is_open()
88 base_implementation_type& impl, asio::error_code& ec);
91 native_handle_type native_handle(base_implementation_type& impl) in native_handle() argument
93 return impl.socket_; in native_handle()
98 base_implementation_type& impl, asio::error_code& ec);
[all …]
Dreactive_socket_service.hpp77 void move_construct(implementation_type& impl, in move_construct() argument
80 this->base_move_construct(impl, other_impl); in move_construct()
82 impl.protocol_ = other_impl.protocol_; in move_construct()
87 void move_assign(implementation_type& impl, in move_assign() argument
91 this->base_move_assign(impl, other_service, other_impl); in move_assign()
93 impl.protocol_ = other_impl.protocol_; in move_assign()
99 void converting_move_construct(implementation_type& impl, in converting_move_construct() argument
103 this->base_move_construct(impl, other_impl); in converting_move_construct()
105 impl.protocol_ = protocol_type(other_impl.protocol_); in converting_move_construct()
110 asio::error_code open(implementation_type& impl, in open() argument
[all …]
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
Dreactive_socket_service_base.ipp37 reactive_socket_service_base::base_implementation_type& impl)
39 impl.socket_ = invalid_socket;
40 impl.state_ = 0;
44 reactive_socket_service_base::base_implementation_type& impl,
47 impl.socket_ = other_impl.socket_;
50 impl.state_ = other_impl.state_;
53 reactor_.move_descriptor(impl.socket_,
54 impl.reactor_data_, other_impl.reactor_data_);
58 reactive_socket_service_base::base_implementation_type& impl,
62 destroy(impl);
[all …]
/external/icu/icu4j/
Dcoverage-exclusion.txt29 com/ibm/icu/impl/Assert#<init>:()V
30 com/ibm/icu/impl/Assert#fail:(Ljava/lang/Exception;)V
31 com/ibm/icu/impl/BMPSet#<init>:(Lcom/ibm/icu/impl/BMPSet;[II)V
32 com/ibm/icu/impl/CacheValue$Strength#valueOf:(Ljava/lang/String;)Lcom/ibm/icu/impl/CacheValue$Stren…
33 com/ibm/icu/impl/CacheValue$Strength#values:()[Lcom/ibm/icu/impl/CacheValue$Strength;
34 com/ibm/icu/impl/CalendarUtil#<init>:()V
35 com/ibm/icu/impl/CaseMap#<init>:()V
36 com/ibm/icu/impl/CaseMap$GreekUpper#<init>:()V
37 com/ibm/icu/impl/CaseMapImpl#<init>:()V
38 com/ibm/icu/impl/CaseMapImpl$GreekUpper#<init>:()V
[all …]
/external/google-fruit/include/fruit/impl/
Dcomponent.defn.h30 namespace impl {
53 (void)typename fruit::impl::meta::CheckIfError<Comp>::type(); in Component()
55 using Op = typename fruit::impl::meta::OpForComponent<Bindings...>::template ConvertTo<Comp>; in Component()
56 (void)typename fruit::impl::meta::CheckIfError<Op>::type(); in Component()
59 (void)typename fruit::impl::meta::CheckIfError< in Component()
60 fruit::impl::meta::Eval<fruit::impl::meta::CheckNoLoopInDeps(typename Op::Result)>>::type(); in Component()
64 fruit::impl::FixedSizeVector<fruit::impl::ComponentStorageEntry> entries(num_entries); in Component()
77 storage = fruit::impl::ComponentStorage(std::move(entries)); in Component()
86 inline PartialComponent<fruit::impl::Bind<AnnotatedI, AnnotatedC>, Bindings...> PartialComponent<Bi… in bind()
87 using Op = OpFor<fruit::impl::Bind<AnnotatedI, AnnotatedC>>; in bind()
[all …]
Dinjector.defn.h32 fruit::impl::MemoryPool memory_pool; in Injector()
33 …using exposed_types_t = std::vector<fruit::impl::TypeId, fruit::impl::ArenaAllocator<fruit::impl::… in Injector()
35 exposed_types_t(std::initializer_list<fruit::impl::TypeId>{fruit::impl::getTypeId<P>()...}, in Injector()
36 fruit::impl::ArenaAllocator<fruit::impl::TypeId>(memory_pool)); in Injector()
37 storage = std::unique_ptr<fruit::impl::InjectorStorage>( in Injector()
38 new fruit::impl::InjectorStorage(std::move(component.storage), exposed_types, memory_pool)); in Injector()
41 namespace impl {
98 fruit::impl::MemoryPool memory_pool; in Injector()
99 storage = std::unique_ptr<fruit::impl::InjectorStorage>(new fruit::impl::InjectorStorage( in Injector()
103 … fruit::impl::meta::ConstructComponentImpl(fruit::impl::meta::Type<NormalizedComponentParams>...); in Injector()
[all …]
/external/openscreen/platform/
DBUILD.gn80 "impl/logging.h",
81 "impl/network_interface.cc",
82 "impl/network_interface.h",
83 "impl/socket_handle.h",
84 "impl/socket_handle_waiter.cc",
85 "impl/socket_handle_waiter.h",
86 "impl/socket_state.h",
87 "impl/stream_socket.h",
88 "impl/task_runner.cc",
89 "impl/task_runner.h",
[all …]
/external/grpc-grpc/include/grpc/
Dmodule.modulemap16 header "impl/codegen/atm.h"
17 header "impl/codegen/fork.h"
18 header "impl/codegen/gpr_slice.h"
19 header "impl/codegen/gpr_types.h"
20 header "impl/codegen/log.h"
21 header "impl/codegen/port_platform.h"
22 header "impl/codegen/sync.h"
23 header "impl/codegen/sync_generic.h"
24 header "impl/codegen/byte_buffer.h"
25 header "impl/codegen/byte_buffer_reader.h"
[all …]
/external/pdfium/testing/
Dfont_renamer.cpp14 return static_cast<FontRenamer*>(info)->impl(); in GetImpl()
18 FPDF_SYSFONTINFO* impl = GetImpl(info); in ReleaseImpl() local
19 impl->Release(impl); in ReleaseImpl()
23 FPDF_SYSFONTINFO* impl = GetImpl(info); in EnumFontsImpl() local
24 impl->EnumFonts(impl, mapper); in EnumFontsImpl()
35 FPDF_SYSFONTINFO* impl = GetImpl(info); in MapFontImpl() local
36 return impl->MapFont(impl, weight, italic, charset, pitch_family, in MapFontImpl()
42 FPDF_SYSFONTINFO* impl = GetImpl(info); in GetFontImpl() local
44 return impl->GetFont(impl, renamed_face.c_str()); in GetFontImpl()
52 FPDF_SYSFONTINFO* impl = GetImpl(info); in GetFontDataImpl() local
[all …]
/external/rust/crates/grpcio-sys/grpc/src/core/tsi/
Dfake_transport_security.cc261 tsi_fake_frame_protector* impl = in fake_protector_protect() local
264 tsi_fake_frame* frame = &impl->protect_frame; in fake_protector_protect()
291 store32_little_endian(static_cast<uint32_t>(impl->max_frame_size), in fake_protector_protect()
322 tsi_fake_frame_protector* impl = in fake_protector_protect_flush() local
324 tsi_fake_frame* frame = &impl->protect_frame; in fake_protector_protect_flush()
345 tsi_fake_frame_protector* impl = in fake_protector_unprotect() local
347 tsi_fake_frame* frame = &impl->unprotect_frame; in fake_protector_unprotect()
391 tsi_fake_frame_protector* impl = in fake_protector_destroy() local
393 tsi_fake_frame_destruct(&impl->protect_frame); in fake_protector_destroy()
394 tsi_fake_frame_destruct(&impl->unprotect_frame); in fake_protector_destroy()
[all …]
/external/grpc-grpc/src/csharp/Grpc.HealthCheck.Tests/
DHealthServiceImplTest.cs37 var impl = new HealthServiceImpl(); in SetStatus()
38 impl.SetStatus("", HealthCheckResponse.Types.ServingStatus.Serving); in SetStatus()
39 … Assert.AreEqual(HealthCheckResponse.Types.ServingStatus.Serving, GetStatusHelper(impl, "")); in SetStatus()
41 impl.SetStatus("", HealthCheckResponse.Types.ServingStatus.NotServing); in SetStatus()
42 … Assert.AreEqual(HealthCheckResponse.Types.ServingStatus.NotServing, GetStatusHelper(impl, "")); in SetStatus()
44 impl.SetStatus("", HealthCheckResponse.Types.ServingStatus.Unknown); in SetStatus()
45 … Assert.AreEqual(HealthCheckResponse.Types.ServingStatus.Unknown, GetStatusHelper(impl, "")); in SetStatus()
47impl.SetStatus("grpc.test.TestService", HealthCheckResponse.Types.ServingStatus.Serving); in SetStatus()
48 …Assert.AreEqual(HealthCheckResponse.Types.ServingStatus.Serving, GetStatusHelper(impl, "grpc.test.… in SetStatus()
54 var impl = new HealthServiceImpl(); in ClearStatus()
[all …]
/external/grpc-grpc/src/core/tsi/
Dfake_transport_security.cc265 tsi_fake_frame_protector* impl = in fake_protector_protect() local
268 tsi_fake_frame* frame = &impl->protect_frame; in fake_protector_protect()
295 store32_little_endian(static_cast<uint32_t>(impl->max_frame_size), in fake_protector_protect()
326 tsi_fake_frame_protector* impl = in fake_protector_protect_flush() local
328 tsi_fake_frame* frame = &impl->protect_frame; in fake_protector_protect_flush()
349 tsi_fake_frame_protector* impl = in fake_protector_unprotect() local
351 tsi_fake_frame* frame = &impl->unprotect_frame; in fake_protector_unprotect()
395 tsi_fake_frame_protector* impl = in fake_protector_destroy() local
397 tsi_fake_frame_destruct(&impl->protect_frame); in fake_protector_destroy()
398 tsi_fake_frame_destruct(&impl->unprotect_frame); in fake_protector_destroy()
[all …]
Dssl_transport_security.cc824 tsi_ssl_frame_protector* impl = in ssl_protector_protect() local
831 int pending_in_ssl = static_cast<int>(BIO_pending(impl->network_io)); in ssl_protector_protect()
835 read_from_ssl = BIO_read(impl->network_io, protected_output_frames, in ssl_protector_protect()
847 available = impl->buffer_size - impl->buffer_offset; in ssl_protector_protect()
850 memcpy(impl->buffer + impl->buffer_offset, unprotected_bytes, in ssl_protector_protect()
852 impl->buffer_offset += *unprotected_bytes_size; in ssl_protector_protect()
858 memcpy(impl->buffer + impl->buffer_offset, unprotected_bytes, available); in ssl_protector_protect()
859 result = do_ssl_write(impl->ssl, impl->buffer, impl->buffer_size); in ssl_protector_protect()
863 read_from_ssl = BIO_read(impl->network_io, protected_output_frames, in ssl_protector_protect()
871 impl->buffer_offset = 0; in ssl_protector_protect()
[all …]
/external/golang-protobuf/internal/impl/
Dlegacy_file_test.go63 got: impl.LegacyLoadEnumDesc(reflect.TypeOf(proto2_20160225.SiblingEnum(0))),
66 got: impl.LegacyLoadEnumDesc(reflect.TypeOf(proto2_20160225.Message_ChildEnum(0))),
69 got: impl.LegacyLoadMessageDesc(reflect.TypeOf(new(proto2_20160225.SiblingMessage))),
72 got: impl.LegacyLoadMessageDesc(reflect.TypeOf(new(proto2_20160225.Message_ChildMessage))),
75 got: impl.LegacyLoadMessageDesc(reflect.TypeOf(new(proto2_20160225.Message))),
78 got: impl.LegacyLoadMessageDesc(reflect.TypeOf(new(proto2_20160225.Message_NamedGroup))),
81 got: impl.LegacyLoadMessageDesc(reflect.TypeOf(new(proto2_20160225.Message_OptionalGroup))),
84 got: impl.LegacyLoadMessageDesc(reflect.TypeOf(new(proto2_20160225.Message_RequiredGroup))),
87 got: impl.LegacyLoadMessageDesc(reflect.TypeOf(new(proto2_20160225.Message_RepeatedGroup))),
90 got: impl.LegacyLoadMessageDesc(reflect.TypeOf(new(proto2_20160225.Message_OneofGroup))),
[all …]
/external/clang/test/Analysis/inlining/
Dcontainers.cpp30 clang_analyzer_eval(set.begin().impl == set.end().impl); in test()
51 clang_analyzer_eval(w1.begin().impl.impl == w1.begin().impl.impl); in testWrappers()
58 clang_analyzer_eval(w2.start().impl == w2.start().impl); in testWrappers()
65 clang_analyzer_eval(w3.start().impl == w3.start().impl); in testWrappers()
72 clang_analyzer_eval(w4.start().impl == w4.start().impl); in testWrappers()
114 int *impl; member
116 iterator(int *p) : impl(p) {} in iterator()
171 MySet impl; member in BeginOnlySet
174 MySet::iterator impl; member
177 IterImpl(MySet::iterator i) : impl(i) { in IterImpl()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DNorm2AllModes.java11 package android.icu.impl;
94 impl=ni; in Normalizer2WithImpl()
104 normalize(src, new Normalizer2Impl.ReorderingBuffer(impl, dest, src.length())); in normalize()
113 new Normalizer2Impl.ReorderingBuffer(impl, dest, src.length()); in normalize()
136 new Normalizer2Impl.ReorderingBuffer(impl, first, first.length()+second.length())); in normalizeSecondAndAppend()
144 return impl.getDecomposition(c); in getDecomposition()
148 return impl.getRawDecomposition(c); in getRawDecomposition()
152 return impl.composePair(a, b); in composePair()
157 return impl.getCC(impl.getNorm16(c)); in getCombiningClass()
172 public final Normalizer2Impl impl; field in Norm2AllModes.Normalizer2WithImpl
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DNorm2AllModes.java10 package com.ibm.icu.impl;
84 impl=ni; in Normalizer2WithImpl()
94 normalize(src, new Normalizer2Impl.ReorderingBuffer(impl, dest, src.length())); in normalize()
103 new Normalizer2Impl.ReorderingBuffer(impl, dest, src.length()); in normalize()
126 new Normalizer2Impl.ReorderingBuffer(impl, first, first.length()+second.length())); in normalizeSecondAndAppend()
134 return impl.getDecomposition(c); in getDecomposition()
138 return impl.getRawDecomposition(c); in getRawDecomposition()
142 return impl.composePair(a, b); in composePair()
147 return impl.getCC(impl.getNorm16(c)); in getCombiningClass()
162 public final Normalizer2Impl impl; field in Norm2AllModes.Normalizer2WithImpl
[all …]
/external/mesa3d/src/compiler/nir/
Dnir_dominance.c37 init_block(nir_block *block, nir_function_impl *impl) in init_block() argument
39 if (block == nir_start_block(impl)) in init_block()
128 calc_dom_children(nir_function_impl* impl) in calc_dom_children() argument
130 void *mem_ctx = ralloc_parent(impl); in calc_dom_children()
132 nir_foreach_block_unstructured(block, impl) { in calc_dom_children()
137 nir_foreach_block_unstructured(block, impl) { in calc_dom_children()
143 nir_foreach_block_unstructured(block, impl) { in calc_dom_children()
166 nir_calc_dominance_impl(nir_function_impl *impl) in nir_calc_dominance_impl() argument
168 if (impl->valid_metadata & nir_metadata_dominance) in nir_calc_dominance_impl()
171 nir_metadata_require(impl, nir_metadata_block_index); in nir_calc_dominance_impl()
[all …]
Dnir_metadata.c34 nir_metadata_require(nir_function_impl *impl, nir_metadata required, ...) in nir_metadata_require() argument
36 #define NEEDS_UPDATE(X) ((required & ~impl->valid_metadata) & (X)) in nir_metadata_require()
39 nir_index_blocks(impl); in nir_metadata_require()
41 nir_index_instrs(impl); in nir_metadata_require()
43 nir_calc_dominance_impl(impl); in nir_metadata_require()
45 nir_live_ssa_defs_impl(impl); in nir_metadata_require()
49 nir_loop_analyze_impl(impl, va_arg(ap, nir_variable_mode)); in nir_metadata_require()
55 impl->valid_metadata |= required; in nir_metadata_require()
59 nir_metadata_preserve(nir_function_impl *impl, nir_metadata preserved) in nir_metadata_preserve() argument
61 impl->valid_metadata &= preserved; in nir_metadata_preserve()
[all …]
/external/google-fruit/include/fruit/
Dinjector.h170 fruit::impl::RemoveAnnotations<T> get();
203 const std::vector<fruit::impl::RemoveAnnotations<T>*>& getMultibindings();
223 using Check1 = typename fruit::impl::meta::CheckIfError<fruit::impl::meta::Eval<
224 … fruit::impl::meta::CheckNoRequiredTypesInInjectorArguments(fruit::impl::meta::Type<P>...)>>::type;
228 …using Comp = fruit::impl::meta::Eval<fruit::impl::meta::ConstructComponentImpl(fruit::impl::meta::…
230 using Check2 = typename fruit::impl::meta::CheckIfError<Comp>::type;
231 using VoidType = fruit::impl::meta::Type<void>;
234 …using Check3 = typename fruit::impl::meta::CheckIfError<fruit::impl::meta::Eval<fruit::impl::meta:…
235 fruit::impl::meta::Not(fruit::impl::meta::IsEmptySet(typename Comp::RsSuperset)),
236 fruit::impl::meta::ConstructErrorWithArgVector(fruit::impl::InjectorWithRequirementsErrorTag,
[all …]

12345678910>>...155