HomeSort by relevance Sort by last modified time
    Searched refs:qp (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /external/webrtc/webrtc/test/fuzzers/
vp8_qp_parser_fuzzer.cc 14 int qp; local
15 vp8::GetQp(data, size, &qp);
  /external/webrtc/webrtc/modules/video_coding/utility/
qp_parser.cc 18 bool QpParser::GetQp(const VCMEncodedFrame& frame, int* qp) {
21 // QP range: [0, 127].
22 return vp8::GetQp(frame.Buffer(), frame.Length(), qp);
qp_parser.h 23 // Parses an encoded |frame| and extracts the |qp|.
25 bool GetQp(const VCMEncodedFrame& frame, int* qp);
vp8_header_parser.h 60 // Gets the QP, QP range: [0, 127].
62 bool GetQp(const uint8_t* buf, size_t length, int* qp);
  /external/syslinux/gpxe/src/net/
infiniband.c 147 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->list, &ibdev->qps )
324 struct ib_queue_pair *qp; local
342 struct ib_queue_pair *qp; local
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
ib_mcast.h 19 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,
ib_cm.h 23 * @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,
infiniband.h 96 struct ib_queue_pair *qp; member in struct:ib_work_queue
125 /** List of multicast GIDs on this QP */
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 );
    [all...]
  /external/libavc/encoder/
ih264e_debug.h 43 #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);
ih264e_utils.h 264 * 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/
libunwind-dynamic.h 86 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, when, num_frames)
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
h264_bitstream_parser_unittest.cc 22 // Contains enough of the image slice to contain slice QP.
30 // Contains enough of the image slice to contain slice QP.
37 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));
    [all...]
  /external/google-breakpad/src/third_party/libdisasm/
x86_imm.c 11 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/
ib_mcast.c 81 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,
    [all...]
ib_cm.c 160 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
    [all...]
ib_cmrc.c 79 struct ib_queue_pair *qp; member in struct:ib_cmrc_connection
86 /** QP is connected */
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 );
    [all...]
ib_packet.c 42 * @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 = NULL
    [all...]
ib_mi.c 113 * @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 ) ) != 0 )
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/
polynomial.h 18 isl_ctx *isl_qpolynomial_get_ctx(__isl_keep isl_qpolynomial *qp);
20 __isl_keep isl_qpolynomial *qp);
21 __isl_give isl_space *isl_qpolynomial_get_space(__isl_keep isl_qpolynomial *qp);
22 unsigned isl_qpolynomial_dim(__isl_keep isl_qpolynomial *qp,
24 int isl_qpolynomial_involves_dims(__isl_keep isl_qpolynomial *qp,
28 __isl_take isl_qpolynomial *qp,
40 __isl_give isl_qpolynomial *isl_qpolynomial_copy(__isl_keep isl_qpolynomial *qp);
41 void *isl_qpolynomial_free(__isl_take isl_qpolynomial *qp);
45 int isl_qpolynomial_is_zero(__isl_keep isl_qpolynomial *qp);
46 int isl_qpolynomial_is_nan(__isl_keep isl_qpolynomial *qp);
    [all...]
  /external/syslinux/gpxe/src/drivers/infiniband/
linda.c 467 * @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 ) {
    [all...]
hermon.c 832 * @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 ) |
865 DBGC ( hermon, "Hermon %p unsupported QP type %d\n",
866 hermon, qp->type );
875 * @v qp Queue pair
878 struct ib_queue_pair *qp ) {
1426 struct ib_queue_pair *qp; local
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
temporal_layers.h 53 virtual void FrameEncoded(unsigned int size, uint32_t timestamp, int qp) = 0;
  /hardware/intel/common/libva/va/vendor/intel/
va_intel_statistics.h 72 /** \brief Qp input surface. It is valid only when mb_qp is set to 1.
74 * One Qp per 16x16 block in raster scan order, each Qp is a signed char (8-bit) value.
76 VASurfaceID qp; member in struct:_VAStatsStatisticsParameter16x16Intel
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
term_entry.h 102 #define for_entry_list(qp) for (qp = _nc_head; qp; qp = qp->next)
  /external/syslinux/gpxe/src/drivers/net/
ipoib.c 59 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 __unused
    [all...]

Completed in 1491 milliseconds

1 2 3 4 5 6