| /xsrc/external/mit/fontconfig/dist/src/ |
| fccharset.c | 92 * Search for the leaf containing with the specified num. 125 * Locate the leaf containing the specified char, return 150 FcCharLeaf *leaf, 218 leaves[pos] = FcPtrToOffset (leaves, leaf); 224 * Locate the leaf containing the specified char, creating it 232 FcCharLeaf *leaf; local 238 leaf = calloc (1, sizeof (FcCharLeaf)); 239 if (!leaf) 243 if (!FcCharSetPutLeaf (fcs, ucs4, leaf, pos)) 245 free (leaf); 271 FcCharLeaf *leaf; local 287 FcCharLeaf *leaf; local 306 FcCharLeaf *leaf; member in struct:_fcCharSetIter 460 FcCharLeaf leaf; local 593 FcCharLeaf *leaf; local 1014 FcCharLeaf leaf; member in struct:_FcCharLeafEnt 1346 FcCharLeaf *leaf, *leaf_serialized; local [all...] |
| fcdbg.c | 177 FcCharLeaf *leaf = FcOffsetToPtr (leaves, leaf_offset, FcCharLeaf); local 182 printf (" %08x", leaf->map[j]);
|
| fcfreetype.c | 2612 FcCharLeaf *leaf; local 2619 leaf = NULL; 2641 leaf = FcCharSetFindLeafCreate (fcs, ucs4); 2642 if (!leaf) 2646 leaf->map[off >> 5] |= (1U << (off & 0x1f));
|
| /xsrc/external/mit/fontconfig/dist/fc-lang/ |
| fc-lang.py | 42 self.leaves = {} # leaf_number -> leaf data (= 16 uint32) 48 leaf = self.leaves[leaf_num] 50 leaf = [0, 0, 0, 0, 0, 0, 0, 0] # 256/32 = 8 51 self.leaves[leaf_num] = leaf 52 leaf[(ucs4 & 0xff) >> 5] |= (1 << (ucs4 & 0x1f)) 53 #print('{:08x} [{:04x}] --> {}'.format(ucs4, ucs4>>8, leaf)) 59 leaf = self.leaves[leaf_num] 60 leaf[(ucs4 & 0xff) >> 5] &= ~(1 << (ucs4 & 0x1f)) 61 # We don't bother removing the leaf if it's empty */ 62 #print('{:08x} [{:04x}] --> {}'.format(ucs4, ucs4>>8, leaf)) 201 leaf = s.leaves[leaf_num] variable 299 leaf = s.leaves[leaf_num] variable 321 leaf = s.leaves[leaf_num] variable [all...] |
| /xsrc/external/mit/MesaLib/dist/src/intel/compiler/ |
| brw_nir_lower_rt_intrinsics.c | 239 struct brw_nir_rt_bvh_instance_leaf_defs leaf; local 240 brw_nir_rt_load_bvh_instance_leaf(b, &leaf, hit_in.inst_leaf_ptr); 241 sysval = leaf.instance_index; 246 struct brw_nir_rt_bvh_instance_leaf_defs leaf; local 247 brw_nir_rt_load_bvh_instance_leaf(b, &leaf, hit_in.inst_leaf_ptr); 248 sysval = leaf.object_to_world[nir_intrinsic_column(intrin)]; 253 struct brw_nir_rt_bvh_instance_leaf_defs leaf; local 254 brw_nir_rt_load_bvh_instance_leaf(b, &leaf, hit_in.inst_leaf_ptr); 255 sysval = leaf.world_to_object[nir_intrinsic_column(intrin)]; 282 struct brw_nir_rt_bvh_instance_leaf_defs leaf; local [all...] |
| /xsrc/external/mit/libX11/dist/src/ |
| Xrm.c | 78 (2) Many database levels don't contain any leaf resource nodes. There is no 103 The next pointer of the top-level node table points to the top-level leaf 153 unsigned int leaf:1; /* 1 if children are values */ member in struct:_NTable 165 /* leaf tables have an extra level of indirection for the buckets, 249 /* find an entry named ename, with leafness given by leaf */ 255 if (leaf && entry && !entry->leaf) { \ 257 if (entry && !entry->leaf) \ 578 if (table->leaf) { 717 if ((fentry->leaf && !tentry->leaf) | 1790 register unsigned int leaf; local 2180 register unsigned int leaf; local 2459 register unsigned int leaf; local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/compiler/isaspec/ |
| encode.py | 82 self.bitset = bitset # leaf bitset 123 self.bitset = bitset # leaf bitset 193 for leaf in self.encode_leafs(root): 194 for case in s.bitset_cases(leaf): 214 for name, leaf in self.isa.leafs.items(): 215 if leaf.get_root() != root: 217 yield leaf 415 <%def name="encode_params(leaf, field)"> 418 .${param[1]} = ${s.expr_extractor(leaf, param[0], 'p')}, /* ${param[0]} */ 423 <%def name="render_expr(leaf, expr)" [all...] |
| /xsrc/external/mit/libpciaccess/dist/src/ |
| common_device_name.c | 108 * At the leaf nodes (i.e., the node entered when all 16 bits of the vendor ID 115 * a leaf. 146 * Get a pointer to the leaf node for a vendor ID. 191 struct pci_id_leaf * leaf = local 197 leaf->vendor = vendor; 199 n->children[ idx ] = (struct pci_id_node *) leaf;
|
| /xsrc/external/mit/xterm/dist/ |
| main.c | 1972 char *leaf = x_basename(name); local 1974 if (name == leaf) { /* no '/' in the name */ 1975 int len = (int) strlen(leaf); 1977 leaf = leaf + (len - PTYCHARLEN); 1979 TRACE(("my_pty_id (%s) -> '%s'\n", NonNull(device), NonNull(leaf))); 1980 return leaf; 1990 char *leaf = x_basename(name); local 1992 if (name == leaf) { 1995 strcpy(leaf, id) 2009 char *leaf = x_basename(option); local 2086 char *leaf = x_basename(name); local [all...] |
| misc.c | 785 char *leaf = xterm_cursor_theme + strlen(xterm_cursor_theme); local 788 strcat(leaf, "/"); 789 strcat(leaf, theme); 794 *leaf = '\0'; 796 *leaf = '/'; 6596 xtermFindShell(char *leaf, Bool warning) 6602 char *result = leaf; 6605 TRACE(("xtermFindShell(%s)\n", leaf)); 6624 if ((tmp = TypeMallocN(char, strlen(leaf) + strlen(s) + 2)) != NULL) { 6632 strcpy(d + 1, leaf); [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/ |
| dbghelp.h | 774 USHORT leaf; member in struct:_MODULE_TYPE_INFO
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/ |
| dbghelp.h | 774 USHORT leaf; member in struct:_MODULE_TYPE_INFO
|
| /xsrc/external/mit/freetype/dist/docs/reference/assets/fonts/ |
| font-awesome.css | 4 */@font-face{font-family:FontAwesome;font-style:normal;font-weight:400;src:url("specimen/FontAwesome.woff2") format("woff2"),url("specimen/FontAwesome.woff") format("woff"),url("specimen/FontAwesome.ttf") format("truetype")}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slas (…)
|