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

1 2 3 4 5 6 7 8 91011>>

  /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_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...]
  /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);
  /external/google-breakpad/src/third_party/libdisasm/
x86_imm.c 10 int32_t *lp = (int32_t *) dest; local
32 *lp = *((int32_t *) buf);
42 uint32_t *lp = (uint32_t *) dest; local
64 *lp = *((uint32_t *) buf);
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_remainder.c 38 u_int32_t sx,lx,lp; local
42 EXTRACT_WORDS(hp,lp,p);
48 if((hp|lp)==0) return (x*p)/(x*p); /* p = 0 */
51 (((hp-0x7ff00000)|lp)!=0)))
56 if (((hx-hp)|(lx-lp))==0) return zero*x;
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraCtsActivity.java 37 ViewGroup.LayoutParams lp = mSurfaceView.getLayoutParams(); local
38 lp.width = LAYOUT_WIDTH;
39 lp.height = LAYOUT_HEIGHT;
40 mSurfaceView.setLayoutParams(lp);
  /external/fdlibm/
e_remainder.c 40 unsigned sx,lx,lp; local
46 lp = __LO(p); /* low word of p */
52 if((hp|lp)==0) return (x*p)/(x*p); /* p = 0 */
55 (((hp-0x7ff00000)|lp)!=0)))
60 if (((hx-hp)|(lx-lp))==0) return zero*x;
  /external/mksh/src/
lalloc.c 46 void *lp; local
57 *lpp = (lp = ptr - ALLOC_SIZE);
59 while (ap->next != lp)
87 ALLOC_ITEM *lp = NULL; local
93 pp = findptr(&lp, ptr, ap);
94 pp->next = lp->next;
98 (lp = remalloc(lp, numb + ALLOC_SIZE)) == NULL
100 || ALLOC_ISUNALIGNED(lp)
105 lp->next = ap->next
115 ALLOC_ITEM *lp, *pp; local
128 ALLOC_ITEM *lp; local
    [all...]
  /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...]
  /external/clang/test/Sema/
overloadable-complex.c 18 int *lp = foo(dc); local
27 long *lp = foo(dc); local
  /external/clang/test/SemaCXX/
complex-overload.cpp 18 int *lp = foo(dc); local
27 long *lp = foo(dc); local
  /external/libvpx/libvpx/vp8/common/
reconintra4x4.c 105 unsigned int lp[4]; local
106 lp[0] = (top_left + 2 * Left[0] + Left[1] + 2) >> 2;
107 lp[1] = (Left[0] + 2 * Left[1] + Left[2] + 2) >> 2;
108 lp[2] = (Left[1] + 2 * Left[2] + Left[3] + 2) >> 2;
109 lp[3] = (Left[2] + 2 * Left[3] + Left[3] + 2) >> 2;
115 dst[c] = lp[r];
  /frameworks/base/core/tests/coretests/src/android/view/
IncludeTest.java 75 final ViewGroup.LayoutParams lp = button1.getLayoutParams(); local
76 assertEquals("Included button should be 23dip x 23dip", 23, lp.width);
77 assertEquals("Included button should be 23dip x 23dip", 23, lp.height);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemsExpandOnSelection.java 46 final AbsListView.LayoutParams lp = new AbsListView.LayoutParams( local
49 result.setLayoutParams(lp);
  /frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
GridLayoutTest.java 41 GridLayout.LayoutParams lp = new GridLayout.LayoutParams(rowSpec, colSpec); local
42 //GridLayout.LayoutParams lp = new GridLayout.LayoutParams();
43 lp.setGravity(va | ha);
45 container.addView(v, lp);
LayoutInsetsTest.java 43 LayoutParams lp = new LayoutParams(); local
44 lp.setGravity(GRAVITIES[(i % N)]);
45 p.addView(c, lp);
LinearLayoutTest.java 36 LayoutParams lp = new LayoutParams(WRAP_CONTENT, WRAP_CONTENT); local
37 lp.gravity = va | ha;
39 container.addView(v, lp);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
BrowseRowsFrameLayout.java 46 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams(); local
48 getPaddingLeft() + getPaddingRight() + widthUsed, lp.width);
50 getPaddingTop() + getPaddingBottom() + heightUsed, lp.height);
  /frameworks/support/v4/java/android/support/v4/app/
NoSaveStateFrameLayout.java 37 NoSaveStateFrameLayout.LayoutParams lp = new NoSaveStateFrameLayout.LayoutParams( local
39 child.setLayoutParams(lp);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
reconintra4x4.c 105 unsigned int lp[4]; local
106 lp[0] = (top_left + 2 * Left[0] + Left[1] + 2) >> 2;
107 lp[1] = (Left[0] + 2 * Left[1] + Left[2] + 2) >> 2;
108 lp[2] = (Left[1] + 2 * Left[2] + Left[3] + 2) >> 2;
109 lp[3] = (Left[2] + 2 * Left[3] + Left[3] + 2) >> 2;
115 dst[c] = lp[r];
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ViewLayoutUtils.java 49 final ViewGroup.LayoutParams lp = view.getLayoutParams(); local
50 if (lp instanceof MarginLayoutParams) {
51 final MarginLayoutParams marginLayoutParams = (MarginLayoutParams)lp;
75 final ViewGroup.LayoutParams lp = view.getLayoutParams(); local
76 if (lp instanceof LinearLayout.LayoutParams) {
77 final LinearLayout.LayoutParams params = (LinearLayout.LayoutParams)lp;
82 } else if (lp instanceof FrameLayout.LayoutParams) {
83 final FrameLayout.LayoutParams params = (FrameLayout.LayoutParams)lp;
90 + lp.getClass().getName());
  /cts/tests/leanbackjank/app/src/android/cts/jank/leanback/
Utils.java 97 FrameLayout.LayoutParams lp = new FrameLayout.LayoutParams(w, h); local
98 lp.setMargins(marginLeft, marginTop, marginRight, marginBottom);
99 videoView.setLayoutParams(lp);
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
SystemBarHelper.java 234 final ViewGroup.MarginLayoutParams lp = local
238 if (bottomMargin < lp.bottomMargin + view.getHeight()) {
239 lp.setMargins(lp.leftMargin, lp.topMargin, lp.rightMargin, bottomMargin);
240 view.setLayoutParams(lp);
  /packages/apps/Browser/src/com/android/browser/preferences/
AdvancedPreferencesFragment.java 130 ListPreference lp = (ListPreference) pref; local
131 lp.setValue((String) objValue);
132 updateListPreferenceSummary(lp);

Completed in 1516 milliseconds

1 2 3 4 5 6 7 8 91011>>