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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
lp.s 1 .version 545lp
  /frameworks/base/core/tests/coretests/src/android/preference/
ListPreferenceTest.java 26 ListPreference lp = new ListPreference(getContext()); local
27 lp.setEntries(entries);
28 lp.setEntryValues(entryValues);
30 lp.setValue(entryValues[1]);
31 assertTrue(lp.getSummary() == null);
33 lp.setSummary("%1$s");
34 assertEquals(entries[1], lp.getSummary());
36 lp.setValue(entryValues[2]);
37 assertEquals(entries[2], lp.getSummary());
39 lp.setSummary(null)
    [all...]
  /frameworks/support/compat/java/android/support/v4/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/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_surface.c 52 struct llvmpipe_context *lp = llvmpipe_context(pipe); local
54 boolean changed = !util_framebuffer_state_equal(&lp->framebuffer, fb);
61 util_copy_framebuffer_state(&lp->framebuffer, fb);
64 pipe_surface_reference(&lp->framebuffer.zsbuf, NULL);
68 if (lp->framebuffer.zsbuf) {
71 depth_bits = util_format_get_component_bits(lp->framebuffer.zsbuf->format,
80 lp->mrd = mrd;
81 draw_set_mrd(lp->draw, mrd);
84 lp_setup_bind_framebuffer( lp->setup, &lp->framebuffer )
    [all...]
lp_draw_arrays.c 55 struct llvmpipe_context *lp = llvmpipe_context(pipe); local
56 struct draw_context *draw = lp->draw;
60 if (!llvmpipe_check_render_cond(lp))
63 if (lp->dirty)
64 llvmpipe_update_derived( lp );
69 for (i = 0; i < lp->num_vertex_buffers; i++) {
70 const void *buf = lp->vertex_buffer[i].user_buffer;
72 buf = llvmpipe_resource_data(lp->vertex_buffer[i].buffer);
78 mapped_indices = lp->index_buffer.user_buffer;
80 mapped_indices = llvmpipe_resource_data(lp->index_buffer.buffer)
    [all...]
lp_surface.h 39 llvmpipe_init_surface_functions(struct llvmpipe_context *lp);
lp_state_so.c 56 struct llvmpipe_context *lp = llvmpipe_context(pipe); local
59 lp->so = lp_so;
61 lp->dirty |= LP_NEW_SO;
64 draw_set_so_state(lp->draw, &lp_so->base);
79 struct llvmpipe_context *lp = llvmpipe_context(pipe); local
87 lp->dirty |= LP_NEW_SO_BUFFERS;
95 lp->so_target.num_buffers = 0;
96 draw_set_mapped_so_buffers(lp->draw, 0, 0);
100 lp->so_target.buffer[i] = res;
101 lp->so_target.offset[i] = offsets[i]
    [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...]
  /device/google/dragon/audio/hal/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);
  /packages/apps/Launcher3/src/com/android/launcher3/
ShortcutAndWidgetContainer.java 62 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); local
64 if ((lp.cellX <= x) && (x < lp.cellX + lp.cellHSpan) &&
65 (lp.cellY <= y) && (y < lp.cellY + lp.cellVSpan)) {
89 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); local
92 lp.setup(mCellWidth, mCellHeight, invertLayoutHorizontally(), mCountX,
95 lp.setup(mCellWidth, mCellHeight, invertLayoutHorizontally(), mCountX)
110 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); local
147 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); local
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DetailsOverviewLogoPresenter.java 95 ViewGroup.LayoutParams lp = view.getLayoutParams(); local
96 vh.setSizeFromDrawableIntrinsic(lp.width == ViewGroup.LayoutParams.WRAP_CONTENT
97 && lp.height == ViewGroup.LayoutParams.WRAP_CONTENT);
142 ViewGroup.LayoutParams lp = imageView.getLayoutParams(); local
143 lp.width = row.getImageDrawable().getIntrinsicWidth();
144 lp.height = row.getImageDrawable().getIntrinsicHeight();
148 if (lp.width > imageView.getMaxWidth()) {
149 maxScaleWidth = imageView.getMaxWidth() / (float) lp.width;
154 if (lp.height > imageView.getMaxHeight()) {
155 maxScaleHeight = imageView.getMaxHeight() / (float) lp.height
    [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 106 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); local
107 lp.hide = true;
121 LayoutParams lp = (LayoutParams) getChildAt(i).getLayoutParams(); local
136 int newHeight = Math.max(totalHeight, totalHeight + childHeight + lp.topMargin +
137 lp.bottomMargin + spacing);
147 lp.hide = false;
162 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
164 if (child.getVisibility() == GONE || lp.hide) {
179 mPaddingLeft + mPaddingRight + lp.leftMargin + lp.rightMargin
    [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);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arc/
lp.s 0 # lp test
5 lp text_label
34 lp.d text_label
35 lp.nd text_label
36 lp.jd text_label
  /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...]
  /packages/apps/Launcher2/src/com/android/launcher2/
ShortcutAndWidgetContainer.java 64 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); local
66 if ((lp.cellX <= x) && (x < lp.cellX + lp.cellHSpan) &&
67 (lp.cellY <= y) && (y < lp.cellY + lp.cellVSpan)) {
84 final CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); local
86 canvas.drawRect(lp.x, lp.y, lp.x + lp.width, lp.y + lp.height, p)
117 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); local
140 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); local
    [all...]

Completed in 549 milliseconds

1 2 3 4 5 6 7 8 91011>>