HomeSort by relevance Sort by last modified time
    Searched refs:cast (Results 51 - 75 of 1566) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/third_party/lua/src/
lmem.h 22 ** cast to 'void' avoids warnings of "value unused".
25 (cast(void, \
26 (cast(size_t, (n)+1) > MAX_SIZET/(e)) ? (luaM_toobig(L), 0) : 0), \
34 #define luaM_new(L,t) cast(t *, luaM_malloc(L, sizeof(t)))
36 cast(t *, luaM_reallocv(L, NULL, 0, n, sizeof(t)))
42 ((v)=cast(t *, luaM_growaux_(L,v,&(size),sizeof(t),limit,e)))
45 ((v)=cast(t *, luaM_reallocv(L, v, oldn, n, sizeof(t))))
lopcodes.h 89 #define GET_OPCODE(i) (cast(OpCode, ((i)>>POS_OP) & MASK1(SIZE_OP,0)))
91 ((cast(Instruction, o)<<POS_OP)&MASK1(SIZE_OP,POS_OP))))
93 #define getarg(i,pos,size) (cast(int, ((i)>>pos) & MASK1(size,0)))
95 ((cast(Instruction, v)<<pos)&MASK1(size,pos))))
113 #define SETARG_sBx(i,b) SETARG_Bx((i),cast(unsigned int, (b)+MAXARG_sBx))
116 #define CREATE_ABC(o,a,b,c) ((cast(Instruction, o)<<POS_OP) \
117 | (cast(Instruction, a)<<POS_A) \
118 | (cast(Instruction, b)<<POS_B) \
119 | (cast(Instruction, c)<<POS_C))
121 #define CREATE_ABx(o,a,bc) ((cast(Instruction, o)<<POS_OP)
    [all...]
  /external/chromium_org/v8/src/
objects-debug.cc 20 Smi::cast(this)->SmiVerify();
22 HeapObject::cast(this)->HeapObjectVerify();
45 String::cast(this)->StringVerify();
51 Symbol::cast(this)->SymbolVerify();
54 Map::cast(this)->MapVerify();
57 HeapNumber::cast(this)->HeapNumberVerify();
60 FixedArray::cast(this)->FixedArrayVerify();
63 FixedDoubleArray::cast(this)->FixedDoubleArrayVerify();
66 ConstantPoolArray::cast(this)->ConstantPoolArrayVerify();
69 ByteArray::cast(this)->ByteArrayVerify()
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 342 const CStyleCastExpr* CastExpr1 = cast<CStyleCastExpr>(Stmt1);
343 const CStyleCastExpr* CastExpr2 = cast<CStyleCastExpr>(Stmt2);
348 const ReturnStmt *ReturnStmt1 = cast<ReturnStmt>(Stmt1);
349 const ReturnStmt *ReturnStmt2 = cast<ReturnStmt>(Stmt2);
355 const ForStmt *ForStmt1 = cast<ForStmt>(Stmt1);
356 const ForStmt *ForStmt2 = cast<ForStmt>(Stmt2);
373 const DoStmt *DStmt1 = cast<DoStmt>(Stmt1);
374 const DoStmt *DStmt2 = cast<DoStmt>(Stmt2);
385 const WhileStmt *WStmt1 = cast<WhileStmt>(Stmt1);
386 const WhileStmt *WStmt2 = cast<WhileStmt>(Stmt2)
    [all...]
  /external/chromium_org/chrome/renderer/media/
cast_ipc_dispatcher.h 12 #include "media/cast/cast_sender.h"
13 #include "media/cast/logging/logging_defines.h"
14 #include "media/cast/transport/cast_transport_sender.h"
40 void OnReceivedPacket(int32 channel_id, const media::cast::Packet& packet);
43 media::cast::transport::CastTransportStatus status);
47 const media::cast::transport::RtcpSenderInfo& sender_info,
51 const std::vector<media::cast::PacketEvent>& packet_events);
  /external/chromium_org/media/cast/rtp_receiver/rtp_parser/
rtp_parser.h 8 #include "media/cast/rtp_receiver/rtp_receiver_defines.h"
9 #include "media/cast/transport/cast_transport_defines.h"
12 namespace cast { namespace in namespace:media
15 // module that handles all RTP/Cast packet serialization and deserialization
16 // throughout the media/cast library.
23 // Parses the |packet|, expecting an RTP header along with a Cast header at
26 // |payload_size| to the memory region within |packet| containing the Cast
44 } // namespace cast
  /external/chromium_org/media/cast/rtp_receiver/
