| /external/pigweed/pw_log/public/pw_log/internal/ |
| D | glog_adapter.h | 40 // Declares a unique GlogStreamingLog class definition with a destructor which 42 #define _PW_LOG_GLOG_DECLARATION_PW_LOG(pw_log_level, unique) \ argument 43 class unique : public ::pw::log::internal::GlogStreamingLog { \ 45 ~unique() { \ 54 // Declares a unique GlogStreamingLog class definition with a destructor which 56 #define _PW_LOG_GLOG_DECLARATION_PW_CRASH(unique) \ argument 57 class unique : public ::pw::log::internal::GlogStreamingLog { \ 59 ~unique() { PW_CRASH("%s", string_builder_.c_str()); } \ 63 #define _PW_LOG_GLOG_DECLARATION_DEBUG(unique) \ argument 64 _PW_LOG_GLOG_DECLARATION_PW_LOG(PW_LOG_LEVEL_DEBUG, unique) [all …]
|
| /external/armnn/src/armnn/layers/ |
| D | LstmParameters.hpp | 16 /// A unique pointer to represent 1D weights tensor with dimensions [num_units]. 18 /// A unique pointer to represent 1D weights tensor with dimensions [num_units]. 20 /// A unique pointer to represent 1D weights tensor with dimensions [num_units]. 22 /// A unique pointer to represent 1D weights tensor with dimensions [num_units]. 28 /// A unique pointer to represent 2D weights tensor with dimensions [input_size, num_units]. 30 /// A unique pointer to represent 2D weights tensor with dimensions [input_size, num_units]. 32 /// A unique pointer to represent 1D weights tensor with dimensions [num_units]. 38 /// A unique pointer to represent 2D weights tensor with dimensions [output_size, num_units]. 40 /// A unique pointer to represent 1D weights tensor with dimensions [output_size]. 46 /// A unique pointer to represent 1D weights tensor with dimensions [num_units]. [all …]
|
| D | QLstmLayer.hpp | 16 …/// A unique pointer to represent 2D weights tensor with dimensions [num_units, inputSize] (QSymmS… 18 …/// A unique pointer to represent 2D weights tensor with dimensions [num_units, inputSize] (QSymmS… 20 …/// A unique pointer to represent 2D weights tensor with dimensions [num_units, inputSize] (QSymmS… 23 …/// A unique pointer to represent 2D weights tensor with dimensions [num_units, outputSize] (QSymm… 25 …/// A unique pointer to represent 2D weights tensor with dimensions [num_units, outputSize] (QSymm… 27 …/// A unique pointer to represent 2D weights tensor with dimensions [num_units, outputSize] (QSymm… 30 /// A unique pointer to represent 1D bias tensor with dimensions [num_units] (int32). 32 /// A unique pointer to represent 1D bias tensor with dimensions [num_units] (int32). 34 /// A unique pointer to represent 1D bias tensor with dimensions [num_units] (int32). 40 …/// A unique pointer to represent 2D weights tensor with dimensions [output_size, num_units] (QSym… [all …]
|
| D | QuantizedLstmLayer.hpp | 16 …/// A unique pointer to represent 2D weights tensor with dimensions [outputSize, inputSize] (QAsym… 18 …/// A unique pointer to represent 2D weights tensor with dimensions [outputSize, inputSize] (QAsym… 20 …/// A unique pointer to represent 2D weights tensor with dimensions [outputSize, inputSize] (QAsym… 22 …/// A unique pointer to represent 2D weights tensor with dimensions [outputSize, inputSize] (QAsym… 25 …/// A unique pointer to represent 2D weights tensor with dimensions [outputSize, outputSize] (QAsy… 27 …/// A unique pointer to represent 2D weights tensor with dimensions [outputSize, outputSize] (QAsy… 29 …/// A unique pointer to represent 2D weights tensor with dimensions [outputSize, outputSize] (QAsy… 31 …/// A unique pointer to represent 2D weights tensor with dimensions [outputSize, outputSize] (QAsy… 34 /// A unique pointer to represent 1D bias tensor with dimensions [outputSize] (int32). 36 /// A unique pointer to represent 1D bias tensor with dimensions [outputSize] (int32). [all …]
|
| /external/sdv/vsomeip/third_party/boost/range/include/boost/range/algorithm/ |
| D | unique.hpp | 24 /// \brief template function unique 26 /// range-based version of the unique std algorithm 31 unique( ForwardRange& rng ) in unique() function 35 pack( std::unique( boost::begin(rng), in unique() 42 unique( const ForwardRange& rng ) in unique() function 46 pack( std::unique( boost::begin(rng), in unique() 52 unique( ForwardRange& rng, BinaryPredicate pred ) in unique() function 56 pack(std::unique(boost::begin(rng), boost::end(rng), pred), in unique() 62 unique( const ForwardRange& rng, BinaryPredicate pred ) in unique() function 66 pack(std::unique(boost::begin(rng), boost::end(rng), pred), in unique() [all …]
|
| /external/sdv/vsomeip/third_party/boost/range/doc/reference/algorithm/ |
| D | unique.qbk | 6 [section:unique unique] 13 unique(ForwardRange& rng); 17 unique(const ForwardRange& rng); 21 unique(ForwardRange& rng, BinaryPredicate pred); 25 unique(const ForwardRange& rng, BinaryPredicate pred); 29 unique(ForwardRange& rng); 33 unique(const ForwardRange& rng); 37 unique(ForwardRange& rng, BinaryPredicate pred); 41 unique(const ForwardRange& rng, BinaryPredicate pred); 46 `unique` removes all but the first element of each sequence of duplicate encountered in `rng`. [all …]
|
| /external/tensorflow/tensorflow/python/ops/ |
| D | candidate_sampling_ops.py | 32 def uniform_candidate_sampler(true_classes, num_true, num_sampled, unique, argument 40 (if `unique=True`) or with replacement (if `unique=False`) from 53 If `unique=True`, then these are post-rejection probabilities and we 62 `unique=True`, `num_sampled` must be less than or equal to `range_max`. 63 unique: A `bool`. Determines whether all sampled classes in a batch are 64 unique. 71 sampled classes, either with possible duplicates (`unique=False`) or all 72 unique (`unique=True`). In either case, `sampled_candidates` is 83 true_classes, num_true, num_sampled, unique, range_max, seed=seed1, 95 def log_uniform_candidate_sampler(true_classes, num_true, num_sampled, unique, argument [all …]
|
| /external/licenseclassifier/stringclassifier/internal/sets/ |
| D | intset_test.go | 21 func checkSameIntSet(t *testing.T, set *IntSet, unique []int) { 23 want := len(unique) 27 t.Errorf("NewIntSet(%v) want length %v, got %v", unique, want, got) 31 for _, s := range unique { 41 sort.Ints(unique) 44 want := unique[i] 70 unique := []int{0, 1, 2} 71 set := NewIntSet(unique...) 72 checkSameIntSet(t, set, unique) 75 nonUnique := append(unique, unique[0]) [all …]
|
| /external/licenseclassifier/internal/sets/ |
| D | stringset_test.go | 21 func checkSameStringSet(t *testing.T, set *StringSet, unique []string) { 23 want := len(unique) 27 t.Errorf("NewStringSet(%v) want length %v, got %v", unique, want, got) 31 for _, s := range unique { 41 sort.Strings(unique) 44 want := unique[i] 61 unique := []string{"a", "b", "c"} 62 set := NewStringSet(unique...) 63 checkSameStringSet(t, set, unique) 66 nonUnique := append(unique, unique[0]) [all …]
|
| /external/sdv/vsomeip/third_party/boost/range/doc/reference/ |
| D | algorithms.qbk | 28 boost:unique(boost::sort(vec)); 30 to first sort the range and then run `unique()` on the sorted range. 32 …unique()` fall into another group of algorithms that return (potentially) narrowed views of the or… 34 Therefore exactly the unique values can be copied by writing 36 boost::copy(boost::unique(boost::sort(vec)), 40 Algorithms like `boost::unique` usually return the range: `[boost::begin(rng), found)`. 46 [[`boost::unique<boost::return_found>(rng)`] [returns a single iterator like `std::unique`]] 47 …[[`boost::unique<boost::return_begin_found>(rng)`] [returns the range `[boost::begin(rng), found)`… 48 …[[`boost::unique<boost::return_begin_next>(rng)`] [returns the range `[boost::begin(rng), boost::n… 49 [[`boost::unique<boost::return_found_end>(rng)`] [returns the range `[found, boost::end(rng))`]] [all …]
|
| /external/sdv/vsomeip/third_party/boost/range/test/algorithm_test/ |
| D | unique.cpp | 11 #include <boost/range/algorithm/unique.hpp> 29 // test the 'unique' algorithm without a predicate 37 // There isn't an iterator return version of boost::unique, so just in test_iter() 39 return std::unique(cont.begin(), cont.end()); in test_iter() 53 result_t result = boost::unique<return_type>(cont); in operator ()() 55 boost::unique<return_type>(boost::make_iterator_range(cont2)); in operator ()() 82 result_t result = boost::unique(cont); in operator ()() 84 boost::unique(boost::make_iterator_range(cont2)); in operator ()() 98 return std::unique(cont.begin(), cont.end()); in reference() 102 // test the 'unique' algorithm with a predicate [all …]
|
| /external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/support/iterators/detail/ |
| D | split_functor_input_policy.hpp | 31 // unique part (unique for each instance of the iterator) and a shared 38 // std::pair<unique, shared>, where 'unique' and 'shared' represent the 41 // Note: the unique part of the functor must have a typedef for result_type 51 class unique; 53 // the unique part of the functor is empty, do not include the functor 57 class unique<Functor, true> // : public detail::default_input_policy class 71 unique() {} in unique() function in boost::spirit::iterator_policies::split_functor_input::unique 72 explicit unique(Functor const&) {} in unique() function in boost::spirit::iterator_policies::split_functor_input::unique 75 void swap(unique&) {} in swap() argument 115 // the unique part of the functor is non-empty [all …]
|
| /external/crosvm/fuse/src/ |
| D | server.rs | 169 in_header.unique, in handle_message() 225 in_header.unique, in handle_message() 249 reply_ok(Some(out), None, in_header.unique, w) in lookup() 251 Err(e) => reply_error(e, in_header.unique, w), in lookup() 289 reply_ok(Some(out), None, in_header.unique, w) in getattr() 291 Err(e) => reply_error(e, in_header.unique, w), in getattr() 322 reply_ok(Some(out), None, in_header.unique, w) in setattr() 324 Err(e) => reply_error(e, in_header.unique, w), in setattr() 335 reply_ok(None::<u8>, Some(&linkname), in_header.unique, w) in readlink() 337 Err(e) => reply_error(e, in_header.unique, w), in readlink() [all …]
|
| /external/perfetto/src/trace_processor/perfetto_sql/stdlib/prelude/ |
| D | tables_views.sql | 17 -- Unique identifier for this CPU. Identical to |ucpu|, prefer using |ucpu| 20 -- Unique identifier for this CPU. Isn't equal to |cpu| for remote machines 49 -- Unique identifier for this cpu frequency. 72 -- Unique identifier for this scheduling slice. 84 -- The thread's unique id in the trace. 97 -- The unique CPU identifier that the slice executed on. 119 -- Unique identifier for this thread state. 131 -- The thread's unique id in the trace. 140 -- The unique thread id of the thread which caused a wakeup of this thread. 142 -- The unique thread state id which caused a wakeup of this thread. [all …]
|
| /external/skia/src/gpu/ganesh/ |
| D | GrProxyProvider.h | 37 * Assigns a unique key to a proxy. The proxy will be findable via this key using 43 * Sets the unique key of the provided proxy to the unique key of the surface. The surface must 44 * have a valid unique key. 49 * Removes a unique key from a proxy. If the proxy has already been instantiated, it will 50 * also remove the unique key from the target GrSurface. 55 * Finds a proxy by unique key. 60 * Finds a proxy by unique key or creates a new one that wraps a resource matching the unique 216 * This method ensures that, if a proxy w/ the supplied unique key exists, it is removed from 217 * the proxy provider's map and its unique key is removed. If 'invalidateSurface' is true, it 218 * will independently ensure that the unique key is removed from any GrGpuResources that may [all …]
|
| /external/kernel-headers/original/uapi/linux/ |
| D | atmioc.h | 19 #define ATMIOC_PHYCOM 0x00 /* PHY device common ioctls, globally unique */ 21 #define ATMIOC_PHYTYP 0x10 /* PHY dev type ioctls, unique per PHY type */ 23 #define ATMIOC_PHYPRV 0x30 /* PHY dev private ioctls, unique per driver */ 25 #define ATMIOC_SARCOM 0x50 /* SAR device common ioctls, globally unique */ 27 #define ATMIOC_SARPRV 0x60 /* SAR dev private ioctls, unique per driver */ 29 #define ATMIOC_ITF 0x80 /* Interface ioctls, globally unique */ 35 #define ATMIOC_LANE 0xd0 /* LAN Emulation, globally unique */ 36 #define ATMIOC_MPOA 0xd8 /* MPOA, globally unique */ 39 #define ATMIOC_SPECIAL 0xf0 /* Special-purpose controls, globally unique */
|
| /external/libnl/include/linux-private/linux/ |
| D | atmioc.h | 19 #define ATMIOC_PHYCOM 0x00 /* PHY device common ioctls, globally unique */ 21 #define ATMIOC_PHYTYP 0x10 /* PHY dev type ioctls, unique per PHY type */ 23 #define ATMIOC_PHYPRV 0x30 /* PHY dev private ioctls, unique per driver */ 25 #define ATMIOC_SARCOM 0x50 /* SAR device common ioctls, globally unique */ 27 #define ATMIOC_SARPRV 0x60 /* SAR dev private ioctls, unique per driver */ 29 #define ATMIOC_ITF 0x80 /* Interface ioctls, globally unique */ 35 #define ATMIOC_LANE 0xd0 /* LAN Emulation, globally unique */ 36 #define ATMIOC_MPOA 0xd8 /* MPOA, globally unique */ 39 #define ATMIOC_SPECIAL 0xf0 /* Special-purpose controls, globally unique */
|
| /external/iproute2/include/uapi/linux/ |
| D | atmioc.h | 19 #define ATMIOC_PHYCOM 0x00 /* PHY device common ioctls, globally unique */ 21 #define ATMIOC_PHYTYP 0x10 /* PHY dev type ioctls, unique per PHY type */ 23 #define ATMIOC_PHYPRV 0x30 /* PHY dev private ioctls, unique per driver */ 25 #define ATMIOC_SARCOM 0x50 /* SAR device common ioctls, globally unique */ 27 #define ATMIOC_SARPRV 0x60 /* SAR dev private ioctls, unique per driver */ 29 #define ATMIOC_ITF 0x80 /* Interface ioctls, globally unique */ 35 #define ATMIOC_LANE 0xd0 /* LAN Emulation, globally unique */ 36 #define ATMIOC_MPOA 0xd8 /* MPOA, globally unique */ 39 #define ATMIOC_SPECIAL 0xf0 /* Special-purpose controls, globally unique */
|
| /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/ |
| D | unique.pass.cpp | 16 // unique(Iter first, Iter last); 31 auto it = std::unique(std::begin(ia), std::end(ia)); in test_constexpr() 44 Iter r = std::unique(Iter(ia), Iter(ia+sa)); in test() 50 r = std::unique(Iter(ib), Iter(ib+sb)); in test() 57 r = std::unique(Iter(ic), Iter(ic+sc)); in test() 63 r = std::unique(Iter(id), Iter(id+sd)); in test() 70 r = std::unique(Iter(ie), Iter(ie+se)); in test() 78 r = std::unique(Iter(ig), Iter(ig+sg)); in test() 85 r = std::unique(Iter(ih), Iter(ih+sh)); in test() 92 r = std::unique(Iter(ii), Iter(ii+si)); in test() [all …]
|
| /external/aws-sdk-java-v2/services/applicationautoscaling/src/main/resources/codegen-resources/ |
| D | service-2.json | 318 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… 350 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… 377 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… 400 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… 439 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… 486 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… 529 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… 784 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… 841 …"documentation":"<p>The name of the scheduled action. This name must be unique among all other sch… 845 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… [all …]
|
| /external/tensorflow/tensorflow/core/api_def/base_api/ |
| D | api_def_UniqueV2.pbtxt | 13 find the unique elements. 19 A `Tensor`. Unique elements along the `axis` of `Tensor` x. 29 summary: "Finds unique elements along an axis of a tensor." 31 This operation either returns a tensor `y` containing unique elements 32 along the `axis` of a tensor. The returned unique elements is sorted 36 contains the index in the unique output `y`. 45 y, idx = unique(x) 56 y, idx = unique(x, axis=0) 68 y, idx = unique(x, axis=1)
|
| /external/python/cpython3/Lib/test/ |
| D | test_ftplib.py | 40 MLSD_DATA = ("type=cdir;perm=el;unique==keVO1+ZF4; test\r\n" 41 "type=pdir;perm=e;unique==keVO1+d?3; ..\r\n" 42 "type=OS.unix=slink:/foobar;perm=;unique==keVO1+4G4; foobar\r\n" 43 "type=OS.unix=chr-13/29;perm=;unique==keVO1+5G4; device\r\n" 44 "type=OS.unix=blk-11/108;perm=;unique==keVO1+6G4; block\r\n" 45 "type=file;perm=awr;unique==keVO1+8G4; writable\r\n" 46 "type=dir;perm=cpmel;unique==keVO1+7G4; promiscuous\r\n" 47 "type=dir;perm=;unique==keVO1+1t2; no-exec\r\n" 48 "type=file;perm=r;unique==keVO1+EG4; two words\r\n" 49 "type=file;perm=r;unique==keVO1+IH4; leading space\r\n" [all …]
|
| /external/cronet/third_party/libc++/src/test/std/algorithms/alg.modifying.operations/alg.unique/ |
| D | unique.pass.cpp | 15 // unique(Iter first, Iter last); 30 auto it = std::unique(std::begin(ia), std::end(ia)); in test_constexpr() 43 Iter r = std::unique(Iter(ia), Iter(ia+sa)); in test() 49 r = std::unique(Iter(ib), Iter(ib+sb)); in test() 56 r = std::unique(Iter(ic), Iter(ic+sc)); in test() 62 r = std::unique(Iter(id), Iter(id+sd)); in test() 69 r = std::unique(Iter(ie), Iter(ie+se)); in test() 77 r = std::unique(Iter(ig), Iter(ig+sg)); in test() 84 r = std::unique(Iter(ih), Iter(ih+sh)); in test() 91 r = std::unique(Iter(ii), Iter(ii+si)); in test() [all …]
|
| /external/deqp/external/vulkancts/modules/vulkan/imageless_framebuffer/ |
| D | vktImagelessFramebufferTests.cpp | 58 typedef SharedPtr<Unique<VkPipeline>> SharedPtrVkPipeline; 92 inline SharedPtr<Unique<T>> makeSharedPtr(Move<T> move) in makeSharedPtr() 94 return SharedPtr<Unique<T>>(new Unique<T>(move)); in makeSharedPtr() 934 … void readOneSampleFromMultisampleImage(const VkFormat srcFormat, const Unique<VkImage> &srcImage, 936 … const Unique<VkImage> &dstImage, const Unique<VkBuffer> &dstBuffer, 973 …const VkFormat srcFormat, const Unique<VkImage> &srcImage, const uint32_t sampleID, const VkFormat… in readOneSampleFromMultisampleImage() 974 const Unique<VkImage> &dstImage, const Unique<VkBuffer> &dstBuffer, const AspectFlags aspect) in readOneSampleFromMultisampleImage() 990 const Unique<VkImageView> srcImageView( in readOneSampleFromMultisampleImage() 995 const Unique<VkImageView> dstAttachment( in readOneSampleFromMultisampleImage() 999 const Unique<VkShaderModule> vertModule( in readOneSampleFromMultisampleImage() [all …]
|
| /external/python/google-api-python-client/docs/dyn/ |
| D | adexchangebuyer2_v2beta1.accounts.clients.html | 116 …accountId: string, Unique numerical account ID for the buyer of which the client buyer is a custom… 121 …"clientAccountId": "A String", # The globally-unique numerical ID of the clien… 122 …, but for each client the combination of `clientName` and entity must be unique. You can specify t… 123 …e entity can be an advertiser, a brand, or an agency. This identifier is unique among all the enti… 126 …unique identifier of this client buyer from the standpoint of its Ad Exchange sponsor buyer. This … 141 …"clientAccountId": "A String", # The globally-unique numerical ID of the clien… 142 …, but for each client the combination of `clientName` and entity must be unique. You can specify t… 143 …e entity can be an advertiser, a brand, or an agency. This identifier is unique among all the enti… 146 …unique identifier of this client buyer from the standpoint of its Ad Exchange sponsor buyer. This … 169 …"clientAccountId": "A String", # The globally-unique numerical ID of the clien… [all …]
|