HomeSort by relevance Sort by last modified time
    Searched defs:Wrap (Results 1 - 25 of 49) sorted by null

1 2

  /external/clang/test/CodeGen/
ms-align-tentative.c 22 struct Wrap {
25 // CHECK-DAG: @w = global %struct.Wrap zeroinitializer, align 64
  /external/libcxx/test/std/utilities/function.objects/refwrap/
type_properties.pass.cpp 48 typedef std::reference_wrapper<T> Wrap;
49 static_assert(std::is_copy_constructible<Wrap>::value, "");
50 static_assert(std::is_copy_assignable<Wrap>::value, "");
52 static_assert(std::is_trivially_copyable<Wrap>::value, "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/refwrap/
type_properties.pass.cpp 46 typedef std::reference_wrapper<T> Wrap;
47 static_assert(std::is_copy_constructible<Wrap>::value, "");
48 static_assert(std::is_copy_assignable<Wrap>::value, "");
50 static_assert(std::is_trivially_copyable<Wrap>::value, "");
  /external/libmojo/mojo/public/cpp/bindings/
stl_converters.h 152 static T Wrap(T input) { return input; }
160 static Type Wrap(std::vector<T> input) {
175 output_storage.push_back(WrapTraits<T>::Wrap(std::move(element)));
192 static Type Wrap(std::map<K, V> input) {
209 output.insert(WrapTraits<K>::Wrap(pair.first),
210 WrapTraits<V>::Wrap(std::move(pair.second)));
228 static String Wrap(const std::string& input) { return input; }
240 return internal::WrapTraits<T>::Wrap(std::move(input));
  /external/webrtc/webrtc/modules/desktop_capture/
shared_desktop_frame.cc 50 SharedDesktopFrame* SharedDesktopFrame::Wrap(
  /external/libcxx/test/std/experimental/utilities/tuple/tuple.apply/
extended_types.pass.cpp 94 typedef A_wrap_0 Wrap;
130 // member function w/wrap
132 Wrap a;
164 Wrap const a;
189 Wrap a{42};
206 typedef A_wrap_1 Wrap;
239 // member function w/wrap
241 Wrap a;
273 Wrap const a;
291 typedef A_wrap_2 Wrap;
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
apply_extended_types.pass.cpp 93 typedef A_wrap_0 Wrap;
129 // member function w/wrap
131 Wrap a;
163 Wrap const a;
188 Wrap a{42};
205 typedef A_wrap_1 Wrap;
238 // member function w/wrap
240 Wrap a;
272 Wrap const a;
290 typedef A_wrap_2 Wrap;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
MBlazeISelLowering.h 75 // Wrap up multiple types of instructions
76 Wrap,
  /external/swiftshader/third_party/LLVM/unittests/Support/
ConstantRangeTest.cpp 25 static ConstantRange Wrap;
32 ConstantRange ConstantRangeTest::Wrap(APInt(16, 0xaaa), APInt(16, 0xa));
74 EXPECT_FALSE(Wrap.isFullSet());
75 EXPECT_FALSE(Wrap.isEmptySet());
76 EXPECT_TRUE(Wrap.isWrappedSet());
77 EXPECT_TRUE(Wrap.contains(APInt(16, 0x0)));
78 EXPECT_TRUE(Wrap.contains(APInt(16, 0x9)));
79 EXPECT_FALSE(Wrap.contains(APInt(16, 0xa)));
80 EXPECT_FALSE(Wrap.contains(APInt(16, 0xaa9)));
81 EXPECT_TRUE(Wrap.contains(APInt(16, 0xaaa)))
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/utilities/tuple/tuple.apply/
extended_types.pass.cpp 94 typedef A_wrap_0 Wrap;
130 // member function w/wrap
132 Wrap a;
164 Wrap const a;
189 Wrap a{42};
206 typedef A_wrap_1 Wrap;
239 // member function w/wrap
241 Wrap a;
273 Wrap const a;
291 typedef A_wrap_2 Wrap;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
DESede.java 130 public static class Wrap
133 public Wrap()
387 provider.addAlgorithm("Cipher.DESEDEWRAP", PREFIX + "$Wrap");
AES.java 266 static public class Wrap
269 public Wrap()
896 provider.addAlgorithm("Cipher.AESWRAP", PREFIX + "$Wrap");
    [all...]
  /external/llvm/unittests/IR/
ConstantRangeTest.cpp 25 static ConstantRange Wrap;
32 ConstantRange ConstantRangeTest::Wrap(APInt(16, 0xaaa), APInt(16, 0xa));
74 EXPECT_FALSE(Wrap.isFullSet());
75 EXPECT_FALSE(Wrap.isEmptySet());
76 EXPECT_TRUE(Wrap.isWrappedSet());
77 EXPECT_TRUE(Wrap.contains(APInt(16, 0x0)));
78 EXPECT_TRUE(Wrap.contains(APInt(16, 0x9)));
79 EXPECT_FALSE(Wrap.contains(APInt(16, 0xa)));
80 EXPECT_FALSE(Wrap.contains(APInt(16, 0xaa9)));
81 EXPECT_TRUE(Wrap.contains(APInt(16, 0xaaa)))
    [all...]
  /external/webrtc/webrtc/common_audio/
ring_buffer.c 20 enum Wrap {
30 enum Wrap rw_wrap;
53 // Write data in two blocks that wrap the buffer.
137 // We have a wrap around when reading the buffer. Copy the buffer data to
143 // No wrap, but a memcpy was requested.
147 // |buf_ptr_1| == |data| in the case of a wrap.
176 // Buffer wrap around when writing.
213 // Buffer wrap around. Restart read position and wrap indicator.
218 // Buffer wrap around. Restart read position and wrap indicator
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
Dhcp4Impl.c     [all...]
Dhcp4Io.c 1178 NET_BUF *Wrap;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
HttpImpl.c 246 HTTP_TOKEN_WRAP *Wrap;
291 Wrap = NULL;
349 // Wrap the HTTP token in HTTP_TOKEN_WRAP
351 Wrap = AllocateZeroPool (sizeof (HTTP_TOKEN_WRAP));
352 if (Wrap == NULL) {
357 Wrap->HttpToken = Token;
358 Wrap->HttpInstance = HttpInstance;
360 Status = HttpCreateTcpTxEvent (Wrap);
365 Status = NetMapInsertTail (&HttpInstance->TxTokens, Token, Wrap);
370 Wrap->TcpWrap.Method = Request->Method;
    [all...]
HttpProto.c 51 HTTP_TOKEN_WRAP *Wrap;
58 Wrap = (HTTP_TOKEN_WRAP *) Context;
59 HttpInstance = Wrap->HttpInstance;
62 Wrap->HttpToken->Status = Wrap->TcpWrap.Tx4Token.CompletionToken.Status;
63 gBS->SignalEvent (Wrap->HttpToken->Event);
68 if (Wrap->TcpWrap.Tx4Token.Packet.TxData->FragmentTable[0].FragmentBuffer != NULL) {
69 FreePool (Wrap->TcpWrap.Tx4Token.Packet.TxData->FragmentTable[0].FragmentBuffer);
72 if (Wrap->TcpWrap.Tx4Token.CompletionToken.Event != NULL) {
73 gBS->CloseEvent (Wrap->TcpWrap.Tx4Token.CompletionToken.Event);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Impl.c     [all...]
  /external/protobuf/src/google/protobuf/
map_entry_lite.h 267 static MapEntryLite* Wrap(const Key& key, const Value& value, Arena* arena) {
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
map_entry_lite.h 267 static MapEntryLite* Wrap(const Key& key, const Value& value, Arena* arena) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Impl.c     [all...]
Ip4Input.c 204 have been received, it will wrap the packet in a net buffer then
408 // Wrap the packet in a net buffer then deliver it up
445 IPsec. It releases the wrap packet and also signals IPsec to free the resources.
447 @param[in] Arg The wrap context
456 IP4_IPSEC_WRAP *Wrap;
458 Wrap = (IP4_IPSEC_WRAP *) Arg;
460 if (Wrap->IpSecRecycleSignal != NULL) {
461 gBS->SignalEvent (Wrap->IpSecRecycleSignal);
464 NetbufFree (Wrap->Packet);
466 FreePool (Wrap);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Udp4Dxe/
Udp4Impl.c 140 This function removes the Wrap specified by Context and release relevant resources.
406 UDP4_RXDATA_WRAP *Wrap;
429 Wrap = NET_LIST_USER_STRUCT (WrapEntry, UDP4_RXDATA_WRAP, Link);
434 if (Wrap->TimeoutTick < (UDP4_TIMEOUT_INTERVAL / 10)) {
438 Udp4RecycleRxDataWrap (NULL, (VOID *) Wrap);
440 Wrap->TimeoutTick -= (UDP4_TIMEOUT_INTERVAL / 10);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/
Dhcp6Io.c 836 NET_BUF *Wrap;
844 // Wrap it into a netbuf then send it.
852 Wrap = NetbufFromExt (&Frag, 1, 0, 0, Dhcp6DummyExtFree, NULL);
854 if (Wrap == NULL) {
892 Wrap,
900 NetbufFree (Wrap);
    [all...]

Completed in 2663 milliseconds

1 2