rtp_receiver_defines.h 9 #include "media/cast/cast_config.h"
10 #include "media/cast/rtcp/rtcp_defines.h"
13 namespace cast { namespace in namespace:media
25 // Elements from Cast header (at beginning of RTP payload).
41 } // namespace cast
  /external/chromium_org/media/cast/
rtp_timestamp_helper.h 12 namespace cast { namespace in namespace:media
38 } // namespace cast
  /external/chromium_org/media/cast/test/
fake_receiver_time_offset_estimator.cc 5 #include "media/cast/test/fake_receiver_time_offset_estimator.h"
8 namespace cast { namespace in namespace:media
36 } // namespace cast
  /external/chromium_org/media/cast/test/utility/
standalone_cast_environment.h 10 #include "media/cast/cast_environment.h"
13 namespace cast { namespace in namespace:media
36 } // namespace cast
test_util.h 12 namespace cast { namespace in namespace:media
27 } // namespace cast
video_utility.h 10 namespace cast { namespace in namespace:media
28 } // namespace cast
udp_proxy_main.cc 15 #include "media/cast/test/utility/udp_proxy.h"
68 class ByteCounterPipe : public media::cast::test::PacketPipe {
71 virtual void Send(scoped_ptr<media::cast::transport::Packet> packet)
80 void SetupByteCounters(scoped_ptr<media::cast::test::PacketPipe>* pipe,
83 media::cast::test::PacketPipe* new_pipe =
87 scoped_ptr<media::cast::test::PacketPipe>(
150 scoped_ptr<media::cast::test::PacketPipe> in_pipe, out_pipe;
155 in_pipe = media::cast::test::WifiNetwork().Pass();
156 out_pipe = media::cast::test::WifiNetwork().Pass();
158 in_pipe = media::cast::test::BadNetwork().Pass()
    [all...]
  /external/chromium_org/media/cast/transport/pacing/
mock_paced_packet_sender.h 8 #include "media/cast/transport/pacing/paced_sender.h"
12 namespace cast { namespace in namespace:media
28 } // namespace cast
  /external/chromium_org/media/cast/video_sender/
software_video_encoder.h 16 namespace cast { namespace in namespace:media
43 } // namespace cast
video_encoder.h 14 #include "media/cast/cast_config.h"
15 #include "media/cast/cast_environment.h"
18 namespace cast { namespace in namespace:media
20 // All these functions are called from the main cast thread.
48 } // namespace cast
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cast/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cast/Android.mk
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cast/static_pointer_cast
23 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cast/const_pointer_cast
27 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cast/dynamic_pointer_cast
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOTPLT.cpp 44 GOTPLTEntry* got = &(llvm::cast<GOTPLTEntry>((*it)));
72 llvm::cast<GOTPLTEntry>(*it++).setValue(0); // PLT lazy resolver
73 llvm::cast<GOTPLTEntry>(*it++).setValue(0); // Module pointer
76 llvm::cast<GOTPLTEntry>(*it).setValue(pltAddr);
  /external/chromium_org/chrome/browser/media/
cast_transport_host_filter_unittest.cc 10 #include "media/cast/logging/logging_defines.h"
20 filter_ = new cast::CastTransportHostFilter();
80 // Create a cast transport sender.
85 media::cast::transport::CastTransportAudioConfig audio_config;
90 media::cast::transport::CastTransportVideoConfig video_config;
95 media::cast::transport::EncodedFrame audio_frame;
96 audio_frame.dependency = media::cast::transport::EncodedFrame::KEY;
108 media::cast::transport::EncodedFrame video_frame;
109 video_frame.dependency = media::cast::transport::EncodedFrame::KEY;
120 media::cast::transport::SendRtcpFromRtpSenderData rtcp_data
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_cast.py 11 ptr = cast(array, POINTER(c_int))
15 ptr = cast(array, POINTER(c_short))
27 ptr = cast(c_void_p(address), POINTER(c_int))
30 ptr = cast(address, POINTER(c_int))
39 p = cast(array, POINTER(c_char_p))
51 p = cast((c_int * 4)(1, 2, 3, 4), POINTER(c_int))
75 self.assertEqual(cast(cast(s, c_void_p), c_char_p).value,
85 self.assertEqual(cast(cast(s, c_void_p), c_wchar_p).value
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_cast.py 11 ptr = cast(array, POINTER(c_int))
15 ptr = cast(array, POINTER(c_short))
27 ptr = cast(c_void_p(address), POINTER(c_int))
30 ptr = cast(address, POINTER(c_int))
39 p = cast(array, POINTER(c_char_p))
51 p = cast((c_int * 4)(1, 2, 3, 4), POINTER(c_int))
75 self.assertEqual(cast(cast(s, c_void_p), c_char_p).value,
85 self.assertEqual(cast(cast(s, c_void_p), c_wchar_p).value
    [all...]
  /external/chromium_org/media/cast/logging/
serialize_deserialize_test.cc 9 #include "media/cast/logging/log_deserializer.h"
10 #include "media/cast/logging/log_serializer.h"
11 #include "media/cast/logging/logging_defines.h"
12 #include "media/cast/logging/proto/proto_utils.h"
15 using media::cast::proto::AggregatedFrameEvent;
16 using media::cast::proto::AggregatedPacketEvent;
17 using media::cast::proto::BasePacketEvent;
18 using media::cast::proto::LogMetadata;
22 const media::cast::CastLoggingEvent kVideoFrameEvents[] = {
23 media::cast::FRAME_CAPTURE_BEGIN, media::cast::FRAME_CAPTURE_END
39 namespace cast { namespace in namespace:media
    [all...]
  /external/chromium_org/v8/test/cctest/
test-weakmaps.cc 48 Handle<JSWeakMap> weakmap(JSWeakMap::cast(*weakmap_obj));
62 Handle<ObjectHashTable>(ObjectHashTable::cast(weakmap->table())),
63 Handle<JSObject>(JSObject::cast(*key)),
104 Handle<JSObject>(JSObject::cast(*key)),
107 CHECK_EQ(1, ObjectHashTable::cast(weakmap->table())->NumberOfElements());
112 CHECK_EQ(1, ObjectHashTable::cast(weakmap->table())->NumberOfElements());
114 0, ObjectHashTable::cast(weakmap->table())->NumberOfDeletedElements());
131 CHECK_EQ(1, ObjectHashTable::cast(weakmap->table())->NumberOfElements());
133 0, ObjectHashTable::cast(weakmap->table())->NumberOfDeletedElements());
136 CHECK_EQ(0, ObjectHashTable::cast(weakmap->table())->NumberOfElements())
    [all...]
test-weaksets.cc 48 Handle<JSWeakSet> weakset(JSWeakSet::cast(*weakset_obj));
62 Handle<ObjectHashTable>(ObjectHashTable::cast(weakset->table())),
63 Handle<JSObject>(JSObject::cast(*key)),
104 Handle<JSObject>(JSObject::cast(*key)),
107 CHECK_EQ(1, ObjectHashTable::cast(weakset->table())->NumberOfElements());
112 CHECK_EQ(1, ObjectHashTable::cast(weakset->table())->NumberOfElements());
114 0, ObjectHashTable::cast(weakset->table())->NumberOfDeletedElements());
131 CHECK_EQ(1, ObjectHashTable::cast(weakset->table())->NumberOfElements());
133 0, ObjectHashTable::cast(weakset->table())->NumberOfDeletedElements());
136 CHECK_EQ(0, ObjectHashTable::cast(weakset->table())->NumberOfElements())
    [all...]
  /external/clang/lib/AST/
ExprClassification.cpp 99 llvm_unreachable("Invalid value category of implicit cast.");
189 cast<SubstNonTypeTemplateParmExpr>(E)->getReplacement());
194 if (cast<ArraySubscriptExpr>(E)->getBase()->getType()->isVectorType())
195 return ClassifyInternal(Ctx, cast<ArraySubscriptExpr>(E)->getBase());
202 return isa<FunctionDecl>(cast<DeclRefExpr>(E)->getDecl())
204 return ClassifyDecl(Ctx, cast<DeclRefExpr>(E)->getDecl());
208 return ClassifyMemberExpr(Ctx, cast<MemberExpr>(E));
211 switch (cast<UnaryOperator>(E)->getOpcode()) {
220 return ClassifyInternal(Ctx, cast<UnaryOperator>(E)->getSubExpr());
226 const Expr *Op = cast<UnaryOperator>(E)->getSubExpr()->IgnoreParens()
    [all...]

Completed in 435 milliseconds

1 23 4 5 6 7 8 91011>>