| /xsrc/external/mit/brotli/dist/c/enc/ |
| encoder_dict.c | 18 void BrotliInitEncoderDictionary(BrotliEncoderDictionary* dict) { 19 dict->words = BrotliGetDictionary(); 20 dict->num_transforms = (uint32_t)BrotliGetTransforms()->num_transforms; 22 dict->hash_table_words = kStaticDictionaryHashWords; 23 dict->hash_table_lengths = kStaticDictionaryHashLengths; 24 dict->buckets = kStaticDictionaryBuckets; 25 dict->dict_words = kStaticDictionaryWords; 27 dict->cutoffTransformsCount = kCutoffTransformsCount; 28 dict->cutoffTransforms = kCutoffTransforms;
|
| encoder_dict.h | 37 BROTLI_INTERNAL void BrotliInitEncoderDictionary(BrotliEncoderDictionary* dict);
|
| static_dict.c | 49 const uint8_t* dict = &dictionary->data[offset]; local 53 TO_BROTLI_BOOL(FindMatchLengthWithLimit(dict, data, w.len) == w.len); 57 return TO_BROTLI_BOOL(dict[0] >= 'a' && dict[0] <= 'z' && 58 (dict[0] ^ 32) == data[0] && 59 FindMatchLengthWithLimit(&dict[1], &data[1], w.len - 1u) == 66 if (dict[i] >= 'a' && dict[i] <= 'z') { 67 if ((dict[i] ^ 32) != data[i]) return BROTLI_FALSE; 69 if (dict[i] != data[i]) return BROTLI_FALSE [all...] |
| /xsrc/external/mit/glu/dist/src/libtess/ |
| dict.c | 36 #include "dict-list.h" 40 Dict *dictNewDict( void *frame, 43 Dict *dict = (Dict *) memAlloc( sizeof( Dict )); local 46 if (dict == NULL) return NULL; 48 head = &dict->head; 54 dict->frame = frame; 55 dict->leq = leq [all...] |
| dict-list.h | 41 #define Dict DictList 45 #define dictDeleteDict(dict) __gl_dictListDeleteDict(dict) 47 #define dictSearch(dict,key) __gl_dictListSearch(dict,key) 48 #define dictInsert(dict,key) __gl_dictListInsert(dict,key) 49 #define dictInsertBefore(dict,node,key) __gl_dictListInsertBefore(dict,node,key) 50 #define dictDelete(dict,node) __gl_dictListDelete(dict,node [all...] |
| dict.h | 41 #define Dict DictList 45 #define dictDeleteDict(dict) __gl_dictListDeleteDict(dict) 47 #define dictSearch(dict,key) __gl_dictListSearch(dict,key) 48 #define dictInsert(dict,key) __gl_dictListInsert(dict,key) 49 #define dictInsertBefore(dict,node,key) __gl_dictListInsertBefore(dict,node,key) 50 #define dictDelete(dict,node) __gl_dictListDelete(dict,node [all...] |
| /xsrc/external/mit/xinit/dist/launchd/user_startx/ |
| startx.plist.cpp | 4 <dict> 17 <dict> 19 <dict> 22 </dict> 23 </dict> 28 </dict>
|
| /xsrc/external/mit/xinit/dist/launchd/privileged_startx/ |
| privileged_startx.plist.cpp | 4 <dict> 14 <dict> 17 </dict> 22 </dict>
|
| /xsrc/external/mit/freetype/dist/src/cid/ |
| cidload.c | 113 CID_FaceDict dict; local 124 dict = cid->font_dicts + parser->num_dict; 128 object = (FT_Byte*)&dict->private_dict; 132 object = (FT_Byte*)dict; 161 CID_FaceDict dict; local 174 dict = face->cid.font_dicts + parser->num_dict; 175 matrix = &dict->font_matrix; 176 offset = &dict->font_offset; 264 * X dict begin 13 266 * /Private X dict begin 2 297 CID_FaceDict dict = cid->font_dicts + n; local 322 CID_FaceDict dict; local 533 CID_FaceDict dict = cid->font_dicts + n; local 858 CID_FaceDict dict = cid->font_dicts + n; local [all...] |
| cidgload.c | 144 CID_FaceDict dict; local 156 dict = cid->font_dicts + fd_select; 158 decoder->font_matrix = dict->font_matrix; 159 decoder->font_offset = dict->font_offset; 160 decoder->lenIV = dict->private_dict.lenIV; 202 &dict->private_dict,
|
| /xsrc/external/mit/freetype/dist/src/cff/ |
| cffdrivr.c | 311 * GLYPH DICT SERVICE 476 CFF_FontRecDict dict = &cff->top_font.font_dict; local 485 dict->version ); 487 dict->notice ); 489 dict->full_name ); 491 dict->family_name ); 493 dict->weight ); 494 font_info->italic_angle = dict->italic_angle; 495 font_info->is_fixed_pitch = dict->is_fixed_pitch; 496 font_info->underline_position = (FT_Short)dict->underline_position 520 CFF_FontRecDict dict = &cff->top_font.font_dict; local 706 CFF_FontRecDict dict = &cff->top_font.font_dict; local 763 CFF_FontRecDict dict = &cff->top_font.font_dict; local 788 CFF_FontRecDict dict = &cff->top_font.font_dict; local [all...] |
| cffparse.c | 671 CFF_FontRecDict dict = (CFF_FontRecDict)parser->object; local 672 FT_Matrix* matrix = &dict->font_matrix; 673 FT_Vector* offset = &dict->font_offset; 674 FT_ULong* upm = &dict->units_per_em; 687 dict->has_font_matrix = TRUE; 797 CFF_FontRecDict dict = (CFF_FontRecDict)parser->object; local 798 FT_BBox* bbox = &dict->font_bbox; 827 CFF_FontRecDict dict = (CFF_FontRecDict)parser->object; local 846 dict->private_size = (FT_ULong)tmp; 855 dict->private_offset = (FT_ULong)tmp 874 CFF_FontRecDict dict = (CFF_FontRecDict)parser->object; local 921 CFF_FontRecDict dict = (CFF_FontRecDict)parser->object; local 1045 CFF_FontRecDict dict = (CFF_FontRecDict)parser->object; local [all...] |
| cffobjs.c | 615 CFF_FontRecDict dict; local 655 dict = &cff->top_font.font_dict; 659 if ( dict->cid_registry == 0xFFFFU && !psnames ) 742 if ( !dict->has_font_matrix ) 743 dict->units_per_em = pure_cff ? 1000 : face->root.units_per_EM; 755 FT_Matrix* matrix = &dict->font_matrix; 756 FT_Vector* offset = &dict->font_offset; 757 FT_ULong* upm = &dict->units_per_em; 861 if ( dict->cid_registry != 0xFFFFU ) 867 cffface->bbox.xMin = dict->font_bbox.xMin >> 16 [all...] |
| cffload.c | 763 /* Note: CFF2 with just one Font Dict has no FDSelect */ 1892 /* we need this for clean-up even if there is no private DICT */ 1897 goto Exit2; /* no private DICT, do nothing */ 1980 /* . CFF_CODE_TOPDICT for either a CFF Top DICT or a CFF Font DICT */ 1981 /* . CFF2_CODE_TOPDICT for CFF2 Top DICT */ 1982 /* . CFF2_CODE_FONTDICT for CFF2 Font DICT */ 1996 FT_Byte* dict = NULL; local 2009 /* Note: We use default stack size for CFF2 Font DICT because */ 2049 error = cff_index_access_element( idx, font_index, &dict, &dict_len ) 2205 CFF_FontRecDict dict; local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/freedreno/common/ |
| freedreno_devices.py | 206 a6xx_gen1 = dict( 212 magic = dict( 218 a6xx_gen2 = dict( 225 magic = dict( 231 a6xx_gen3 = dict( 242 magic = dict( 249 a6xx_gen4 = dict( 262 magic = dict(
|
| /xsrc/external/mit/xorg-server.old/dist/hw/xquartz/bundle/ |
| Info.plist.cpp | 4 <dict> 48 </dict>
|
| /xsrc/external/mit/freetype/dist/src/tools/ |
| glnames.py | 5353 dict = StringNode( "", 0 ) 5356 dict.add( agl_glyphs[g], eval( "0x" + agl_values[g] ) ) 5358 dict = dict.optimize() 5359 dict_len = dict.locate( 0 ) 5360 dict_array = dict.store( "" )
|
| /xsrc/external/mit/xorg-server/dist/hw/xquartz/bundle/ |
| Info.plist.cpp | 4 <dict> 75 </dict>
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/indices/ |
| u_unfilled_gen.py | 50 longprim = dict(zip(PRIMS, LONGPRIMS)) 51 intype_idx = dict(ubyte='IN_UBYTE', ushort='IN_USHORT', uint='IN_UINT') 52 outtype_idx = dict(ushort='OUT_USHORT', uint='OUT_UINT')
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/ |
| zink_extensions.py | 159 registry = dict() 164 commands_type = dict() 165 aliases = dict()
|
| zink_instance.py | 290 def replace_code(code: str, replacement: dict):
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/indices/ |
| u_unfilled_gen.py | 52 longprim = dict(zip(PRIMS, LONGPRIMS)) 53 intype_idx = dict(ubyte='IN_UBYTE', ushort='IN_USHORT', uint='IN_UINT') 54 outtype_idx = dict(ushort='OUT_USHORT', uint='OUT_UINT')
|
| /xsrc/external/mit/xedit/dist/ |
| ispell.c | 97 cancel, check, look, terse, options, dict, dictMenu, member in struct:_ispell 235 Offset(words_file), XtRString, "/usr/share/dict/words"}, 1970 XtSetValues(ispell.dict, args, 1); 2019 ispell_dict *dict, *prev_dict; local 2104 ispell.dict = XtVaCreateManagedWidget("dict", menuButtonWidgetClass, 2170 dict = XtNew(ispell_dict); 2171 dict->sme = XtCreateManagedWidget("", smeBSBObjectClass, 2173 dict->wchars = ""; 2174 XtAddCallback(dict->sme, XtNcallback, ChangeDictionaryIspell [all...] |
| /xsrc/external/mit/MesaLib/dist/src/egl/generate/ |
| gen_egl_dispatch.py | 55 xmlByName = dict((f.name, f) for f in xmlFunctions) 72 result = dict(eglFunc)
|
| /xsrc/external/mit/MesaLib.old/dist/src/egl/generate/ |
| gen_egl_dispatch.py | 55 xmlByName = dict((f.name, f) for f in xmlFunctions) 72 result = dict(eglFunc)
|