Home
last modified time | relevance | path

Searched refs:Unpack (Results 1 – 25 of 163) sorted by relevance

1234567

/external/oboe/samples/RhythmGame/third_party/glm/gtc/
Dpacking.inl282 int16 const Unpack(detail::toFloat16(v.x)); local
284 memcpy(&Packed, &Unpack, sizeof(Packed));
290 i16vec1 Unpack(uninitialize); local
291 memcpy(&Unpack, &v, sizeof(Unpack));
301 tvec2<int16, P> const Unpack(detail::toFloat16(v.x), detail::toFloat16(v.y)); local
303 memcpy(&Packed, &Unpack, sizeof(Packed));
309 i16vec2 Unpack(uninitialize); local
310 memcpy(&Unpack, &v, sizeof(Unpack));
320 …tvec3<int16, P> const Unpack(detail::toFloat16(v.x), detail::toFloat16(v.y), detail::toFloat16(v.z… local
322 memcpy(&Packed, &Unpack, sizeof(Packed));
[all …]
/external/llvm/lib/Fuzzer/test/
DFuzzerFnAdapterUnittest.cpp12 bool Unpack(std::tuple<Args...> *Tuple, std::initializer_list<uint8_t> data) { in Unpack() function
14 return Unpack(V.data(), V.size(), Tuple); in Unpack()
17 TEST(Unpack, Bool) { in TEST() argument
19 EXPECT_TRUE(Unpack(&T, {1})); in TEST()
22 EXPECT_TRUE(Unpack(&T, {0})); in TEST()
25 EXPECT_FALSE(Unpack(&T, {})); in TEST()
28 TEST(Unpack, BoolBool) { in TEST() argument
30 EXPECT_TRUE(Unpack(&T, {1, 0})); in TEST()
34 EXPECT_TRUE(Unpack(&T, {0, 1})); in TEST()
38 EXPECT_FALSE(Unpack(&T, {})); in TEST()
[all …]
/external/mesa3d/src/mesa/main/
Dpixelstore.c138 ctx->Unpack.SwapBytes = param ? GL_TRUE : GL_FALSE; in pixel_storei()
143 ctx->Unpack.LsbFirst = param ? GL_TRUE : GL_FALSE; in pixel_storei()
150 ctx->Unpack.RowLength = param; in pixel_storei()
157 ctx->Unpack.ImageHeight = param; in pixel_storei()
164 ctx->Unpack.SkipPixels = param; in pixel_storei()
171 ctx->Unpack.SkipRows = param; in pixel_storei()
178 ctx->Unpack.SkipImages = param; in pixel_storei()
183 ctx->Unpack.Alignment = param; in pixel_storei()
190 ctx->Unpack.CompressedBlockWidth = param; in pixel_storei()
197 ctx->Unpack.CompressedBlockHeight = param; in pixel_storei()
[all …]
Ddrawpix.c147 if (ctx->Unpack.BufferObj) { in _mesa_DrawPixels()
149 if (!_mesa_validate_pbo_access(2, &ctx->Unpack, width, height, in _mesa_DrawPixels()
155 if (_mesa_check_disallowed_mapping(ctx->Unpack.BufferObj)) { in _mesa_DrawPixels()
164 &ctx->Unpack, pixels); in _mesa_DrawPixels()
340 if (ctx->Unpack.BufferObj) { in _mesa_Bitmap()
342 if (!_mesa_validate_pbo_access(2, &ctx->Unpack, width, height, in _mesa_Bitmap()
349 if (_mesa_check_disallowed_mapping(ctx->Unpack.BufferObj)) { in _mesa_Bitmap()
357 ctx->Driver.Bitmap( ctx, x, y, width, height, &ctx->Unpack, bitmap ); in _mesa_Bitmap()
Dpixel.c196 if (!validate_pbo_access(ctx, &ctx->Unpack, mapsize, GL_INTENSITY, in _mesa_PixelMapfv()
201 values = (const GLfloat *) _mesa_map_pbo_source(ctx, &ctx->Unpack, values); in _mesa_PixelMapfv()
203 if (ctx->Unpack.BufferObj) { in _mesa_PixelMapfv()
212 _mesa_unmap_pbo_source(ctx, &ctx->Unpack); in _mesa_PixelMapfv()
237 if (!validate_pbo_access(ctx, &ctx->Unpack, mapsize, GL_INTENSITY, in _mesa_PixelMapuiv()
242 values = (const GLuint *) _mesa_map_pbo_source(ctx, &ctx->Unpack, values); in _mesa_PixelMapuiv()
244 if (ctx->Unpack.BufferObj) { in _mesa_PixelMapuiv()
265 _mesa_unmap_pbo_source(ctx, &ctx->Unpack); in _mesa_PixelMapuiv()
292 if (!validate_pbo_access(ctx, &ctx->Unpack, mapsize, GL_INTENSITY, in _mesa_PixelMapusv()
297 values = (const GLushort *) _mesa_map_pbo_source(ctx, &ctx->Unpack, values); in _mesa_PixelMapusv()
[all …]
Dpolygon.c255 &ctx->Unpack, 32, 32, 1, in _mesa_PolygonStipple()
262 _mesa_unpack_polygon_stipple(pattern, ctx->PolygonStipple, &ctx->Unpack); in _mesa_PolygonStipple()
264 _mesa_unmap_pbo_source(ctx, &ctx->Unpack); in _mesa_PolygonStipple()
/external/flatbuffers/lua/flatbuffers/
DnumTypes.lua6 local bunpack = ba.Unpack
14 function type_mt:Unpack(buf, pos) function
60 return otherType:Unpack(self:Pack(n))
72 Unpack = function(self, buf, pos) return buf[pos] == "1" end, function
211 t.Unpack = function(self, buf, pos) return bunpack(self.packFmt, buf, pos) end function
/external/abseil-cpp/absl/debugging/internal/
Daddress_is_readable.cc60 static void Unpack(uint64_t x, int *pid, int *read_fd, int *write_fd) { in Unpack() function
90 Unpack(local_pid_and_fds, &pid, &read_fd, &write_fd); in AddressIsReadable()
109 Unpack(local_pid_and_fds, &pid, &read_fd, &write_fd); in AddressIsReadable()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/debugging/internal/
Daddress_is_readable.cc60 static void Unpack(uint64_t x, int *pid, int *read_fd, int *write_fd) { in Unpack() function
91 Unpack(local_pid_and_fds, &pid, &read_fd, &write_fd); in AddressIsReadable()
110 Unpack(local_pid_and_fds, &pid, &read_fd, &write_fd); in AddressIsReadable()
/external/webrtc/third_party/abseil-cpp/absl/debugging/internal/
Daddress_is_readable.cc60 static void Unpack(uint64_t x, int *pid, int *read_fd, int *write_fd) { in Unpack() function
90 Unpack(local_pid_and_fds, &pid, &read_fd, &write_fd); in AddressIsReadable()
109 Unpack(local_pid_and_fds, &pid, &read_fd, &write_fd); in AddressIsReadable()
/external/openscreen/third_party/abseil/src/absl/debugging/internal/
Daddress_is_readable.cc60 static void Unpack(uint64_t x, int *pid, int *read_fd, int *write_fd) { in Unpack() function
91 Unpack(local_pid_and_fds, &pid, &read_fd, &write_fd); in AddressIsReadable()
110 Unpack(local_pid_and_fds, &pid, &read_fd, &write_fd); in AddressIsReadable()
/external/angle/third_party/abseil-cpp/absl/debugging/internal/
Daddress_is_readable.cc60 static void Unpack(uint64_t x, int *pid, int *read_fd, int *write_fd) { in Unpack() function
91 Unpack(local_pid_and_fds, &pid, &read_fd, &write_fd); in AddressIsReadable()
110 Unpack(local_pid_and_fds, &pid, &read_fd, &write_fd); in AddressIsReadable()
/external/libtextclassifier/abseil-cpp/absl/debugging/internal/
Daddress_is_readable.cc60 static void Unpack(uint64_t x, int *pid, int *read_fd, int *write_fd) { in Unpack() function
91 Unpack(local_pid_and_fds, &pid, &read_fd, &write_fd); in AddressIsReadable()
110 Unpack(local_pid_and_fds, &pid, &read_fd, &write_fd); in AddressIsReadable()
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/WellKnownTypes/
DAnyTest.cs72 Assert.Throws<InvalidProtocolBufferException>(() => any.Unpack<TestOneof>()); in Unpack_WrongType()
80 var unpacked = any.Unpack<TestAllTypes>(); in Unpack_Success()
89 var unpacked = any.Unpack<TestAllTypes>(); in Unpack_CustomPrefix_Success()
/external/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/
DAnyTest.cs72 Assert.Throws<InvalidProtocolBufferException>(() => any.Unpack<TestOneof>()); in Unpack_WrongType()
80 var unpacked = any.Unpack<TestAllTypes>(); in Unpack_Success()
89 var unpacked = any.Unpack<TestAllTypes>(); in Unpack_CustomPrefix_Success()
/external/vboot_reference/futility/
Dcmd_vbutil_key.c106 static int Unpack(const char *infile, const char *outfile) in Unpack() function
229 return Unpack(infile, outfile); in do_vbutil_key()
Dcmd_vbutil_keyblock.c153 static int Unpack(const char *infile, const char *datapubkey, in Unpack() function
326 return Unpack(filename, datapubkey, signpubkey); in do_vbutil_keyblock()
/external/tensorflow/tensorflow/compiler/xla/
Dcpu_function_runtime.h36 Unpack(encoding.first, &kind, &size); in BufferInfo()
127 static void Unpack(tensorflow::uint64 packed, Kind* kind, in Unpack() function
/external/tensorflow/tensorflow/core/api_def/java_api/
Dapi_def_Unpack.pbtxt2 graph_op_name: "Unpack"
/external/tensorflow/tensorflow/core/api_def/python_api/
Dapi_def_Unpack.pbtxt2 graph_op_name: "Unpack"
/external/webrtc/modules/rtp_rtcp/source/rtcp_packet/
Dnack.cc76 Unpack(); in Parse()
162 void Nack::Unpack() { in Unpack() function in webrtc::rtcp::Nack
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/
DUnpack.pbtxt2 name: "Unpack"
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/
DUnpack.pbtxt2 name: "Unpack"
/external/llvm/lib/Fuzzer/
DFuzzerFnAdapter.h130 bool Unpack(const uint8_t *Data, size_t Size, std::tuple<Args...> *Tuple) { in Unpack() function
172 if (!Unpack(Data, Size, &Tuple))
/external/flatbuffers/tests/MyGame/Example2/
DMonster.lua16 local n = flatbuffers.N.UOffsetT:Unpack(buf, offset)

1234567