HomeSort by relevance Sort by last modified time
    Searched refs:nCodes (Results 1 - 6 of 6) sorted by null

  /prebuilts/go/darwin-x86/src/image/jpeg/
huffman.go 23 nCodes int32
109 // Read nCodes and h.vals (and derive h.nCodes).
110 // nCodes[i] is the number of codes with code length i.
111 // h.nCodes is the total number of codes.
112 h.nCodes = 0
113 var nCodes [maxCodeLength]int32
114 for i := range nCodes {
115 nCodes[i] = int32(d.tmp[i+1])
116 h.nCodes += nCodes[i
    [all...]
  /prebuilts/go/linux-x86/src/image/jpeg/
huffman.go 23 nCodes int32
109 // Read nCodes and h.vals (and derive h.nCodes).
110 // nCodes[i] is the number of codes with code length i.
111 // h.nCodes is the total number of codes.
112 h.nCodes = 0
113 var nCodes [maxCodeLength]int32
114 for i := range nCodes {
115 nCodes[i] = int32(d.tmp[i+1])
116 h.nCodes += nCodes[i
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
KeyboardView.java 819 final int nCodes = key.codes.length;
829 System.arraycopy(mDistances, j, mDistances, j + nCodes,
830 mDistances.length - j - nCodes);
831 System.arraycopy(allKeys, j, allKeys, j + nCodes,
832 allKeys.length - j - nCodes);
833 for (int c = 0; c < nCodes; c++) {
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 786 final int nCodes = key.codes.length;
796 // Make space for nCodes codes
797 System.arraycopy(mDistances, j, mDistances, j + nCodes,
798 mDistances.length - j - nCodes);
799 System.arraycopy(allKeys, j, allKeys, j + nCodes,
800 allKeys.length - j - nCodes);
801 for (int c = 0; c < nCodes; c++) {
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_font/
fpdf_font_cid.cpp 300 int nCodes = pFontGlobals->m_EmbeddedToUnicodes[charset].m_Count;
301 for (int i = 0; i < nCodes; ++i) {
    [all...]
  /external/fonttools/Lib/fontTools/
cffLib.py 1018 nCodes = readCard8(file)
1020 for glyphID in range(1, nCodes + 1):
    [all...]

Completed in 458 milliseconds