Home
last modified time | relevance | path

Searched refs:borders (Results 1 – 25 of 51) sorted by relevance

123

/external/aac/libSBRdec/src/
Denv_extr.cpp913 hSbrFrameInfo->borders[i] = pTable[i+2]; in generateFixFixOnly()
915 hSbrFrameInfo->borders[0] = 0; in generateFixFixOnly()
916 hSbrFrameInfo->borders[nEnv] = numberTimeSlots; in generateFixFixOnly()
924 hSbrFrameInfo->bordersNoise[1] = hSbrFrameInfo->borders[tranIdx?tranIdx:1]; in generateFixFixOnly()
1108 pFrameInfo->borders[0] = 0; /* first border */ in extractFrameInfo()
1111 pFrameInfo->borders[i] = border; /* last border */ in extractFrameInfo()
1116 pFrameInfo->borders[--i] = border; in extractFrameInfo()
1138 pFrameInfo->bordersNoise[1] = pFrameInfo->borders[n]; in extractFrameInfo()
1140 pFrameInfo->bordersNoise[1] = pFrameInfo->borders[pFrameInfo->tranEnv]; in extractFrameInfo()
1147 pFrameInfo->borders[0] = border; /* first border */ in extractFrameInfo()
[all …]
Denv_dec.cpp385 h_sbr_data->frameInfo.borders[0] = currentStartPos; in leanSbrConcealment()
386 h_sbr_data->frameInfo.borders[1] = currentStopPos; in leanSbrConcealment()
456 … if ( h_sbr_data->frameInfo.borders[0] != h_prev_data->stopPos - hHeaderData->numberTimeSlots ) { in decodeEnvelope()
613 refLen = pFrameInfo->borders[1] - pFrameInfo->borders[0]; in timeCompensateFirstEnvelope()
615 newLen = pFrameInfo->borders[1] - estimatedStartPos; in timeCompensateFirstEnvelope()
622 estimatedStartPos = pFrameInfo->borders[0]; in timeCompensateFirstEnvelope()
630 pFrameInfo->borders[0] = estimatedStartPos; in timeCompensateFirstEnvelope()
Dsbr_dec.cpp423 UCHAR * borders = hFrameData->frameInfo.borders; in sbr_dec() local
424 lastSlotOffs = borders[hFrameData->frameInfo.nEnvelopes] - hHeaderData->numberTimeSlots; in sbr_dec()
444 borders[0], in sbr_dec()
478 hPrevFrameData->stopPos = borders[hFrameData->frameInfo.nEnvelopes]; in sbr_dec()
Denv_calc.cpp516 UCHAR* borders = hFrameData->frameInfo.borders; in calculateSbrEnvelope() local
527 UCHAR first_start = borders[0] * hHeaderData->timeStep; in calculateSbrEnvelope()
588 if (borders[i] < hHeaderData->numberTimeSlots) in calculateSbrEnvelope()
592 if (borders[i+1] > hHeaderData->numberTimeSlots) in calculateSbrEnvelope()
612 …UCHAR start_pos = hHeaderData->timeStep * borders[i]; /* Start-position in time (subband sample) … in calculateSbrEnvelope()
613 …UCHAR stop_pos = hHeaderData->timeStep * borders[i+1]; /* Stop-position in time (subband sample) f… in calculateSbrEnvelope()
624 if (borders[i] == hFrameData->frameInfo.bordersNoise[envNoise+1]){ in calculateSbrEnvelope()
Denv_extr.h235 UCHAR borders[MAX_ENVELOPES+1]; /*!< Envelope borders (in SBR-timeslots, e.g. mp3PRO: 0..11) */ member
/external/aac/libSBRenc/src/
Dfram_gen.cpp721 hSbrFrameInfo->borders[i] = pTable[i+2]; in generateFixFixOnly()
724 hSbrFrameInfo->borders[0] = 0; in generateFixFixOnly()
725 hSbrFrameInfo->borders[nEnv] = numberTimeSlots; in generateFixFixOnly()
729 k = hSbrFrameInfo->borders[i+1] - hSbrFrameInfo->borders[i]; in generateFixFixOnly()
741 hSbrFrameInfo->bordersNoise[1] = hSbrFrameInfo->borders[tranIdx?tranIdx:1]; in generateFixFixOnly()
1926 hSbrFrameInfo->borders[0] = bufferFrameStart; /* start-position of 1st envelope */ in ctrlSignal2FrameInfo()
1928 hSbrFrameInfo->borders[nEnv] = border; in ctrlSignal2FrameInfo()
1932 hSbrFrameInfo->borders[i] = border; in ctrlSignal2FrameInfo()
1949 hSbrFrameInfo->bordersNoise[1] = hSbrFrameInfo->borders[nEnv - 1]; in ctrlSignal2FrameInfo()
1951 hSbrFrameInfo->bordersNoise[1] = hSbrFrameInfo->borders[hSbrFrameInfo->shortEnv]; in ctrlSignal2FrameInfo()
[all …]
Dinvf_est.cpp308 const FIXP_DBL *borders, /*!< The border of the regions. */ in findRegion() argument
314 if(currVal < borders[0]){ in findRegion()
319 if( currVal >= borders[i-1] && currVal < borders[i]){ in findRegion()
324 if(currVal >= borders[numBorders-1]){ in findRegion()
Dfram_gen.h225 INT borders[MAX_ENVELOPES+1]; /*!< envelope borders in SBR timeslots */ member
Dton_corr.cpp361 if(transientPos + hTonCorr->transientPosOffset >= frameInfo->borders[frameInfo->nEnvelopes]){ in FDKsbrEnc_TonCorrParamExtr()
368 if(transientPos + hTonCorr->transientPosOffset < frameInfo->borders[frameInfo->nEnvelopes]){ in FDKsbrEnc_TonCorrParamExtr()
Denv_est.cpp627 start_pos = timeStep * frame_info->borders[i]; in calculateSbrEnvelope()
628 stop_pos = timeStep * frame_info->borders[i + 1]; in calculateSbrEnvelope()
1081 if (eData[0].frame_info->borders[i] != eData[1].frame_info->borders[i]) { in FDKsbrEnc_extractSbrEnvelope2()
/external/chromium_org/third_party/freetype/src/base/
Dftstroke.c780 FT_StrokeBorderRec borders[2]; member
806 ft_stroke_border_init( &stroker->borders[0], memory ); in FT_Stroker_New()
807 ft_stroke_border_init( &stroker->borders[1], memory ); in FT_Stroker_New()
849 ft_stroke_border_reset( &stroker->borders[0] ); in FT_Stroker_Rewind()
850 ft_stroke_border_reset( &stroker->borders[1] ); in FT_Stroker_Rewind()
865 ft_stroke_border_done( &stroker->borders[0] ); in FT_Stroker_Done()
866 ft_stroke_border_done( &stroker->borders[1] ); in FT_Stroker_Done()
882 FT_StrokeBorder border = stroker->borders + side; in ft_stroker_arcto()
924 FT_StrokeBorder border = stroker->borders + side; in ft_stroker_cap()
951 FT_StrokeBorder border = stroker->borders + side; in ft_stroker_cap()
[all …]
/external/freetype/src/base/
Dftstroke.c780 FT_StrokeBorderRec borders[2]; member
806 ft_stroke_border_init( &stroker->borders[0], memory ); in FT_Stroker_New()
807 ft_stroke_border_init( &stroker->borders[1], memory ); in FT_Stroker_New()
849 ft_stroke_border_reset( &stroker->borders[0] ); in FT_Stroker_Rewind()
850 ft_stroke_border_reset( &stroker->borders[1] ); in FT_Stroker_Rewind()
865 ft_stroke_border_done( &stroker->borders[0] ); in FT_Stroker_Done()
866 ft_stroke_border_done( &stroker->borders[1] ); in FT_Stroker_Done()
882 FT_StrokeBorder border = stroker->borders + side; in ft_stroker_arcto()
924 FT_StrokeBorder border = stroker->borders + side; in ft_stroker_cap()
951 FT_StrokeBorder border = stroker->borders + side; in ft_stroker_cap()
[all …]
/external/chromium_org/cc/layers/
Dtiled_layer_impl_unittest.cc200 LayerTilingData::BorderTexelOption borders) { in CoverageVisibleRectOnTileBoundaries() argument
208 borders, in CoverageVisibleRectOnTileBoundaries()
214 LayerTilingData::BorderTexelOption borders) { in CoverageVisibleRectIntersectsTiles() argument
233 LayerTilingData::BorderTexelOption borders) { in CoverageVisibleRectIntersectsBounds() argument
/external/qemu/distrib/sdl-1.2.15/
DTODO10 * Shaped windows, windows without borders
/external/chromium/chrome/browser/ui/cocoa/tabs/
Dside_tab_strip_view.mm39 // Draw borders and any drop feedback.
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderTableCell.cpp1151 CollapsedBorders borders; in paintCollapsedBorders() local
1152borders.addBorder(topVal, BSTop, renderTop, borderRect.x(), borderRect.y(), borderRect.maxX(), bor… in paintCollapsedBorders()
1153borders.addBorder(bottomVal, BSBottom, renderBottom, borderRect.x(), borderRect.maxY() - bottomWid… in paintCollapsedBorders()
1154borders.addBorder(leftVal, BSLeft, renderLeft, borderRect.x(), borderRect.y(), borderRect.x() + le… in paintCollapsedBorders()
1155borders.addBorder(rightVal, BSRight, renderRight, borderRect.maxX() - rightWidth, borderRect.y(), … in paintCollapsedBorders()
1159 for (CollapsedBorder* border = borders.nextBorder(); border; border = borders.nextBorder()) { in paintCollapsedBorders()
DRenderTable.cpp333 LayoutUnit borders = 0; in convertStyleLogicalWidthToComputedWidth() local
336borders = borderStart() + borderEnd() + (collapseBorders() ? LayoutUnit() : paddingStart() + paddi… in convertStyleLogicalWidthToComputedWidth()
338 return minimumValueForLength(styleLogicalWidth, availableWidth, view()) + borders; in convertStyleLogicalWidthToComputedWidth()
349 LayoutUnit borders = LayoutUnit(); in convertStyleLogicalHeightToComputedHeight() local
352 borders = borderAndPadding; in convertStyleLogicalHeightToComputedHeight()
354 computedLogicalHeight = styleLogicalHeight.value() - borders; in convertStyleLogicalHeightToComputedHeight()
/external/libvpx/libvpx/vp8/common/x86/
Dpostproc_mmx.asm62 .init_borderd ; initialize borders
75 .init_border ; initialize borders
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
Dwebtreemap.css50 /* Optional: Different borders depending on level. */
/external/libvpx/libvpx/vpx_scale/arm/neon/
Dvp8_vpxyv12_extendframeborders_neon.asm73 ;Now copy the top and bottom source lines into each line of the respective borders
186 ;Now copy the top and bottom source lines into each line of the respective borders
/external/llvm/docs/_static/
Dllvm.css8 /* No borders on image links */
/external/chromium_org/chrome/browser/ui/cocoa/download/
Ddownload_show_all_cell.mm136 // Stroke the borders and appropriate fill gradient.
/external/chromium_org/third_party/WebKit/Source/core/css/
DthemeWin.css108 /* Windows selects are not rounded. Custom borders for them shouldn't be either. */
/external/chromium_org/chrome/browser/ui/cocoa/
Dstyled_text_field_cell.mm67 // For NSTextFieldCell this is the area within the borders. For our
/external/chromium_org/third_party/angle/extensions/
DANGLE_texture_compression_dxt.txt92 algorithm support only 2D images without borders.

123