/freebsd/contrib/one-true-awk/ |
H A D | proto.h | 26 extern void setfname(Cell *); 83 extern Node *celltonode(Cell *, int); 88 extern void defn(Cell *, Node *, Node *); 91 extern Cell *(*proctab[])(Node **, int); 99 extern void freesymtab(Cell *); 100 extern void freeelem(Cell *, const char *); 101 extern Cell *setsymtab(const char *, const char *, double, unsigned int, Array *); 104 extern Cell *lookup(const char *, Array *); 105 extern double setfval(Cell *, double); 106 extern void funnyvar(Cell *, const char *); [all …]
|
H A D | tran.c | 53 Cell *fsloc; /* FS */ 54 Cell *nrloc; /* NR */ 55 Cell *nfloc; /* NF */ 56 Cell *fnrloc; /* FNR */ 57 Cell *ofsloc; /* OFS */ 58 Cell *orsloc; /* ORS */ 59 Cell *rsloc; /* RS */ 60 Cell *ARGVcell; /* cell with symbol table containing ARGV[...] */ 61 Cell *rstartloc; /* RSTART */ 62 Cell *rlengthloc; /* RLENGTH */ [all …]
|
H A D | awk.h | 95 /* Cell: all information about a variable or constant */ 97 typedef struct Cell { struct 105 struct Cell *cnext; /* ptr to next if chained */ argument 106 } Cell; typedef 111 Cell **tab; /* hash table pointers */ 117 extern Cell *nrloc; /* NR */ 118 extern Cell *fnrloc; /* FNR */ 119 extern Cell *fsloc; /* FS */ 120 extern Cell *nfloc; /* NF */ 121 extern Cell *ofsloc; /* OFS */ [all …]
|
/freebsd/crypto/heimdal/lib/kafs/ |
H A D | common.c | 70 kafs_settoken_rxkad(const char *cell, struct ClearToken *ct, in kafs_settoken_rxkad() argument 96 * do *not* mark as primary cell in kafs_settoken_rxkad() 102 * follow with cell name in kafs_settoken_rxkad() 104 sizeof_x = strlen(cell) + 1; in kafs_settoken_rxkad() 105 memcpy(t, cell, sizeof_x); in kafs_settoken_rxkad() 142 /* Try to get a db-server for an AFS cell from a AFSDB record */ 145 dns_find_cell(const char *cell, char *dbserver, size_t len) in dns_find_cell() argument 149 r = rk_dns_lookup(cell, "afsdb"); in dns_find_cell() 175 char cell[64]; in find_cells() local 182 while (fgets(cell, sizeof(cell), f)) { in find_cells() [all …]
|
H A D | kafs.3 | 58 .Fn k_afs_cell_of_file "const char *path" "char *cell" "int len" 72 .Fn kafs_settoken_rxkad "const char *cell" "struct ClearToken *token" "void *ticket" "size_t ticket… 74 .Fn kafs_settoken "const char *cell" "uid_t uid" "CREDENTIALS *c" 75 .Fn krb_afslog "char *cell" "char *realm" 77 .Fn krb_afslog_uid "char *cell" "char *realm" "uid_t uid" 79 .Fn krb5_afslog_uid "krb5_context context" "krb5_ccache id" "const char *cell" "krb5_const_realm re… 81 .Fn kafs_settoken5 "const char *cell" "uid_t uid" "krb5_creds *c" 83 .Fn krb5_afslog "krb5_context context" "krb5_ccache id" "const char *cell" "krb5_const_realm realm" 119 .Fa cell . 133 .Fa cell [all …]
|
H A D | afskrb5.c | 113 const char *cell, in v5_convert() argument 119 c = strdup(cell); in v5_convert() 207 afslog_uid_int(struct kafs_data *data, const char *cell, const char *rh, in afslog_uid_int() argument 216 if (cell == 0 || cell[0] == 0) in afslog_uid_int() 226 ret = _kafs_get_cred(data, cell, d->realm, trealm, uid, &kt); in afslog_uid_int() 230 ret = kafs_settoken_rxkad(cell, &kt.ct, kt.ticket, kt.ticket_len); in afslog_uid_int() 252 const char *cell, in krb5_afslog_uid_home() argument 281 ret = afslog_uid_int(&kd, cell, 0, uid, homedir); in krb5_afslog_uid_home() 293 const char *cell, in krb5_afslog_uid() argument 297 return krb5_afslog_uid_home (context, id, cell, realm, uid, NULL); in krb5_afslog_uid() [all …]
|
/freebsd/crypto/heimdal/appl/afsutil/ |
H A D | afslog.c | 61 { "cell", 'c', arg_strings, &cells, "cells to get tokens for", "cell" }, 63 { "realm", 'k', arg_string, &realm, "realm for afs cell", "realm" }, 83 expand_one_file(FILE *f, const char *cell) in expand_one_file() argument 93 if(strncmp(buf + 1, cell, strlen(cell)) == 0) in expand_one_file() 102 expand_cell_name(const char *cell) in expand_cell_name() argument 115 c = expand_one_file(f, cell); in expand_cell_name() 120 return cell; in expand_cell_name() 126 arg_printusage(args, num_args, NULL, "[cell|path]..."); in usage() 131 char *cell; member 136 afslog_cell(const char *cell, int expand) in afslog_cell() argument [all …]
|
/freebsd/contrib/mandoc/ |
H A D | tbl.7 | 63 Draw a single-line box around each table cell. 122 Each layout line consists of one or more layout cell specifications, 124 The following case-insensitive key characters start a new cell 128 Center the string in this cell. 130 Right-justify the string in this cell. 132 Left-justify the string in this cell. 140 layout cell. 145 cell, or comes first on a layout line. 146 The combined cell as a whole consumes only one cell 153 layout cell. [all …]
|
/freebsd/share/man/man9/ |
H A D | nvmem.9 | 40 .Fn nvmem_read_cell_by_name "phandle_t node" "const char *name" "void *cell" "size_t buflen" 42 .Fn nvmem_read_cell_by_idx "phandle_t node" "int idx" "void *cell" "size_t buflen" 44 .Fn nvmem_write_cell_by_name "phandle_t node" "const char *name" "void *cell" "size_t buflen" 46 .Fn nvmem_write_cell_by_idx "phandle_t node" "int idx" "void *cell" "size_t buflen" 58 Get the size of the cell base on the reg property on the node. 59 Return the size or ENOENT if the cell name wasn't found 60 .It Fn nvmem_read_cell_by_name "phandle_t node" "const char *name" "void *cell" "size_t buflen" 61 Get the cell content based on the name. 62 Return 0 on sucess or ENOENT if the cell doesn't exists, ENXIO if no provider device was found, 64 .It Fn nvmem_read_cell_by_idx "phandle_t node" "int idx" "void *cell" "size_t buflen" [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/net/ |
H A D | ibm,emac.txt | 24 - mal-tx-channel : 1 cell, index of the tx channel on McMAL associated 26 - mal-rx-channel : 1 cell, index of the rx channel on McMAL associated 28 - cell-index : 1 cell, hardware index of the EMAC cell on a given 31 - max-frame-size : 1 cell, maximum frame size supported in bytes 32 - rx-fifo-size : 1 cell, Rx fifo size in bytes for 10 and 100 Mb/sec 35 - tx-fifo-size : 1 cell, Tx fifo size in bytes for 10 and 100 Mb/sec 38 - fifo-entry-size : 1 cell, size of a fifo entry (used to calculate 41 - mal-burst-size : 1 cell, MAL burst size (used to calculate thresholds) 48 - mdio-device : 1 cell, required iff using shared MDIO registers 51 - zmii-device : 1 cell, required iff connected to a ZMII. phandle of [all …]
|
H A D | fsl-fman.txt | 32 - cell-index 37 The cell-index value may be used by the SoC, to identify the 39 there's a description of the cell-index use in each SoC: 42 register[bit] FMan unit cell-index 47 register[bit] FMan unit cell-index 54 register[bit] FMan unit cell-index 101 channels in the FMan. The first cell specifies the beginning 102 of the range and the second cell specifies the number of 177 - cell-index 191 The page of a specific port is determined by the cell-index. [all …]
|
/freebsd/sys/dts/powerpc/ |
H A D | p3041si.dtsi | 214 cell-index = <0x0>; 220 cell-index = <0x1>; 226 cell-index = <2>; 232 cell-index = <0x3>; 238 cell-index = <0x4>; 244 cell-index = <0x5>; 250 cell-index = <0x6>; 256 cell-index = <0x7>; 262 cell-index = <0x8>; 268 cell-index = <0x9>; [all …]
|
H A D | p2041si.dtsi | 213 cell-index = <0x0>; 219 cell-index = <0x1>; 225 cell-index = <2>; 231 cell-index = <0x3>; 237 cell-index = <0x4>; 243 cell-index = <0x5>; 249 cell-index = <0x6>; 255 cell-index = <0x7>; 261 cell-index = <0x8>; 267 cell-index = <0x9>; [all …]
|
H A D | p5020si.dtsi | 199 cell-index = <0x0>; 205 cell-index = <0x1>; 211 cell-index = <2>; 217 cell-index = <0x3>; 223 cell-index = <0x4>; 229 cell-index = <0x5>; 235 cell-index = <0x6>; 241 cell-index = <0x7>; 247 cell-index = <0x8>; 253 cell-index = <0x9>; [all …]
|
/freebsd/sys/dev/nvmem/ |
H A D | nvmem.c | 40 nvmem_get_cell_node(phandle_t node, int idx, phandle_t *cell) in nvmem_get_cell_node() argument 47 !OF_hasprop(node, "nvmem-cell-names")) in nvmem_get_cell_node() 64 *cell = cell_node; in nvmem_get_cell_node() 76 rv = ofw_bus_find_string_index(node, "nvmem-cell-names", name, &idx); in nvmem_get_cell_len() 86 printf("nvmem_get_cell_len: Cannot parse reg property of cell %s\n", in nvmem_get_cell_len() 95 nvmem_read_cell_by_idx(phandle_t node, int idx, void *cell, size_t buflen) in nvmem_read_cell_by_idx() argument 109 printf("nvmem_get_cell_by_name: Cannot parse reg property of cell %d\n", in nvmem_read_cell_by_idx() 124 rv = NVMEM_READ(provider, reg[0], reg[1], cell); in nvmem_read_cell_by_idx() 133 nvmem_read_cell_by_name(phandle_t node, const char *name, void *cell, size_t buflen) in nvmem_read_cell_by_name() argument 137 rv = ofw_bus_find_string_index(node, "nvmem-cell-names", name, &idx); in nvmem_read_cell_by_name() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/mips/cavium/ |
H A D | bootbus.txt | 13 - #address-cells: Must be <2>. The first cell is the chip select 14 within the bootbus. The second cell is the offset from the chip select. 29 - cavium,cs-index: A single cell indicating the chip select that 32 - cavium,t-adr: A cell specifying the ADR timing (in nS). 34 - cavium,t-ce: A cell specifying the CE timing (in nS). 36 - cavium,t-oe: A cell specifying the OE timing (in nS). 38 - cavium,t-we: A cell specifying the WE timing (in nS). 40 - cavium,t-rd-hld: A cell specifying the RD_HLD timing (in nS). 42 - cavium,t-wr-hld: A cell specifying the WR_HLD timing (in nS). 44 - cavium,t-pause: A cell specifying the PAUSE timing (in nS). [all …]
|
/freebsd/contrib/jemalloc/src/ |
H A D | ckh.c | 59 * Search bucket for key and return the cell number if found; SIZE_T_MAX 64 ckhc_t *cell; in ckh_bucket_search() local 68 cell = &ckh->tab[(bucket << LG_CKH_BUCKET_CELLS) + i]; in ckh_bucket_search() 69 if (cell->key != NULL && ckh->keycomp(key, cell->key)) { in ckh_bucket_search() 78 * Search table for key and return cell number if found; SIZE_T_MAX otherwise. 82 size_t hashes[2], bucket, cell; in ckh_isearch() local 90 cell = ckh_bucket_search(ckh, bucket, key); in ckh_isearch() 91 if (cell != SIZE_T_MAX) { in ckh_isearch() 92 return cell; in ckh_isearch() 97 cell = ckh_bucket_search(ckh, bucket, key); in ckh_isearch() [all …]
|
/freebsd/sys/dev/ofw/ |
H A D | ofw_subr.c | 82 static pcell_t cell[256]; in ofw_reg_to_paddr() local 104 cell, sizeof(cell)); in ofw_reg_to_paddr() 107 if (res % sizeof(cell[0])) in ofw_reg_to_paddr() 109 res /= sizeof(cell[0]); in ofw_reg_to_paddr() 113 pci_hi = pci ? cell[regno] : OFW_PADDR_NOT_PCI; in ofw_reg_to_paddr() 117 addr = ((uint64_t)addr << 32) | cell[regno++]; in ofw_reg_to_paddr() 120 size = ((uint64_t)size << 32) | cell[regno++]; in ofw_reg_to_paddr() 133 res = OF_getencprop(bridge, "ranges", cell, sizeof(cell)); in ofw_reg_to_paddr() 136 if (res % sizeof(cell[0])) in ofw_reg_to_paddr() 140 pci_hi = cell[0]; in ofw_reg_to_paddr() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/powerpc/fsl/ |
H A D | mpic.txt | 85 <1st-cell> interrupt-number 90 Note: If the interrupt-type cell is undefined 91 (i.e. #interrupt-cells = 2), this cell 96 <2nd-cell> level-sense information, encoded as follows: 102 <3rd-cell> interrupt-type 108 The interrupt-number cell contains 110 type-specific cell is undefined. The 121 The interrupt-number cell contains 124 cell identifies the specific error 129 The interrupt-number cell identifies [all …]
|
H A D | dma.txt | 14 - cell-index : controller index. 0 for controller @ 0x8100 21 - cell-index : DMA channel index starts at 0. 37 cell-index = <0>; 40 cell-index = <0>; 47 cell-index = <1>; 54 cell-index = <2>; 61 cell-index = <3>; 78 - cell-index : controller index. 0 for controller @ 0x21000, 86 - cell-index : DMA channel index starts at 0. 97 cell-index = <0>; [all …]
|
/freebsd/sys/contrib/device-tree/src/arm64/freescale/ |
H A D | qoriq-qman-portals.dtsi | 22 cell-index = <0>; 29 cell-index = <1>; 36 cell-index = <2>; 43 cell-index = <3>; 50 cell-index = <4>; 57 cell-index = <5>; 64 cell-index = <6>; 71 cell-index = <7>; 78 cell-index = <8>; 85 cell-index = <9>;
|
/freebsd/sys/powerpc/ofw/ |
H A D | ofw_initrd.c | 58 pcell_t cell[2]; in ofw_initrd_probe_and_attach() local 74 size = OF_getencprop(chosen, "linux,initrd-start", cell, sizeof(cell)); in ofw_initrd_probe_and_attach() 76 start = cell[0]; in ofw_initrd_probe_and_attach() 78 start = (uint64_t)cell[0] << 32 | cell[1]; in ofw_initrd_probe_and_attach() 84 size = OF_getencprop(chosen, "linux,initrd-end", cell, sizeof(cell)); in ofw_initrd_probe_and_attach() 86 end = cell[0]; in ofw_initrd_probe_and_attach() 88 end = (uint64_t)cell[0] << 32 | cell[1]; in ofw_initrd_probe_and_attach()
|
/freebsd/sys/contrib/device-tree/Bindings/powerpc/4xx/ |
H A D | cpm.txt | 16 - unused-units : specifier consist of one cell. For each 17 bit in the cell, the corresponding bit 20 - idle-doze : specifier consist of one cell. For each 21 bit in the cell, the corresponding bit 24 - standby : specifier consist of one cell. For each 25 bit in the cell, the corresponding bit 28 - suspend : specifier consist of one cell. For each 29 bit in the cell, the corresponding bit
|
/freebsd/sys/contrib/device-tree/src/powerpc/fsl/ |
H A D | t4240si-post.dtsi | 171 cell-index = <1>; 177 cell-index = <2>; 578 cell-index = <0x0>; 584 cell-index = <0x1>; 590 cell-index = <0x2>; 596 cell-index = <0x3>; 602 cell-index = <0x4>; 608 cell-index = <0x5>; 614 cell-index = <0x6>; 620 cell-index = <0x7>; [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/clock/ |
H A D | stericsson,u8500-clks.yaml | 38 description: A subnode with one clock cell for PRCMU (power, reset, control 39 management unit) clocks. The cell indicates which PRCMU clock in the 51 reset and clock controller) peripheral clocks. The first cell indicates 53 5, 6. The second cell indicates which clock inside the PRCC block it 65 and clock controller) kernel clocks. The first cell indicates which PRCC 67 second cell indicates which clock inside the PRCC block it wants, possible 79 PRCC (peripheral reset and clock controller). The first cell indicates 81 5 and 6. The second cell indicates which reset line inside the PRCC block 121 The first cell indicates which output clock we are using, 123 The second cell indicates which clock we want to use as source, [all …]
|