Home
last modified time | relevance | path

Searched refs:front (Results 1 – 25 of 609) sorted by relevance

12345678910>>...25

/OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/display/
H A Dintel_frontbuffer.c163 void __intel_fb_invalidate(struct intel_frontbuffer *front, in __intel_fb_invalidate() argument
167 struct drm_i915_private *i915 = to_i915(front->obj->base.dev); in __intel_fb_invalidate()
182 void __intel_fb_flush(struct intel_frontbuffer *front, in __intel_fb_flush() argument
186 struct drm_i915_private *i915 = to_i915(front->obj->base.dev); in __intel_fb_flush()
202 struct intel_frontbuffer *front = in frontbuffer_active() local
203 container_of(ref, typeof(*front), write); in frontbuffer_active()
205 kref_get(&front->ref); in frontbuffer_active()
212 struct intel_frontbuffer *front = in frontbuffer_retire() local
213 container_of(ref, typeof(*front), write); in frontbuffer_retire()
215 intel_frontbuffer_flush(front, ORIGIN_CS); in frontbuffer_retire()
[all …]
H A Dintel_frontbuffer.h58 void intel_frontbuffer_put(struct intel_frontbuffer *front);
63 struct intel_frontbuffer *front; in __intel_frontbuffer_get() local
70 front = rcu_dereference(obj->frontbuffer); in __intel_frontbuffer_get()
71 if (!front) in __intel_frontbuffer_get()
74 if (unlikely(!kref_get_unless_zero(&front->ref))) in __intel_frontbuffer_get()
77 if (likely(front == rcu_access_pointer(obj->frontbuffer))) in __intel_frontbuffer_get()
80 intel_frontbuffer_put(front); in __intel_frontbuffer_get()
84 return front; in __intel_frontbuffer_get()
90 void __intel_fb_invalidate(struct intel_frontbuffer *front,
105 static inline bool intel_frontbuffer_invalidate(struct intel_frontbuffer *front, in intel_frontbuffer_invalidate() argument
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/netronome/nfp/crypto/
H A Dtls.c153 nfp_net_tls_set_ipver_vlan(struct nfp_crypto_req_add_front *front, u8 ipver) in nfp_net_tls_set_ipver_vlan() argument
155 front->ipver_vlan = cpu_to_be16(FIELD_PREP(NFP_NET_TLS_IPVER, ipver) | in nfp_net_tls_set_ipver_vlan()
162 struct nfp_crypto_req_add_front *front) in nfp_net_tls_assign_conn_id() argument
168 len = front->key_len - NFP_NET_TLS_NON_ADDR_KEY_LEN; in nfp_net_tls_assign_conn_id()
170 memcpy(front->l3_addrs, &id, sizeof(id)); in nfp_net_tls_assign_conn_id()
171 memset(front->l3_addrs + sizeof(id), 0, len - sizeof(id)); in nfp_net_tls_assign_conn_id()
180 req->front.key_len += sizeof(__be32) * 2; in nfp_net_tls_set_ipv4()
183 nfp_net_tls_assign_conn_id(nn, &req->front); in nfp_net_tls_set_ipv4()
199 req->front.key_len += sizeof(struct in6_addr) * 2; in nfp_net_tls_set_ipv6()
202 nfp_net_tls_assign_conn_id(nn, &req->front); in nfp_net_tls_set_ipv6()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/sequence/intrinsic/
H A Dfront.hpp23 struct front struct
30 inline typename result_of::front<Sequence>::type
31 front(Sequence& seq) in front() function
38 inline typename result_of::front<Sequence const>::type
39 front(Sequence const& seq) in front() function
/OK3568_Linux_fs/kernel/Documentation/sound/designs/
H A Dchannel-mapping-api.rst18 ``{ front left, front right, rear left, rear right }.``
89 SNDRV_CHMAP_FL, /* front left */
90 SNDRV_CHMAP_FR, /* front right */
93 SNDRV_CHMAP_FC, /* front center */
99 SNDRV_CHMAP_FLC, /* front left center */
100 SNDRV_CHMAP_FRC, /* front right center */
103 SNDRV_CHMAP_FLW, /* front left wide */
104 SNDRV_CHMAP_FRW, /* front right wide */
105 SNDRV_CHMAP_FLH, /* front left high */
106 SNDRV_CHMAP_FCH, /* front center high */
[all …]
/OK3568_Linux_fs/external/xserver/hw/xfree86/drivers/modesetting/
H A Ddri2.c65 DRI2BufferPtr front; member
410 if (info->front) in ms_dri2_del_frame_event()
411 ms_dri2_destroy_buffer(NULL, info->front); in ms_dri2_del_frame_event()
505 update_front(DrawablePtr draw, DRI2BufferPtr front) in update_front() argument
509 ms_dri2_buffer_private_ptr priv = front->driverPrivate; in update_front()
518 front->name = name; in update_front()
521 front->pitch = pixmap->devKind; in update_front()
522 front->cpp = pixmap->drawable.bitsPerPixel / 8; in update_front()
531 DRI2BufferPtr front, DRI2BufferPtr back) in can_exchange() argument
533 ms_dri2_buffer_private_ptr front_priv = front->driverPrivate; in can_exchange()
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/gem/
H A Di915_gem_object.c354 struct intel_frontbuffer *front; in __i915_gem_object_flush_frontbuffer() local
356 front = __intel_frontbuffer_get(obj); in __i915_gem_object_flush_frontbuffer()
357 if (front) { in __i915_gem_object_flush_frontbuffer()
358 intel_frontbuffer_flush(front, origin); in __i915_gem_object_flush_frontbuffer()
359 intel_frontbuffer_put(front); in __i915_gem_object_flush_frontbuffer()
366 struct intel_frontbuffer *front; in __i915_gem_object_invalidate_frontbuffer() local
368 front = __intel_frontbuffer_get(obj); in __i915_gem_object_invalidate_frontbuffer()
369 if (front) { in __i915_gem_object_invalidate_frontbuffer()
370 intel_frontbuffer_invalidate(front, origin); in __i915_gem_object_invalidate_frontbuffer()
371 intel_frontbuffer_put(front); in __i915_gem_object_invalidate_frontbuffer()
/OK3568_Linux_fs/kernel/drivers/video/rockchip/rga3/
H A Drga_iommu.c101 if ((t->back - t->front) > t->size) { in rga_mmu_buf_get_try()
102 if (t->front + size > t->back - t->size) { in rga_mmu_buf_get_try()
104 t->front, t->back, t->size, size); in rga_mmu_buf_get_try()
109 if ((t->front + size) > t->back) { in rga_mmu_buf_get_try()
111 t->front, t->back, t->size, size); in rga_mmu_buf_get_try()
116 if (t->front + size > t->size) { in rga_mmu_buf_get_try()
119 t->front, t->back, t->size, size); in rga_mmu_buf_get_try()
123 t->front = 0; in rga_mmu_buf_get_try()
145 buf = mmu_base->buf_virtual + mmu_base->front; in rga_mmu_buf_get()
147 mmu_base->front += size; in rga_mmu_buf_get()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/is_simple/
H A Dlinear.hpp88 , m_is_closed(geometry::equals(range::front(linestring), in is_acceptable_turn()
120 ! geometry::equals(range::front(linestring), in is_boundary_point_of()
123 (geometry::equals(point, range::front(linestring)) in is_boundary_point_of()
137 geometry::equals(range::front(linestring), range::back(linestring)) in is_closing_point_of()
148 geometry::equals(range::front(ls1), range::front(ls2)) in have_same_boundary_points()
152 (geometry::equals(range::front(ls1), range::back(ls2)) in have_same_boundary_points()
154 geometry::equals(range::back(ls1), range::front(ls2))) in have_same_boundary_points()
H A Ddebug_print_boundary_points.hpp54 std::cout << " " << geometry::dsv(range::front(linestring)); in apply()
74 && !geometry::equals(range::front(*it), range::back(*it)) ) in apply()
76 boundary_points.push_back( range::front(*it) ); in apply()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/
H A Dshape_annotation_impl.hpp43 if (!ring.empty() && ring.front() != ring.back()) { in operator ()()
44 ring.emplace_back(ring.front()); in operator ()()
53 if (!ring.empty() && ring.front() != ring.back()) { in operator ()()
54 ring.emplace_back(ring.front()); in operator ()()
/OK3568_Linux_fs/kernel/drivers/gpu/drm/udl/
H A Dudl_transfer.c40 const unsigned long *front = (const unsigned long *) *bfront;
47 if (back[j] != front[j]) {
54 if (back[k] != front[k]) {
61 *bfront = (u8 *) &front[start];
213 const char *front, char **urb_buf_ptr, in udl_render_hline() argument
225 line_start = (u8 *) (front + byte_offset); in udl_render_hline()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/
H A Dfront.hpp28 struct front struct
32 BOOST_MPL_AUX_LAMBDA_SUPPORT(1,front,(Sequence))
35 BOOST_MPL_AUX_NA_SPEC(1, front)
/OK3568_Linux_fs/kernel/drivers/md/bcache/
H A Dutil.h118 size_t front, back, size, mask; \
123 for (iter = (fifo)->front; \
136 (fifo)->front = (fifo)->back = 0; \
162 #define fifo_used(fifo) (((fifo)->back - (fifo)->front) & (fifo)->mask)
168 #define fifo_front(fifo) ((fifo)->data[(fifo)->front])
188 (i) = (fifo)->data[(fifo)->front++]; \
189 (fifo)->front &= (fifo)->mask; \
198 --(fifo)->front; \
199 (fifo)->front &= (fifo)->mask; \
200 (fifo)->data[(fifo)->front] = (i); \
[all …]
/OK3568_Linux_fs/buildroot/package/taglib/
H A D0002-Don-t-assume-TDRC-is-an-instance-of-TextIdentificationFrame.patch24 - static_cast<TextIdentificationFrame *>(tag->frameList("TDRC").front());
25 + dynamic_cast<TextIdentificationFrame *>(tag->frameList("TDRC").front());
26 UnknownFrame *tdat = static_cast<UnknownFrame *>(tag->frameList("TDAT").front());
31 tdrc->fieldList().front().size() == 4 &&
/OK3568_Linux_fs/kernel/Documentation/admin-guide/
H A Dpstore-blk.rst75 The chunk size in KB for oops/panic front-end. It **MUST** be a multiple of 4.
78 There are multiple chunks for oops/panic front-end depending on the remaining
79 space except other pstore front-ends.
87 The chunk size in KB for pmsg front-end. It **MUST** be a multiple of 4.
90 Unlike oops/panic front-end, there is only one chunk for pmsg front-end.
99 The chunk size in KB for console front-end. It **MUST** be a multiple of 4.
102 Similar to pmsg front-end, there is only one chunk for console front-end.
110 The chunk size in KB for ftrace front-end. It **MUST** be a multiple of 4.
113 Similar to oops front-end, there are multiple chunks for ftrace front-end
186 files is ``dmesg-pstore-blk-[N]`` for oops/panic front-end,
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/sequence/
H A Dintrinsic_fwd.hpp71 struct front;
176 typename result_of::front<Sequence>::type
177 front(Sequence& seq);
181 typename result_of::front<Sequence const>::type
182 front(Sequence const& seq);
/OK3568_Linux_fs/kernel/net/ceph/
H A Dmon_client.c111 monc->m_auth->front.iov_len = len; in __send_prepared_auth_request()
200 monc->m_auth->front.iov_base, in __open_session()
262 void *p = msg->front.iov_base; in __send_subscribe()
303 msg->front.iov_len = p - msg->front.iov_base; in __send_subscribe()
304 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len); in __send_subscribe()
313 struct ceph_mon_subscribe_ack *h = msg->front.iov_base; in handle_subscribe_ack()
315 if (msg->front.iov_len < sizeof(*h)) in handle_subscribe_ack()
476 p = msg->front.iov_base; in ceph_monc_handle_map()
477 end = p + msg->front.iov_len; in ceph_monc_handle_map()
669 struct ceph_mon_statfs_reply *reply = msg->front.iov_base; in handle_statfs_reply()
[all …]
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/xcore/
H A Dtask_service.h122 in_params_.front().state == ParamState::kReadyForProcess)); in loop()
130 auto param = std::move(in_params_.front()); in loop()
245 (out_params_.front().state == ParamState::kAllocated || in dequeue()
246 out_params_.front().state == ParamState::kProcessedSuccess || in dequeue()
247 out_params_.front().state == ParamState::kProcessedError))) { in dequeue()
261 auto p = std::move(out_params_.front()); in dequeue()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/within/
H A Dpoint_in_geometry.hpp164 … if (detail::equals::equals_point_point(range::front(linestring), range::back(linestring))) in apply()
167 else if (detail::equals::equals_point_point(point, range::front(linestring)) in apply()
303 point_type const& front = range::front(*it); in apply() local
307 if ( detail::equals::equals_point_point(front, back) ) in apply()
311 if ( detail::equals::equals_point_point(point, front) in apply()
/OK3568_Linux_fs/kernel/Documentation/block/
H A Ddeadline-iosched.rst62 request, or it fits at the front. That is called either a back merge candidate
63 or a front merge candidate. Due to the way files are typically laid out,
64 back merges are much more common than front merges. For some work loads, you
66 front merge requests. Setting front_merges to 0 disables this functionality.
69 rbtree front sector lookup when the io scheduler merge function is called.
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/wagyu/0.4.3/include/mapbox/geometry/wagyu/
H A Dwagyu.hpp82 min = lm.left_bound.edges.front().top; in get_bounds()
86 min.y = std::min(min.y, lm.left_bound.edges.front().top.y); in get_bounds()
98 min = lm.right_bound.edges.front().top; in get_bounds()
102 min.y = std::min(min.y, lm.right_bound.edges.front().top.y); in get_bounds()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dtile_cover_impl.cpp38 if (points.back() == points.front()) { in start_list_on_local_minimum()
116 …const auto y = static_cast<uint32_t>(std::floor(clamp(to_max.points.front().y, 0.0, (double)maxTil… in build_bounds_map()
120 …const auto y = static_cast<uint32_t>(std::floor(clamp(to_min.points.front().y, 0.0, (double)maxTil… in build_bounds_map()
285 tileX = tileXSpans.front().first; in Impl()
332 && tileX < tileXSpans.front().second in hasNext()
342 if (tileX >= tileXSpans.front().second) { in next()
349 tileX = tileXSpans.front().first; in next()
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Daspeed-bmc-inspur-fp5280g2.dts162 front-memory {
163 label = "front-memory";
167 front-syshot {
168 label = "front-syshot";
172 front-syshealth {
173 label = "front-syshealth";
177 front-fan {
178 label = "front-fan";
182 front-psu {
183 label = "front-psu";
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/multiprecision/detail/functions/
H A Dconstants.hpp13 typedef typename mpl::front<typename T::signed_types>::type si_type; in calc_log2()
83 typedef typename mpl::front<typename T::unsigned_types>::type ui_type; in calc_e()
131 typedef typename mpl::front<typename T::unsigned_types>::type ui_type; in calc_pi()
132 typedef typename mpl::front<typename T::float_types>::type real_type; in calc_pi()
305 typedef typename mpl::front<typename T::unsigned_types>::type ui_type; in get_constant_one_over_epsilon()

12345678910>>...25