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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic54x/
lp.s 1 .version 545lp
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_draw_arrays.c 56 struct llvmpipe_context *lp = llvmpipe_context(pipe); local
57 struct draw_context *draw = lp->draw;
61 if (!llvmpipe_check_render_cond(lp))
69 if (lp->dirty)
70 llvmpipe_update_derived( lp );
75 for (i = 0; i < lp->num_vertex_buffers; i++) {
76 const void *buf = lp->vertex_buffer[i].user_buffer;
79 if (!lp->vertex_buffer[i].buffer) {
82 buf = llvmpipe_resource_data(lp->vertex_buffer[i].buffer);
83 size = lp->vertex_buffer[i].buffer->width0
    [all...]
lp_surface.h 39 llvmpipe_init_surface_functions(struct llvmpipe_context *lp);
lp_state_surface.c 52 struct llvmpipe_context *lp = llvmpipe_context(pipe); local
54 boolean changed = !util_framebuffer_state_equal(&lp->framebuffer, fb);
70 if (lp->framebuffer.zsbuf && lp->framebuffer.zsbuf->context != pipe) {
75 if (lp->framebuffer.cbufs[i] &&
76 lp->framebuffer.cbufs[i]->context != pipe) {
82 util_copy_framebuffer_state(&lp->framebuffer, fb);
85 pipe_surface_reference(&lp->framebuffer.zsbuf, NULL);
92 lp->floating_point_depth =
95 lp->mrd = util_get_depth_format_mrd(depth_desc)
    [all...]
lp_surface.c 67 struct llvmpipe_context *lp = llvmpipe_context(pipe); local
70 if (blit_info->render_condition_enable && !llvmpipe_check_render_cond(lp))
85 if (!util_blitter_is_blit_supported(lp->blitter, &info)) {
94 util_blitter_save_vertex_buffer_slot(lp->blitter, lp->vertex_buffer);
95 util_blitter_save_vertex_elements(lp->blitter, (void*)lp->velems);
96 util_blitter_save_vertex_shader(lp->blitter, (void*)lp->vs);
97 util_blitter_save_geometry_shader(lp->blitter, (void*)lp->gs)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/preference/
ListPreferenceTest.java 28 ListPreference lp = new ListPreference(getContext()); local
29 lp.setEntries(entries);
30 lp.setEntryValues(entryValues);
32 lp.setValue(entryValues[1]);
33 assertTrue(lp.getSummary() == null);
35 lp.setSummary("%1$s");
36 assertEquals(entries[1], lp.getSummary());
38 lp.setValue(entryValues[2]);
39 assertEquals(entries[2], lp.getSummary());
41 lp.setSummary(null)
    [all...]
  /frameworks/support/compat/src/main/java/androidx/core/view/
MarginLayoutParamsCompat.java 38 * @param lp LayoutParams to query
41 public static int getMarginStart(ViewGroup.MarginLayoutParams lp) {
43 return lp.getMarginStart();
45 return lp.leftMargin;
57 * @param lp LayoutParams to query
60 public static int getMarginEnd(ViewGroup.MarginLayoutParams lp) {
62 return lp.getMarginEnd();
64 return lp.rightMargin;
76 * @param lp LayoutParams to query
79 public static void setMarginStart(ViewGroup.MarginLayoutParams lp, int marginStart)
    [all...]
  /external/syslinux/gpxe/src/drivers/net/
amd8111e.c 114 static void amd8111e_init_hw_default(struct amd8111e_priv *lp);
115 static int amd8111e_start(struct amd8111e_priv *lp);
116 static int amd8111e_read_phy(struct amd8111e_priv *lp, int phy_addr, int reg, u32 *val);
118 static int amd8111e_write_phy(struct amd8111e_priv *lp, int phy_addr, int reg, u32 val);
120 static void amd8111e_probe_ext_phy(struct amd8111e_priv *lp);
121 static void amd8111e_disable_interrupt(struct amd8111e_priv *lp);
122 static void amd8111e_enable_interrupt(struct amd8111e_priv *lp);
123 static void amd8111e_force_interrupt(struct amd8111e_priv *lp);
124 static int amd8111e_get_mac_address(struct amd8111e_priv *lp);
125 static int amd8111e_init_rx_ring(struct amd8111e_priv *lp);
525 struct amd8111e_priv *lp = nic->priv_data; local
567 struct amd8111e_priv *lp = nic->priv_data; local
613 struct amd8111e_priv *lp = nic->priv_data; local
630 struct amd8111e_priv *lp = nic->priv_data; local
654 struct amd8111e_priv *lp = &amd8111e; local
    [all...]
depca.c 466 static struct depca_private lp;
481 lp.rx_cur = lp.tx_cur = 0;
483 for (i = 0; i <= lp.rxRingMask; i++) {
484 writel((p = lp.dma_buffs + i * RX_BUFF_SZ) | R_OWN, &lp.rx_ring[i].base);
485 writew(-RX_BUFF_SZ, &lp.rx_ring[i].buf_length);
486 lp.rx_memcpy[i] = (char *) (p + lp.bus_offset);
488 for (i = 0; i <= lp.txRingMask; i++)
    [all...]
  /external/adhd/cras/src/dsp/
crossover2.c 25 * data0 --+-- lp --> data0
31 static void lr42_split(struct lr42 *lp, struct lr42 *hp, int count,
35 float32x4_t x1 = {lp->x1L, hp->x1L, lp->x1R, hp->x1R};
36 float32x4_t x2 = {lp->x2L, hp->x2L, lp->x2R, hp->x2R};
37 float32x4_t y1 = {lp->y1L, hp->y1L, lp->y1R, hp->y1R};
38 float32x4_t y2 = {lp->y2L, hp->y2L, lp->y2R, hp->y2R}
    [all...]
crossover.c 29 * data0 --+-- lp --> data0
33 static void lr4_split(struct lr4 *lp, struct lr4 *hp, int count, float *data0,
36 float lx1 = lp->x1;
37 float lx2 = lp->x2;
38 float ly1 = lp->y1;
39 float ly2 = lp->y2;
40 float lz1 = lp->z1;
41 float lz2 = lp->z2;
42 float lb0 = lp->b0;
43 float lb1 = lp->b1
    [all...]
  /external/mksh/src/
lalloc.c 48 struct lalloc_item *lp = ptr; local
50 if (munmap(lp, lp->len))
57 struct lalloc_item *lp, *lold = ptr; local
64 if ((lp = mmap(NULL, size, PROT_READ | PROT_WRITE,
67 if (ALLOC_ISUNALIGNED(lp))
68 errx(1, "remalloc: unaligned(%p)", lp);
69 if (mprotect(((char *)lp) + 4096, 4096, PROT_NONE))
71 lp->len = size;
74 memcpy(((char *)lp) + 8192, ((char *)lold) + 8192
102 void *lp; local
143 struct lalloc_common *lp = NULL; local
171 struct lalloc_common *lp, *pp; local
184 struct lalloc_common *lp; local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
decoder_interpolate_lsf.c 39 int16_t lp[LPC_FILTERORDER + 1], *lsfdeq2; local
47 WebRtcIlbcfix_LspInterpolate2PolyDec(lp, (*iLBCdec_inst).lsfdeqold, lsfdeq,
49 WEBRTC_SPL_MEMCPY_W16(syntdenum,lp,lp_length);
50 WebRtcIlbcfix_BwExpand(weightdenum, lp, (int16_t*)WebRtcIlbcfix_kLpcChirpSyntDenum, (int16_t)lp_length);
56 WebRtcIlbcfix_LspInterpolate2PolyDec(lp, lsfdeq, lsfdeq2,
58 WEBRTC_SPL_MEMCPY_W16(syntdenum + pos,lp,lp_length);
59 WebRtcIlbcfix_BwExpand(weightdenum + pos, lp,
67 WebRtcIlbcfix_LspInterpolate2PolyDec(lp, iLBCdec_inst->lsfdeqold, lsfdeq,
69 WEBRTC_SPL_MEMCPY_W16(syntdenum+pos,lp,lp_length);
70 WebRtcIlbcfix_BwExpand(weightdenum+pos, lp,
    [all...]
simple_interpolate_lsf.c 50 int16_t lp[LPC_FILTERORDER + 1]; local
61 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsfdeqold, lsfdeq,
64 WEBRTC_SPL_MEMCPY_W16(syntdenum, lp, lp_length);
67 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsfold, lsf,
70 WebRtcIlbcfix_BwExpand(weightdenum, lp,
81 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsfdeq, lsfdeq2,
84 WEBRTC_SPL_MEMCPY_W16(syntdenum + pos, lp, lp_length);
87 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsf, lsf2,
90 WebRtcIlbcfix_BwExpand(weightdenum + pos, lp,
107 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsfdeqold, lsfdeq
    [all...]
  /development/apps/Development/src/com/android/development/
PointerLocation.java 36 WindowManager.LayoutParams lp = getWindow().getAttributes(); local
37 lp.screenBrightness = 1.0f;
38 getWindow().setAttributes(lp);
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
DetailsOverviewLogoPresenter.java 96 ViewGroup.LayoutParams lp = view.getLayoutParams(); local
97 vh.setSizeFromDrawableIntrinsic(lp.width == ViewGroup.LayoutParams.WRAP_CONTENT
98 && lp.height == ViewGroup.LayoutParams.WRAP_CONTENT);
143 ViewGroup.LayoutParams lp = imageView.getLayoutParams(); local
144 lp.width = row.getImageDrawable().getIntrinsicWidth();
145 lp.height = row.getImageDrawable().getIntrinsicHeight();
149 if (lp.width > imageView.getMaxWidth()) {
150 maxScaleWidth = imageView.getMaxWidth() / (float) lp.width;
155 if (lp.height > imageView.getMaxHeight()) {
156 maxScaleHeight = imageView.getMaxHeight() / (float) lp.height
    [all...]
  /frameworks/base/tests/net/java/com/android/server/connectivity/
DnsManagerTest.java 102 LinkProperties lp = new LinkProperties(); local
103 lp.setInterfaceName(TEST_IFACENAME);
104 lp.addDnsServer(InetAddress.getByName("3.3.3.3"));
105 lp.addDnsServer(InetAddress.getByName("4.4.4.4"));
108 mDnsManager.setDnsConfigurationForNetwork(TEST_NETID, lp, IS_DEFAULT);
109 mDnsManager.setDnsConfigurationForNetwork(TEST_NETID_ALTERNATE, lp, NOT_DEFAULT);
113 LinkProperties fixedLp = new LinkProperties(lp);
117 fixedLp = new LinkProperties(lp);
125 lp.addLinkAddress(new LinkAddress("192.0.2.4/24"));
126 lp.addRoute(new RouteInfo((IpPrefix) null, InetAddress.getByName("192.0.2.4")
171 LinkProperties lp = new LinkProperties(); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
EmojiLayoutParams.java 64 final LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) vp.getLayoutParams(); local
65 lp.height = mEmojiKeyboardHeight;
66 lp.bottomMargin = mEmojiPagerBottomMargin;
67 vp.setLayoutParams(lp);
71 final LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) v.getLayoutParams(); local
72 lp.height = mEmojiCategoryPageIdViewHeight;
73 v.setLayoutParams(lp);
81 final LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) ll.getLayoutParams(); local
82 lp.height = getActionBarHeight();
83 ll.setLayoutParams(lp);
87 final LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) v.getLayoutParams(); local
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
SoftInputWindow.java 50 WindowManager.LayoutParams lp = getWindow().getAttributes(); local
51 lp.token = token;
52 getWindow().setAttributes(lp);
112 WindowManager.LayoutParams lp = getWindow().getAttributes(); local
113 lp.gravity = gravity;
114 updateWidthHeight(lp);
115 getWindow().setAttributes(lp);
122 private void updateWidthHeight(WindowManager.LayoutParams lp) {
123 if (lp.gravity == Gravity.TOP || lp.gravity == Gravity.BOTTOM)
169 WindowManager.LayoutParams lp = getWindow().getAttributes(); local
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
DialogViewAnimator.java 57 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); local
58 final boolean matchWidth = lp.width == LayoutParams.MATCH_PARENT;
59 final boolean matchHeight = lp.height == LayoutParams.MATCH_PARENT;
72 + lp.leftMargin + lp.rightMargin);
78 + lp.topMargin + lp.bottomMargin);
110 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams(); local
113 if (lp.width == LayoutParams.MATCH_PARENT) {
116 - lp.leftMargin - lp.rightMargin
    [all...]
MessagingLinearLayout.java 85 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); local
86 lp.hide = true;
99 LayoutParams lp = (LayoutParams) getChildAt(i).getLayoutParams(); local
112 int newHeight = Math.max(totalHeight, totalHeight + childHeight + lp.topMargin +
113 lp.bottomMargin + spacing);
125 child.getMeasuredWidth() + lp.leftMargin + lp.rightMargin
127 lp.hide = false;
164 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); local
172 childLeft = childRight - childWidth - lp.rightMargin
205 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); local
239 final ViewGroup.LayoutParams lp = view.getLayoutParams(); local
    [all...]
  /frameworks/base/tests/SurfaceComposition/src/android/surfacecomposition/
CustomLayout.java 44 CustomLayout.LayoutParams lp = (CustomLayout.LayoutParams) child.getLayoutParams(); local
45 child.layout(lp.mLeft, lp.mTop, lp.mRight, lp.mBottom);
  /packages/apps/ExactCalculator/src/com/android/calculator2/
CalculatorScrollView.java 59 final ViewGroup.LayoutParams lp = child.getLayoutParams(); local
61 0 /* padding */, lp.width);
63 getPaddingTop() + getPaddingBottom(), lp.height);
75 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams(); local
77 lp.leftMargin + lp.rightMargin, lp.width);
79 getPaddingTop() + getPaddingBottom() + lp.topMargin + lp.bottomMargin, lp.height)
    [all...]
  /frameworks/av/packages/MediaComponents/src/com/android/widget/
BaseLayout.java 60 public LayoutParams generateLayoutParams_impl(LayoutParams lp) {
61 if (lp instanceof MarginLayoutParams) {
62 return lp;
64 return new MarginLayoutParams(lp);
85 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams(); local
87 child.getMeasuredWidth() + lp.leftMargin + lp.rightMargin);
89 child.getMeasuredHeight() + lp.topMargin + lp.bottomMargin);
92 if (lp.width == LayoutParams.MATCH_PARENT |
124 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams(); local
172 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams(); local
    [all...]
  /frameworks/support/media-widget/src/main/java/androidx/media/widget/
BaseLayout.java 72 public LayoutParams generateLayoutParams(LayoutParams lp) {
73 if (lp instanceof MarginLayoutParams) {
74 return lp;
76 return new MarginLayoutParams(lp);
97 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams(); local
99 child.getMeasuredWidth() + lp.leftMargin + lp.rightMargin);
101 child.getMeasuredHeight() + lp.topMargin + lp.bottomMargin);
104 if (lp.width == LayoutParams.MATCH_PAREN
138 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams(); local
184 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams(); local
    [all...]

Completed in 858 milliseconds

1 2 3 4 5 6 7 8 91011>>