Searched refs:qp (Results 1 - 25 of 74) sorted by relevance

123

/external/webrtc/webrtc/test/fuzzers/
H A Dvp8_qp_parser_fuzzer.cc14 int qp; local
15 vp8::GetQp(data, size, &qp);
/external/webrtc/webrtc/modules/video_coding/utility/
H A Dqp_parser.cc18 bool QpParser::GetQp(const VCMEncodedFrame& frame, int* qp) { argument
22 return vp8::GetQp(frame.Buffer(), frame.Length(), qp);
H A Dqp_parser.h23 // Parses an encoded |frame| and extracts the |qp|.
25 bool GetQp(const VCMEncodedFrame& frame, int* qp);
H A Dvp8_header_parser.h62 bool GetQp(const uint8_t* buf, size_t length, int* qp);
H A Dquality_scaler.h33 void ReportQP(int qp);
/external/syslinux/gpxe/src/net/
H A Dinfiniband.c147 ib_refill_recv ( ibdev, wq->qp );
167 * @ret qp Queue pair
178 struct ib_queue_pair *qp; local
185 total_size = ( sizeof ( *qp ) +
186 ( num_send_wqes * sizeof ( qp->send.iobufs[0] ) ) +
187 ( num_recv_wqes * sizeof ( qp->recv.iobufs[0] ) ) );
188 qp = zalloc ( total_size );
189 if ( ! qp )
191 qp->ibdev = ibdev;
192 list_add ( &qp
324 struct ib_queue_pair *qp; local
342 struct ib_queue_pair *qp; local
384 ib_post_send( struct ib_device *ibdev, struct ib_queue_pair *qp, struct ib_address_vector *av, struct io_buffer *iobuf ) argument
430 ib_post_recv( struct ib_device *ibdev, struct ib_queue_pair *qp, struct io_buffer *iobuf ) argument
467 ib_complete_send( struct ib_device *ibdev, struct ib_queue_pair *qp, struct io_buffer *iobuf, int rc ) argument
487 ib_complete_recv( struct ib_device *ibdev, struct ib_queue_pair *qp, struct ib_address_vector *av, struct io_buffer *iobuf, int rc ) argument
656 ib_mcast_attach( struct ib_device *ibdev, struct ib_queue_pair *qp, struct ib_gid *gid ) argument
690 ib_mcast_detach( struct ib_device *ibdev, struct ib_queue_pair *qp, struct ib_gid *gid ) argument
[all...]
/external/syslinux/gpxe/src/include/gpxe/
H A Dib_mcast.h19 struct ib_queue_pair *qp; member in struct:ib_mc_membership
27 * @v qp Queue pair
32 void ( * complete ) ( struct ib_device *ibdev, struct ib_queue_pair *qp,
37 extern int ib_mcast_join ( struct ib_device *ibdev, struct ib_queue_pair *qp,
41 struct ib_queue_pair *qp,
45 extern void ib_mcast_leave ( struct ib_device *ibdev, struct ib_queue_pair *qp,
H A Dib_cm.h23 * @v qp Queue pair
29 void ( * changed ) ( struct ib_device *ibdev, struct ib_queue_pair *qp,
39 struct ib_queue_pair *qp; member in struct:ib_connection
64 ib_create_conn ( struct ib_device *ibdev, struct ib_queue_pair *qp,
69 struct ib_queue_pair *qp,
H A Dinfiniband.h96 struct ib_queue_pair *qp; member in struct:ib_work_queue
178 * @v qp Queue pair
183 struct ib_queue_pair *qp,
189 * @v qp Queue pair
195 struct ib_queue_pair *qp,
250 * @v qp Queue pair
254 struct ib_queue_pair *qp );
258 * @v qp Queue pair
262 struct ib_queue_pair *qp );
266 * @v qp Queu
556 ib_qp_set_drvdata( struct ib_queue_pair *qp, void *priv ) argument
578 ib_qp_set_ownerdata( struct ib_queue_pair *qp, void *priv ) argument
[all...]
/external/libavc/encoder/
H A Dih264e_debug.h43 #define DEBUG_DUMP_QP(pic_cnt, qp, num_cores) \
44 ih264e_debug_dump_qp(pic_cnt, qp, num_cores);
55 #define DEBUG_DUMP_QP(pic_cnt, qp, num_cores) (void);
H A Dih264e_utils.h264 * The forward quantization modules depends on qp/6, qp mod 6, forward scale
266 * modules depends on qp/6, qp mod 6, inverse scale matrix, weight list.
272 * @param[in] qp
281 void ih264e_init_quant_params(process_ctxt_t *ps_proc, int qp);
341 * qp and pic type for the current frame. Queues proc jobs so that
/external/libunwind/include/
H A Dlibunwind-dynamic.h86 int8_t qp; /* qualifying predicate register */ member in struct:unw_dyn_op
179 #define _U_dyn_op_save_reg(op, qp, when, reg, dst) \
180 (*(op) = _U_dyn_op (UNW_DYN_SAVE_REG, (qp), (when), (reg), (dst)))
182 #define _U_dyn_op_spill_fp_rel(op, qp, when, reg, offset) \
183 (*(op) = _U_dyn_op (UNW_DYN_SPILL_FP_REL, (qp), (when), (reg), \
186 #define _U_dyn_op_spill_sp_rel(op, qp, when, reg, offset) \
187 (*(op) = _U_dyn_op (UNW_DYN_SPILL_SP_REL, (qp), (when), (reg), \
190 #define _U_dyn_op_add(op, qp, when, reg, value) \
191 (*(op) = _U_dyn_op (UNW_DYN_ADD, (qp), (when), (reg), (value)))
193 #define _U_dyn_op_pop_frames(op, qp, whe
[all...]
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Dh264_bitstream_parser_unittest.cc37 int qp; local
38 EXPECT_FALSE(h264_parser.GetLastSliceQp(&qp));
44 int qp; local
45 EXPECT_FALSE(h264_parser.GetLastSliceQp(&qp));
51 int qp; local
52 ASSERT_TRUE(h264_parser.GetLastSliceQp(&qp));
53 EXPECT_EQ(35, qp);
58 ASSERT_TRUE(h264_parser.GetLastSliceQp(&qp));
59 EXPECT_EQ(37, qp);
H A Dh264_bitstream_parser.h35 bool GetLastSliceQp(int* qp) const;
/external/google-breakpad/src/third_party/libdisasm/
H A Dx86_imm.c11 qword_t *qp = (qword_t *) dest; local
28 *qp = *((qword_t *) buf);
43 qword_t *qp = (qword_t *) dest; local
60 *qp = *((qword_t *) buf);
/external/syslinux/gpxe/src/net/infiniband/
H A Dib_mcast.c81 struct ib_queue_pair *qp = membership->qp; local
93 ibdev, qp->qpn, strerror ( rc ) );
101 ibdev, qp->qpn, ( joined ? "joined" : "left" ),
107 qp->qkey = qkey;
108 if ( ( rc = ib_modify_qp ( ibdev, qp ) ) != 0 ) {
110 ibdev, qp->qpn, strerror ( rc ) );
120 membership->complete ( ibdev, qp, membership, rc, mad );
132 * @v qp Queue pair
138 int ib_mcast_join ( struct ib_device *ibdev, struct ib_queue_pair *qp, argument
192 ib_mcast_leave( struct ib_device *ibdev, struct ib_queue_pair *qp, struct ib_mc_membership *membership ) argument
[all...]
H A Dib_cm.c160 struct ib_queue_pair *qp = conn->qp; local
186 qp->av.qpn = ( ntohl ( connect_rep->local_qpn ) >> 8 );
187 qp->send.psn = ( ntohl ( connect_rep->starting_psn ) >> 8 );
191 conn, qp->av.qpn, qp->send.psn );
194 if ( ( rc = ib_modify_qp ( ibdev, qp ) ) != 0 ) {
232 conn->op->changed ( ibdev, qp, conn, rc, private_data,
253 struct ib_queue_pair *qp = conn->qp; local
349 ib_create_conn( struct ib_device *ibdev, struct ib_queue_pair *qp, struct ib_gid *dgid, struct ib_gid_half *service_id, void *private_data, size_t private_data_len, struct ib_connection_operations *op ) argument
[all...]
H A Dib_cmrc.c79 struct ib_queue_pair *qp; member in struct:ib_cmrc_connection
117 ib_destroy_conn ( cmrc->ibdev, cmrc->qp, cmrc->conn );
118 ib_destroy_qp ( cmrc->ibdev, cmrc->qp );
149 * @v qp Queue pair
156 struct ib_queue_pair *qp,
159 struct ib_cmrc_connection *cmrc = ib_qp_get_ownerdata ( qp );
200 * @v qp Queue pair
205 struct ib_queue_pair *qp,
207 struct ib_cmrc_connection *cmrc = ib_qp_get_ownerdata ( qp );
225 * @v qp Queu
155 ib_cmrc_changed( struct ib_device *ibdev __unused, struct ib_queue_pair *qp, struct ib_connection *conn __unused, int rc_cm, void *private_data, size_t private_data_len ) argument
204 ib_cmrc_complete_send( struct ib_device *ibdev __unused, struct ib_queue_pair *qp, struct io_buffer *iobuf, int rc ) argument
230 ib_cmrc_complete_recv( struct ib_device *ibdev __unused, struct ib_queue_pair *qp, struct ib_address_vector *av __unused, struct io_buffer *iobuf, int rc ) argument
[all...]
H A Dib_packet.c42 * @v qp Queue pair
47 struct ib_queue_pair *qp, size_t payload_len,
61 ibdev, ibdev->lid, qp->ext_qpn, av->lid, av->qpn, av->qkey );
79 vl = ( ( qp->ext_qpn == IB_QPN_SMI ) ? IB_VL_SMP : IB_VL_DEFAULT );
103 bth->ack__psn = htonl ( ( qp->send.psn++ ) & 0xffffffUL );
107 deth->src_qp = htonl ( qp->ext_qpn );
120 * @v qp Queue pair to fill in, or NULL
125 struct ib_queue_pair **qp, size_t *payload_len,
138 if ( qp )
139 *qp
46 ib_push( struct ib_device *ibdev, struct io_buffer *iobuf, struct ib_queue_pair *qp, size_t payload_len, const struct ib_address_vector *av ) argument
124 ib_pull( struct ib_device *ibdev, struct io_buffer *iobuf, struct ib_queue_pair **qp, size_t *payload_len, struct ib_address_vector *av ) argument
[all...]
H A Dib_mi.c113 * @v qp Queue pair
119 struct ib_queue_pair *qp,
122 struct ib_mad_interface *mi = ib_qp_get_ownerdata ( qp );
225 if ( ( rc = ib_post_send ( ibdev, mi->qp, av, iobuf ) ) != 0 ) {
354 mi->qp = ib_create_qp ( ibdev, type, IB_MI_NUM_SEND_WQES, mi->cq,
356 if ( ! mi->qp ) {
360 ib_qp_set_ownerdata ( mi->qp, mi );
362 mi, ( ( type == IB_QPT_SMI ) ? "SMI" : "GSI" ), mi->qp->qpn );
365 mi->qp->qkey = ( ( type == IB_QPT_SMI ) ? IB_QKEY_SMI : IB_QKEY_GSI );
366 if ( ( rc = ib_modify_qp ( ibdev, mi->qp ) ) !
118 ib_mi_complete_recv( struct ib_device *ibdev, struct ib_queue_pair *qp, struct ib_address_vector *av, struct io_buffer *iobuf, int rc ) argument
[all...]
/external/syslinux/gpxe/src/drivers/infiniband/
H A Dlinda.c467 * @v qp Queue pair
470 struct ib_queue_pair *qp ) {
471 struct ib_work_queue *wq = &qp->send;
476 if ( ( linda->reserved_send_bufs + qp->send.num_wqes ) >
480 linda->reserved_send_bufs, qp->send.num_wqes );
484 linda->reserved_send_bufs += qp->send.num_wqes;
491 linda_wq->send_buf = zalloc ( qp->send.num_wqes *
502 linda->reserved_send_bufs -= qp->send.num_wqes;
511 * @v qp Queue pair
514 struct ib_queue_pair *qp ) {
942 linda_post_send( struct ib_device *ibdev, struct ib_queue_pair *qp, struct ib_address_vector *av, struct io_buffer *iobuf ) argument
1019 linda_complete_send( struct ib_device *ibdev, struct ib_queue_pair *qp, unsigned int wqe_idx ) argument
1081 linda_post_recv( struct ib_device *ibdev, struct ib_queue_pair *qp, struct io_buffer *iobuf ) argument
1161 linda_complete_recv( struct ib_device *ibdev, struct ib_queue_pair *qp, unsigned int header_offs ) argument
1457 linda_mcast_attach( struct ib_device *ibdev, struct ib_queue_pair *qp, struct ib_gid *gid ) argument
1475 linda_mcast_detach( struct ib_device *ibdev, struct ib_queue_pair *qp, struct ib_gid *gid ) argument
[all...]
H A Dhermon.c832 * @v qp Queue pair
836 struct ib_queue_pair *qp ) {
844 switch ( qp->type ) {
846 qp->qpn = ( hermon->special_qpn_base + port_offset );
849 qp->qpn = ( hermon->special_qpn_base + 2 + port_offset );
861 qp->qpn = ( ( random() & HERMON_QPN_RANDOM_MASK ) |
866 hermon, qp->type );
875 * @v qp Queue pair
878 struct ib_queue_pair *qp ) {
882 qpn_offset = ( ( qp
1231 hermon_fill_mlx_send_wqe( struct ib_device *ibdev, struct ib_queue_pair *qp, struct ib_address_vector *av, struct io_buffer *iobuf, union hermon_send_wqe *wqe ) argument
1318 hermon_post_send( struct ib_device *ibdev, struct ib_queue_pair *qp, struct ib_address_vector *av, struct io_buffer *iobuf ) argument
1377 hermon_post_recv( struct ib_device *ibdev, struct ib_queue_pair *qp, struct io_buffer *iobuf ) argument
1426 struct ib_queue_pair *qp; local
1899 hermon_mcast_attach( struct ib_device *ibdev, struct ib_queue_pair *qp, struct ib_gid *gid ) argument
[all...]
/external/syslinux/gpxe/src/drivers/net/
H A Dipoib.c59 struct ib_queue_pair *qp; member in struct:ipoib_device
448 return ib_post_send ( ibdev, ipoib->qp, &av, iobuf );
455 * @v qp Queue pair
460 struct ib_queue_pair *qp,
462 struct ipoib_device *ipoib = ib_qp_get_ownerdata ( qp );
471 * @v qp Queue pair
477 struct ib_queue_pair *qp,
480 struct ipoib_device *ipoib = ib_qp_get_ownerdata ( qp );
546 * @v qp Queue pair
552 struct ib_queue_pair *qp __unuse
459 ipoib_complete_send( struct ib_device *ibdev __unused, struct ib_queue_pair *qp, struct io_buffer *iobuf, int rc ) argument
476 ipoib_complete_recv( struct ib_device *ibdev __unused, struct ib_queue_pair *qp, struct ib_address_vector *av, struct io_buffer *iobuf, int rc ) argument
[all...]
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
H A Ddefault_temporal_layers.h38 void FrameEncoded(unsigned int size, uint32_t timestamp, int qp) override {}
H A Dtemporal_layers.h53 virtual void FrameEncoded(unsigned int size, uint32_t timestamp, int qp) = 0;

Completed in 458 milliseconds

123