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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
unicodename_db.h 4993 static unsigned char phrasebook[] = { variable
    [all...]
unicodedata.c 938 /* get offset into phrasebook */
949 word = phrasebook[offset] - phrasebook_short;
951 word = (word << 8) + phrasebook[offset+1];
954 word = phrasebook[offset++];
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
unicodename_db.h 4993 static unsigned char phrasebook[] = { variable
    [all...]
unicodedata.c 931 /* get offset into phrasebook */
942 word = phrasebook[offset] - phrasebook_short;
944 word = (word << 8) + phrasebook[offset+1];
947 word = phrasebook[offset++];
    [all...]
  /external/python/cpython2/Modules/
unicodename_db.h 4993 static unsigned char phrasebook[] = { variable
    [all...]
unicodedata.c 938 /* get offset into phrasebook */
949 word = phrasebook[offset] - phrasebook_short;
951 word = (word << 8) + phrasebook[offset+1];
954 word = phrasebook[offset++];
    [all...]
  /external/tremolo/Tremolo/
res012.c 117 codebook *phrasebook=ci->book_param+info->groupbook; local
119 int partitions_per_word=phrasebook->dim;
161 int temp=vorbis_book_decode(phrasebook,&vd->opb);
234 temp=vorbis_book_decode(phrasebook,&vd->opb);
  /external/libvorbis/lib/
res0.c 47 codebook *phrasebook; member in struct:__anon24532
243 /* verify the phrasebook is not specifying an impossible or
245 /* modify the phrasebook ranging check from r16327; an early beta
246 encoder had a bug where it used an oversized phrasebook by
280 look->phrasebook=ci->fullbooks+info->groupbook;
281 dim=look->phrasebook->dim;
553 int partitions_per_word=look->phrasebook->dim;
591 if(val<look->phrasebook->entries)
592 look->phrasebits+=vorbis_book_encode(look->phrasebook,val,opb);
667 int partitions_per_word=look->phrasebook->dim
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
makeunicodedata.py 15 # 2001-01-21 fl added decomp compression; dynamic phrasebook threshold
611 # figure out how many phrasebook escapes we need
627 print n, "short indexes in phrasebook"
659 # generate phrasebook from names and lexicon
660 phrasebook = [0]
666 phrasebook_offset[char] = len(phrasebook)
670 phrasebook.append(i)
673 phrasebook.append((i>>8) + short)
674 phrasebook.append(i&255)
676 assert getsize(phrasebook) == 1
    [all...]
  /external/python/cpython2/Tools/unicode/
makeunicodedata.py 15 # 2001-01-21 fl added decomp compression; dynamic phrasebook threshold
611 # figure out how many phrasebook escapes we need
627 print n, "short indexes in phrasebook"
659 # generate phrasebook from names and lexicon
660 phrasebook = [0]
666 phrasebook_offset[char] = len(phrasebook)
670 phrasebook.append(i)
673 phrasebook.append((i>>8) + short)
674 phrasebook.append(i&255)
676 assert getsize(phrasebook) ==
    [all...]

Completed in 354 milliseconds