Searched defs:trailing (Results 1 - 7 of 7) sorted by relevance

/external/opencore/codecs_v2/video/avc_h264/dec/src/
H A Dvlc.cpp35 int trailing; member in struct:tagVLCNumCoeffTrail
479 *TrailingOnes = ptr->trailing;
/external/webkit/WebCore/platform/graphics/gtk/
H A DFontGtk.cpp319 int index, trailing; local
320 pango_layout_xy_to_index(layout, x * PANGO_SCALE, 1, &index, &trailing);
323 offset += trailing;
/external/webkit/WebCore/platform/graphics/win/
H A DUniscribeController.cpp384 int trailing = 0; local
386 advances.data(), &item.a, &m_offsetPosition, &trailing);
387 if (trailing && m_includePartialGlyphs && m_offsetPosition < len - 1) {
389 m_offsetX += m_run.rtl() ? -trailing : trailing;
393 if (trailing && m_includePartialGlyphs)
/external/webkit/WebCore/platform/graphics/chromium/
H A DUniscribeHelper.cpp273 int trailing; local
277 &trailing);
/external/libxml2/
H A Dencoding.c224 int trailing; local
239 if (d < 0x80) { c= d; trailing= 0; }
241 /* trailing byte in leading position */
245 } else if (d < 0xE0) { c= d & 0x1F; trailing= 1; }
246 else if (d < 0xF0) { c= d & 0x0F; trailing= 2; }
247 else if (d < 0xF8) { c= d & 0x07; trailing= 3; }
255 if (inend - in < trailing) {
259 for ( ; trailing; trailing--) {
397 int trailing; local
576 int trailing; local
818 int trailing; local
[all...]
H A DHTMLparser.c1803 int trailing; local
1818 if (d < 0x80) { c= d; trailing= 0; }
1820 /* trailing byte in leading position */
1824 } else if (d < 0xE0) { c= d & 0x1F; trailing= 1; }
1825 else if (d < 0xF0) { c= d & 0x0F; trailing= 2; }
1826 else if (d < 0xF8) { c= d & 0x07; trailing= 3; }
1834 if (inend - in < trailing) {
1838 for ( ; trailing; trailing--) {
1907 int trailing; local
[all...]
/external/icu4c/common/
H A Duloc.c654 if (!*pos) { /* handle trailing "; " */
849 /* trim trailing spaces */
989 /* trim trailing spaces */
1382 * terminated; if it is, trailing zero will NOT be maintained.
1739 if (name[len-1] == '_') { /* delete trailing '_' */
1747 if (name[len-1] == '_') { /* delete trailing '_' */
3277 * @param trailing Any trailing data to append to the new tag.
3278 * @param trailingLength The length of the trailing data.
3293 const char* trailing,
3286 createTagStringWithAlternates( const char* lang, int32_t langLength, const char* script, int32_t scriptLength, const char* region, int32_t regionLength, const char* trailing, int32_t trailingLength, const char* alternateTags, char* tag, int32_t tagCapacity, UErrorCode* err) argument
3534 createTagString( const char* lang, int32_t langLength, const char* script, int32_t scriptLength, const char* region, int32_t regionLength, const char* trailing, int32_t trailingLength, char* tag, int32_t tagCapacity, UErrorCode* err) argument
3969 const char* trailing = ""; local
4072 const char* trailing = ""; local
[all...]

Completed in 107 milliseconds