/development/samples/devbytes/graphics/FoldingLayout/src/com/example/android/foldinglayout/ |
FoldingLayout.java | 98 private float [] mDst; 234 mDst = new float[NUM_OF_POLY_POINTS]; 413 mDst[0] = (anchorPoint > x * mFoldDrawWidth) ? anchorPoint + (x - midFold) * 415 mDst[1] = isEven ? 0 : topScaledPoint; 416 mDst[2] = mDst[0]; 417 mDst[3] = isEven ? mFoldDrawHeight: bottomScaledPoint; 418 mDst[4] = (anchorPoint > (x + 1) * mFoldDrawWidth) ? anchorPoint + (x + 1 - midFold) 420 mDst[5] = isEven ? topScaledPoint : 0; 421 mDst[6] = mDst[4] [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/graphics/ |
NinePatchDrawHelper.java | 35 private final RectF mDst = new RectF(); 47 mDst.top = top; 48 mDst.bottom = top + height; 66 mDst.top = top + height; 67 mDst.bottom = bottom; 94 mDst.left = dstLeft; 95 mDst.right = dstRight; 96 c.drawBitmap(bitmap, mSrc, mDst, paint);
|
/external/iproute2/ip/ |
ipmroute.c | 51 inet_prefix mdst; member in struct:rtfilter 99 if (tb[RTA_DST] && filter.mdst.bitlen > 0) { 103 if (inet_addr_match(&dst, &filter.mdst, filter.mdst.bitlen)) 194 filter.mdst.bitlen = -1; 242 get_prefix(&filter.mdst, *argv, family);
|
iproute.c | 131 inet_prefix mdst; member in struct:__anon22170 195 if (filter.mdst.family && 196 (r->rtm_family != filter.mdst.family || 197 (filter.mdst.bitlen >= 0 && filter.mdst.bitlen < r->rtm_dst_len))) 244 if (filter.mdst.family && filter.mdst.bitlen >= 0 && 245 inet_addr_match(&dst, &filter.mdst, r->rtm_dst_len)) [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/ |
EfiCompress.c | 240 STATIC UINT8 *mSrc, *mDst, *mSrcUpperLimit, *mDstUpperLimit;
306 mDst = DstBuffer;
307 mDstUpperLimit = mDst + *DstSize;
329 if (mDst < mDstUpperLimit) {
330 *mDst++ = 0;
336 mDst = DstBuffer;
373 if (mDst < mDstUpperLimit) {
374 *mDst++ = (UINT8)(((UINT8)(Data )) & 0xff);
377 if (mDst < mDstUpperLimit) {
378 *mDst++ = (UINT8)(((UINT8)(Data >> 0x08)) & 0xff); [all...] |
TianoCompress.c | 249 STATIC UINT8 *mSrc, *mDst, *mSrcUpperLimit, *mDstUpperLimit;
316 mDst = DstBuffer;
317 mDstUpperLimit = mDst +*DstSize;
337 if (mDst < mDstUpperLimit) {
338 *mDst++ = 0;
343 mDst = DstBuffer;
379 if (mDst < mDstUpperLimit) {
380 *mDst++ = (UINT8) (((UINT8) (Data)) & 0xff);
383 if (mDst < mDstUpperLimit) {
384 *mDst++ = (UINT8) (((UINT8) (Data >> 0x08)) & 0xff); [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/ |
EfiCompress.c | 250 STATIC UINT8 *mSrc, *mDst, *mSrcUpperLimit, *mDstUpperLimit;
316 mDst = DstBuffer;
317 mDstUpperLimit = mDst + *DstSize;
339 if (mDst < mDstUpperLimit) {
340 *mDst++ = 0;
346 mDst = DstBuffer;
383 if (mDst < mDstUpperLimit) {
384 *mDst++ = (UINT8)(((UINT8)(Data )) & 0xff);
387 if (mDst < mDstUpperLimit) {
388 *mDst++ = (UINT8)(((UINT8)(Data >> 0x08)) & 0xff); [all...] |
TianoCompress.c | 268 STATIC UINT8 *mSrc, *mDst, *mSrcUpperLimit, *mDstUpperLimit;
336 mDst = DstBuffer;
337 mDstUpperLimit = mDst + *DstSize;
357 if (mDst < mDstUpperLimit) {
358 *mDst++ = 0;
363 mDst = DstBuffer;
399 if (mDst < mDstUpperLimit) {
400 *mDst++ = (UINT8) (((UINT8) (Data)) & 0xff);
403 if (mDst < mDstUpperLimit) {
404 *mDst++ = (UINT8) (((UINT8) (Data >> 0x08)) & 0xff); [all...] |
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/ |
Compress.c | 78 STATIC UINT8 *mDst;
163 if (mDst < mDstUpperLimit) {
164 *mDst++ = (UINT8) (((UINT8) (Data)) & 0xff);
167 if (mDst < mDstUpperLimit) {
168 *mDst++ = (UINT8) (((UINT8) (Data >> 0x08)) & 0xff);
171 if (mDst < mDstUpperLimit) {
172 *mDst++ = (UINT8) (((UINT8) (Data >> 0x10)) & 0xff);
175 if (mDst < mDstUpperLimit) {
176 *mDst++ = (UINT8) (((UINT8) (Data >> 0x18)) & 0xff);
872 if (mDst < mDstUpperLimit) { [all...] |
/external/vboot_reference/utility/ |
eficompress.c | 260 STATIC UINT8 *mSrc, *mDst, *mSrcUpperLimit, *mDstUpperLimit; 326 mDst = DstBuffer; 327 mDstUpperLimit = mDst + *DstSize; 349 if (mDst < mDstUpperLimit) { 350 *mDst++ = 0; 356 mDst = DstBuffer; 393 if (mDst < mDstUpperLimit) { 394 *mDst++ = (UINT8)(((UINT8)(Data )) & 0xff); 397 if (mDst < mDstUpperLimit) { 398 *mDst++ = (UINT8)(((UINT8)(Data >> 0x08)) & 0xff) [all...] |
/external/aac/libAACdec/src/ |
aac_rom.h | 217 1 /* Compile-time prescaler for MDST-filter coefficients. */ 230 extern const FIXP_FILT mdst_filt_coef_curr[20][3]; /* MDST-filter coefficient 233 extern const FIXP_FILT mdst_filt_coef_prev[6][4]; /* MDST-filter coefficient
|
stereo.cpp | 607 /* 0.0. get scratch buffer for downmix MDST */ 622 /* 0.2. set pointer to filter-coefficients for MDST excitation including 658 /* 0.3. set pointer to filter-coefficients for MDST excitation */ 660 /* define offset of pointer to filter-coefficients for MDST exitation 757 /* initialize the MDST with zeros */ [all...] |
stereo.h | 138 UCHAR use_prev_frame; // 0 = use current frame for MDST estimation, 1 = use
|
aac_rom.cpp | [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/C/TianoCompress/ |
TianoCompress.c | 68 STATIC UINT8 *mSrc, *mDst, *mSrcUpperLimit, *mDstUpperLimit;
136 mDst = DstBuffer;
137 mDstUpperLimit = mDst +*DstSize;
159 if (mDst < mDstUpperLimit) {
160 *mDst++ = 0;
166 mDst = DstBuffer;
202 if (mDst < mDstUpperLimit) {
203 *mDst++ = (UINT8) (((UINT8) (Data)) & 0xff);
206 if (mDst < mDstUpperLimit) {
207 *mDst++ = (UINT8) (((UINT8) (Data >> 0x08)) & 0xff); [all...] |
/external/toybox/toys/pending/ |
ip.c | 1447 struct I_data rvia, rdst, mdst, rsrc, msrc; member in struct:__anon40285 [all...] |
/external/aac/libFDK/include/ |
mdct.h | 99 Description: MDCT/MDST routines
|
/external/aac/libFDK/src/ |
mdct.cpp | 99 Description: MDCT/MDST routines 426 multichannel tool for transitions between MDCT/MDST. The following description
|
/system/timezone/output_data/iana/ |
tzdata | [all...] |
/system/timezone/testing/data/test1/output_data/iana/ |
tzdata | [all...] |
/system/timezone/testing/data/test2/output_data/iana/ |
tzdata | [all...] |