Home
last modified time | relevance | path

Searched refs:startCode (Results 1 – 3 of 3) sorted by relevance

/external/fonttools/Lib/fontTools/ttLib/tables/
D_c_m_a_p.py602 def splitRange(startCode, endCode, cmap): argument
607 if startCode == endCode:
610 lastID = cmap[startCode]
611 lastCode = startCode
617 for code in range(startCode + 1, endCode + 1):
642 if b == startCode and e == endCode:
644 if b == startCode or e == endCode:
655 if subRanges[0][0] != startCode:
656 subRanges.insert(0, (startCode, subRanges[0][0] - 1))
706 startCode = allCodes[:segCount]
[all …]
/external/webrtc/webrtc/modules/video_coding/
Dsession_info.cc217 const unsigned char startCode[] = {0, 0, 0, 1}; in Insert() local
218 memcpy(frame_buffer, startCode, kH264StartCodeLengthBytes); in Insert()
Djitter_buffer_unittest.cc237 bool startCode) { in CheckOutFrame() argument
243 if (startCode) { in CheckOutFrame()
256 } else if (startCode && outData[i] == 0 && outData[i + 1] == 0) { in CheckOutFrame()