[go: nahoru, domu]

Searched defs:fill (Results 1 - 14 of 14) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
H A Dh264bsdFillRow7.s27 fill RN 1 label
67 STRB tmp1, [fill], #1
87 ; STR tmp2, [fill], #4
91 ; STR tmp2, [fill], #4
95 ; STR tmp2, [fill],#4
99 ; STR tmp2, [fill],#4
103 ; STR tmp2, [fill], #4
107 ; STR tmp2, [fill], #4
111 ; STR tmp2, [fill], #4
115 ; STR tmp2, [fill], #
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dh264bsdFillRow7.S27 #define fill r1 define
44 void h264bsdFillRow7(const u8 * ref, u8 * fill, i32 left, i32 center,
58 STRB tmp1, [fill], #1
79 VST1.8 {qTmp0}, [fill]!
80 VST1.8 {qTmp1}, [fill]!
86 VST1.8 {dTmp0,dTmp1,dTmp2}, [fill]!
87 STR tmp2, [fill],#4
92 VST1.8 {dTmp0,dTmp1,dTmp2}, [fill]!
98 VST1.8 {qTmp0}, [fill]!
99 STR tmp2, [fill],#
[all...]
/frameworks/opt/bitmap/src/com/android/bitmap/util/
H A DInputStreamBuffer.java117 * {@link #fill(int)} will be called first, and the byte at the index returned.
144 * stream. One side effect is {@link #fill(int)} will be called.
172 return fill(index);
184 * Advancing does not fill the internal buffer. The next {@link #get(int)} or
185 * {@link #has(int)} call will fill the buffer.
242 * Attempt to fill the internal buffer fully. The buffer will be modified such that the
261 private boolean fill(final int index) { method in class:InputStreamBuffer
262 Trace.beginSection("fill");
270 // Can't fill buffer anymore if input stream is consumed.
292 // Read from input stream to fill buffe
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DInputStreamBuffer.java117 * {@link #fill(int)} will be called first, and the byte at the index returned.
144 * stream. One side effect is {@link #fill(int)} will be called.
172 return fill(index);
184 * Advancing does not fill the internal buffer. The next {@link #get(int)} or
185 * {@link #has(int)} call will fill the buffer.
242 * Attempt to fill the internal buffer fully. The buffer will be modified such that the
261 private boolean fill(final int index) { method in class:InputStreamBuffer
262 Trace.beginSection("fill");
270 // Can't fill buffer anymore if input stream is consumed.
292 // Read from input stream to fill buffe
[all...]
/frameworks/base/libs/hwui/
H A DGlop.h79 * Includes all of the mesh, fill, and GL state required to perform
142 } fill; member in struct:android::uirenderer::Glop
164 * Defined by fill step, but can be force-enabled by presence of kAlpha_Attrib
H A DGlopBuilder.cpp241 mOutGlop->fill.color = {
248 mOutGlop->fill.color = { 1, 1, 1, alpha };
251 mOutGlop->fill.color = { 0, 0, 0, 1 };
255 if (mOutGlop->fill.color.a < 1.0f
257 || (mOutGlop->fill.texture.texture && mOutGlop->fill.texture.texture->blend)
289 mOutGlop->fill.filterMode = mDescription.colorOp = ProgramDescription::ColorFilterMode::Blend;
294 mOutGlop->fill.filter.color = {
301 mOutGlop->fill.filterMode = mDescription.colorOp = ProgramDescription::ColorFilterMode::Matrix;
303 float* colorMatrix = mOutGlop->fill
697 const Glop::Fill& fill = glop.fill; local
[all...]
/frameworks/base/libs/hwui/renderstate/
H A DRenderState.cpp242 const Glop::Fill& fill = glop.fill; local
249 mCaches->setProgram(fill.program);
251 if (fill.colorEnabled) {
252 fill.program->setColor(fill.color);
255 fill.program->set(orthoMatrix,
261 if (fill.filterMode == ProgramDescription::ColorFilterMode::Blend) {
262 const FloatColor& color = fill.filter.color;
265 } else if (fill
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_reconstruct.c2136 u8 *fill,
2144 ASSERT(fill);
2146 H264SwDecMemcpy(fill, ref, (u32)center);
2166 fill pointer where samples are stored
2172 u8 *fill,
2180 ASSERT(fill);
2187 *fill++ = tmp;
2190 *fill++ = *ref++;
2197 *fill++ = tmp;
2218 fill pointe
2134 FillRow1( u8 *ref, u8 *fill, i32 left, i32 center, i32 right) argument
2170 h264bsdFillRow7( u8 *ref, u8 *fill, i32 left, i32 center, i32 right) argument
2222 h264bsdFillBlock( u8 *ref, u8 *fill, i32 x0, i32 y0, u32 width, u32 height, u32 blockWidth, u32 blockHeight, u32 fillScanLength) argument
[all...]
/frameworks/base/libs/hwui/tests/unit/
H A DFrameBuilderTests.cpp565 Rect fill = opList.states[0]->computedState.clippedBounds; local
570 EXPECT_TRUE(stroke.contains(fill));
571 EXPECT_FALSE(fill.contains(stroke));
574 Rect outsetFill(fill);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearLayoutManager.java459 // 2) fill towards start, stacking from bottom
460 // 3) fill towards end, stacking from top
550 // fill towards start
553 fill(recycler, mLayoutState, state, false);
559 // fill towards end
563 fill(recycler, mLayoutState, state, false);
571 fill(recycler, mLayoutState, state, false);
575 // fill towards end
578 fill(recycler, mLayoutState, state, false);
584 // fill toward
1362 int fill(RecyclerView.Recycler recycler, LayoutState layoutState, method in class:LinearLayoutManager
[all...]
H A DStaggeredGridLayoutManager.java140 * Temporary variable used during fill method to check which spans needs to be filled.
657 fill(recycler, mLayoutState, state);
661 fill(recycler, mLayoutState, state);
665 fill(recycler, mLayoutState, state);
669 fill(recycler, mLayoutState, state);
1521 private int fill(RecyclerView.Recycler recycler, LayoutState layoutState, method in class:StaggeredGridLayoutManager
1915 * @return True if last span is the first one we want to fill
2067 int consumed = fill(recycler, mLayoutState, state);
2198 fill(recycler, mLayoutState, state);
2280 * expected to fill al
[all...]
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWC2On1Adapter.cpp1531 const char* fill = " "; local
1547 output << fill << "Display frame: " << rectString(hwcLayer.displayFrame) <<
1550 output << fill << "Source crop: "; local
1557 output << fill << "Transform: " << hwc1TransformString(hwcLayer.transform);
1565 output << fill << "Hints:"; local
1576 output << fill << "Flags:"; local
1592 const char* fill = " "; local
1595 output << fill << "Geometry changed: " <<
1598 output << fill << hwcContents.numHwLayers << " Layer" <<
1601 output << fill << " Laye
2154 const char* fill = " "; local
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...

Completed in 305 milliseconds