Searched defs:qp (Results 1 - 25 of 46) sorted by relevance

12

/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 Dquality_scaler.cc53 void QualityScaler::ReportQP(int qp) { argument
55 average_qp_.AddSample(qp);
H A Dvp8_header_parser.cc162 bool GetQp(const uint8_t* buf, size_t length, int* qp) { argument
198 *qp = base_q0;
/external/webrtc/webrtc/test/fuzzers/
H A Dvp8_qp_parser_fuzzer.cc14 int qp; local
15 vp8::GetQp(data, size, &qp);
/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 Dib_mi.h94 struct ib_queue_pair *qp; member in struct:ib_mad_interface
/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);
/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_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_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_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/eigen/Eigen/src/Core/functors/
H A DBinaryFunctors.h270 Scalar p, qp; local
274 qp = _y / p;
279 qp = _x / p;
281 return p * sqrt(Scalar(1) + qp*qp);
/external/python/cpython2/Lib/
H A Dmimify.py38 qp = re.compile('^content-transfer-encoding:\\s*quoted-printable', re.I) variable
145 if qp.match(line):
302 if qp.match(line):
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
H A Dscreenshare_layers.cc149 // Don't reconfigure qp limits during quality boost frames.
153 // After a dropped frame, a frame with max qp will be encoded and the
155 // encode the next frame with lower max qp. TL0 is the most important to
157 // Currently, reduce max qp by 20% for TL0 and 15% for TL1.
171 int qp) {
181 if (qp != -1)
182 layers_[active_layer_].last_qp = qp;
253 // the configuration with the adjusted (lower) qp and set the state back to
263 adjusted_max_qp = max_qp_; // Set the normal max qp.
169 FrameEncoded(unsigned int size, uint32_t timestamp, int qp) argument
/external/libhevc/decoder/
H A Dihevcd_cabac.c119 * @param[in] qp
134 WORD32 qp,
141 ASSERT((qp >= 0) && (qp < 52));
143 UNUSED(qp);
161 /* cabac context initialization based on init idc and slice qp */
132 ihevcd_cabac_init(cab_ctxt_t *ps_cabac, bitstrm_t *ps_bitstrm, WORD32 qp, WORD32 cabac_init_idc, const UWORD8 *pu1_init_ctxt) argument
/external/libunwind/src/ia64/
H A Dunwind_decoder.h76 * UNW_DEC_RESTORE_P(fmt,qp,t,abreg,arg)
80 * UNW_DEC_SPILL_PSPREL_P(fmt,qp,t,abreg,pspoff,arg)
82 * UNW_DEC_SPILL_REG_P(fmt,qp,t,abreg,x,ytreg,arg)
84 * UNW_DEC_SPILL_SPREL_P(fmt,qp,t,abreg,pspoff,arg)
144 unsigned char byte1, byte2, abreg, qp; local
151 qp = (byte1 & 0x3f);
155 UNW_DEC_SPILL_SPREL_P(X3, qp, t, abreg, off, arg);
157 UNW_DEC_SPILL_PSPREL_P(X3, qp, t, abreg, off, arg);
164 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; local
170 qp
[all...]
/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/webrtc/webrtc/video/
H A Dreceive_statistics_proxy.cc59 int qp = qp_counters_.vp8.Avg(kMinRequiredSamples); local
60 if (qp != -1)
61 RTC_HISTOGRAM_COUNTS_SPARSE_200("WebRTC.Video.Decoded.Vp8.Qp", qp);
/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/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/libavc/encoder/
H A Dih264e_utils.c957 * The forward quantization modules depends on qp/6, qp mod 6, forward scale
959 * modules depends on qp/6, qp mod 6, inverse scale matrix, weight list.
965 * @param[in] qp
974 void ih264e_init_quant_params(process_ctxt_t *ps_proc, int qp) argument
998 /* luma qp */
999 u4_qp[Y] = qp;
1001 /* chroma qp
1002 * TODO_LATER : just in case if the chroma planes use different qp'
[all...]
/external/webrtc/webrtc/modules/video_coding/
H A Dvideo_receiver.cc293 int qp = -1; local
294 if (qp_parser_.GetQp(*frame, &qp)) {
295 encoded_image.qp_ = qp;

Completed in 1565 milliseconds

12