Searched refs:tag (Results 151 - 175 of 1277) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/bsd/atf/dist/atf-c++/detail/
H A Dui.cpp79 const std::string& tag,
86 const std::string pad(col - tag.length(), ' ');
91 formatted = tag + pad;
107 formatted += '\n' + tag + pad;
142 impl::format_text_with_tag(const std::string& text, const std::string& tag, argument
145 PRE(col == 0 || col >= tag.length());
147 col = tag.length();
156 formatted += format_paragraph(line, tag, iter == lines.begin(),
160 formatted += "\n" + tag + "\n";
78 format_paragraph(const std::string& text, const std::string& tag, const bool first, const bool repeat, const size_t col) argument
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/unit/atf-src/atf-c++/detail/
H A Dui.cpp78 const std::string& tag,
85 const std::string pad(col - tag.length(), ' ');
90 formatted = tag + pad;
106 formatted += '\n' + tag + pad;
141 impl::format_text_with_tag(const std::string& text, const std::string& tag, argument
144 PRE(col == 0 || col >= tag.length());
146 col = tag.length();
155 formatted += format_paragraph(line, tag, iter == lines.begin(),
159 formatted += "\n" + tag + "\n";
77 format_paragraph(const std::string& text, const std::string& tag, const bool first, const bool repeat, const size_t col) argument
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/servers/slapd/
H A Dtxn.c122 ber_tag_t tag; local
148 tag = ber_scanf( ber, "{" /*}*/ );
149 if( tag == LBER_ERROR ) {
154 tag = ber_peek_tag( ber, &len );
155 if( tag == LBER_BOOLEAN ) {
156 tag = ber_scanf( ber, "b", &commit );
157 if( tag == LBER_ERROR ) {
163 tag = ber_scanf( ber, /*{*/ "m}", &txnid );
164 if( tag == LBER_ERROR ) {
/netbsd-6-1-5-RELEASE/sys/dev/i2c/
H A Dtvpll.c45 i2c_tag_t tag; member in struct:tvpll
64 tvpll->tag = t;
70 iic_acquire_bus(tvpll->tag, I2C_F_POLL);
71 rv = iic_exec(tvpll->tag, I2C_OP_WRITE_WITH_STOP, tvpll->addr,
74 iic_release_bus(tvpll->tag, I2C_F_POLL);
139 iic_acquire_bus(tvpll->tag, I2C_F_POLL);
144 rv = iic_exec(tvpll->tag, I2C_OP_WRITE_WITH_STOP, tvpll->addr, ab, 2, NULL, 0, I2C_F_POLL);
146 rv = iic_exec(tvpll->tag, I2C_OP_WRITE_WITH_STOP, tvpll->addr, b, 4, NULL, 0, I2C_F_POLL);
147 iic_release_bus(tvpll->tag, I2C_F_POLL);
/netbsd-6-1-5-RELEASE/lib/libc/gen/
H A Dfmtmsg.c66 { 3, "tag" } /* log2(MM_VERBTAG) */
145 writeit(stream, which, label, sevstr, text, action, tag)
152 const char *tag;
177 ((which & MM_VERBTAG) && tag != MM_NULLTAG) ?
178 tag : "",
180 ((which & MM_VERBTAG) && tag != MM_NULLTAG) ?
187 fmtmsg(classification, label, severity, text, action, tag)
193 const char *tag;
223 label, sevstr, text, action, tag) < 0)
230 label, sevstr, text, action, tag) <
[all...]
/netbsd-6-1-5-RELEASE/lib/libisns/
H A Disns_pdu.h112 uint32_t tag; local
113 memcpy(&tag, buf, sizeof(tag));
114 return isns_ntohl(tag);
117 static inline void ISNS_TLV_SET_TAG(void *buf, uint32_t tag) { argument
118 tag = isns_htonl(tag);
119 memcpy(buf, &tag, sizeof(tag));
/netbsd-6-1-5-RELEASE/sys/arch/emips/stand/common/
H A Dprom_iface.c190 uint16_t tag; local
203 tag = Pmt->Tag;
204 //printf("PMT @%x tag=%x\n",Pmt,tag);
205 switch (tag) {
214 //printf("RAM @%x tag=%x ctl=%x\n", Ram, Ram->BaseAddressAndTag,Ram->Control);
215 if (tag != (Ram->BaseAddressAndTag & RAMBT_TAG))
218 if ((tag != PMTTAG_FLASH) && (addr < base)) {
228 switch (tag) {
257 tag
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/openpam/
H A Dopenpam2netbsd73 mv /tmp/openp3n$$ $c && echo added NetBSD RCS tag to $c
82 mv /tmp/openp2m$$ $m && echo added NetBSD RCS tag to $m
89 mv /tmp/openp4t$$ $t && echo added NetBSD RCS tag to $t
/netbsd-6-1-5-RELEASE/sys/arch/sandpoint/stand/altboot/
H A Dnif.c71 unsigned tag; local
77 tag = pci->bdf;
80 if ((*dv->match)(tag, NULL) > 0)
86 pci->drv = dv->priv = (*dv->init)(tag, enaddr);
93 bi_net.cookie = tag;
95 bi_rdev.cookie = tag;
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/frv/
H A Dcache.c248 If it is found then 'return_tag' is set to point to the tag for that line
250 If it is not found, 'return_tag' is set to point to the tag for the least
259 USI tag; local
273 /* Now search the set for a valid tag which matches this address. At the
274 same time make note of the least recently used tag, which we will return
277 tag = CACHE_ADDRESS_TAG (cache, address);
281 /* This tag is available as the least recently used if it is the
285 if (found->valid && found->tag == tag)
332 write_line_to_memory (FRV_CACHE *cache, FRV_CACHE_TAG *tag) argument
360 fill_line_from_memory(FRV_CACHE *cache, FRV_CACHE_TAG *tag, SI address) argument
393 set_most_recently_used(FRV_CACHE *cache, FRV_CACHE_TAG *tag) argument
411 set_least_recently_used(FRV_CACHE *cache, FRV_CACHE_TAG *tag) argument
434 FRV_CACHE_TAG *tag; local
455 copy_line_to_return_buffer(FRV_CACHE *cache, int pipe, FRV_CACHE_TAG *tag, SI address) argument
489 FRV_CACHE_TAG *tag; local
520 FRV_CACHE_TAG *tag; local
584 FRV_CACHE_TAG *tag = find_or_retrieve_cache_line (cache, address); local
598 FRV_CACHE_TAG *tag; local
631 FRV_CACHE_TAG *tag; local
669 FRV_CACHE_TAG *tag = cache->tag_storage; local
1254 FRV_CACHE_TAG *tag; local
1289 FRV_CACHE_TAG *tag; local
1350 FRV_CACHE_TAG *tag; local
1465 FRV_CACHE_TAG *tag; local
1626 FRV_CACHE_TAG *tag; local
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/pci/
H A Djoy_pci.c53 static int bar_is_io(pci_chipset_tag_t pc, pcitag_t tag, int reg);
75 bar_is_io(pci_chipset_tag_t pc, pcitag_t tag, int reg) argument
79 address = pci_conf_read(pc, tag, reg);
80 pci_conf_write(pc, tag, reg, 0xffffffff);
81 mask = pci_conf_read(pc, tag, reg);
82 pci_conf_write(pc, tag, reg, address);
H A Dehci_pci.c76 pcitag_t tag);
78 pcitag_t tag);
118 pcitag_t tag = pa->pa_tag; local
151 sc->sc_tag = tag;
166 csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
167 pci_conf_write(pc, tag, PCI_COMMAND_STATUS_REG,
190 switch(pci_conf_read(pc, tag, PCI_USBREV) & PCI_USBREV_MASK) {
245 ehci_get_ownership(&sc->sc, pc, tag);
311 ehci_dump_caps(ehci_softc_t *sc, pci_chipset_tag_t pc, pcitag_t tag) argument
319 cap = pci_conf_read(pc, tag, add
340 ehci_release_ownership(ehci_softc_t *sc, pci_chipset_tag_t pc, pcitag_t tag) argument
368 ehci_get_ownership(ehci_softc_t *sc, pci_chipset_tag_t pc, pcitag_t tag) argument
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/util/
H A Dmkdef.pl436 my %tag = (
453 # %tag and %variant...
464 map { $tag{$_} == 1 ? $_ : "" }
471 map { $tag{$_} == 1 ? $_ : "" }
476 map { $tag{"OPENSSL_SYS_".$_} == 1 ? $_ : "" }
504 undef @tag;
539 push(@tag,"-");
540 push(@tag,$1);
541 $tag{$1}=-1;
542 print STDERR "DEBUG: $file: found tag
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/top/dist/
H A Dcolor.c45 * tag=minimum,maximum#code
47 * "tag" is the name of the value to display with color.
67 char *tag; member in struct:color_entry
148 ce->tag = emalloc(len + 1);
149 strncpy(ce->tag, p, len);
150 ce->tag[len] = '\0';
176 * int color_tag(char *tag)
178 * Declare "tag" as a color tag. Return a tag inde
184 color_tag(const char *tag) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/opcodes/
H A Dspu-dis.c101 enum spu_insns tag; local
122 tag = (enum spu_insns)(op_index - spu_opcodes);
124 if (tag == M_BI || tag == M_BISL || tag == M_IRET || tag == M_BISLED
125 || tag == M_BIHNZ || tag == M_BIHZ || tag == M_BINZ || tag
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/cobalt/pci/
H A Dpci_machdep.c94 pci_decompose_tag(pci_chipset_tag_t pc, pcitag_t tag, int *bp, int *dp, int *fp) argument
98 *bp = (tag >> 16) & 0xff;
100 *dp = (tag >> 11) & 0x1f;
102 *fp = (tag >> 8) & 0x07;
106 pci_conf_read(pci_chipset_tag_t pc, pcitag_t tag, int reg) argument
113 pci_decompose_tag(pc, tag, &bus, &dev, &func);
127 PCICFG_ENABLE | tag | reg);
135 pci_conf_write(pci_chipset_tag_t pc, pcitag_t tag, int reg, pcireg_t data) argument
139 PCICFG_ENABLE | tag | reg);
280 pcitag_t tag; local
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/evbarm/ifpga/
H A Difpga_pci.c187 ifpga_pci_decompose_tag(void *pcv, pcitag_t tag, int *busp, int *devicep, argument
191 printf("ifpga_pci_decompose_tag(pcv=%p, tag=0x%08lx, bp=%p, dp=%p, "
192 "fp=%p)\n", pcv, tag, busp, devicep, functionp);
196 *busp = (tag >> 16) & 0xff;
198 *devicep = (tag >> 11) & 0x1f;
200 *functionp = (tag >> 8) & 0x7;
204 ifpga_pci_conf_read(void *pcv, pcitag_t tag, int reg) argument
211 ifpga_pci_decompose_tag(pcv, tag, &bus, &device, &function);
234 tag | reg);
245 printf("ifpga_pci_conf_read(pcv=%p tag
252 ifpga_pci_conf_write(void *pcv, pcitag_t tag, int reg, pcireg_t data) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/arm/xscale/
H A Dixp425_pci.c74 * Initialise the PCI chipset tag
136 ixp425_pci_decompose_tag(void *v, pcitag_t tag, int *busp, int *devicep, argument
140 printf("ixp425_pci_decompose_tag(v=%p, tag=0x%08lx, bp=%x, dp=%x, fp=%x)\n",
141 v, tag, (int)busp, (int)devicep, (int)functionp);
144 *busp = (tag >> 16) & 0xff;
146 *devicep = (tag >> 11) & 0x1f;
148 *functionp = (tag >> 8) & 0x7;
152 ixp425_pci_conf_setup(void *v, struct ixp425_softc *sc, pcitag_t tag, int offset) argument
156 ixp425_pci_decompose_tag(v, tag, &bus, &device, &function);
177 ixp425_pci_conf_read(void *v, pcitag_t tag, in argument
221 ixp425_pci_conf_write(void *v, pcitag_t tag, int offset, pcireg_t val) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/opcodes/
H A Dspu-dis.c101 enum spu_insns tag; local
122 tag = (enum spu_insns)(op_index - spu_opcodes);
124 if (tag == M_BI || tag == M_BISL || tag == M_IRET || tag == M_BISLED
125 || tag == M_BIHNZ || tag == M_BIHZ || tag == M_BINZ || tag
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/usb/
H A Dusb_mem.c108 usb_block_allocmem(bus_dma_tag_t tag, size_t size, size_t align, argument
127 if (b->tag == tag && b->size >= size && b->align >= align) {
151 b->tag = tag;
154 error = bus_dmamem_alloc(tag, b->size, align, 0,
160 error = bus_dmamem_map(tag, b->segs, b->nsegs, b->size,
165 error = bus_dmamap_create(tag, b->size, 1, b->size,
170 error = bus_dmamap_load(tag, b->map, b->kaddr, b->size, NULL,
182 bus_dmamap_destroy(tag,
246 bus_dma_tag_t tag = bus->dmatag; local
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/asn1/
H A Dgen_decode.c63 Der_class *cl, Der_type *ty, unsigned *tag)
69 *tag = UT_BitString;
74 *tag = UT_Boolean;
81 *tag = UT_Enumerated;
86 *tag = UT_GeneralString;
91 *tag = UT_TeletexString;
96 *tag = UT_GeneralizedTime;
101 *tag = UT_IA5String;
106 *tag = UT_Integer;
111 *tag
62 find_tag(const Type *t, Der_class *cl, Der_type *ty, unsigned *tag) argument
571 unsigned tag; local
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssh/dist/
H A Dumac.h69 int umac_final(struct umac_ctx *ctx, u_char tag[], u_char nonce[8]);
70 /* Incorporate any pending data and the ctr value, and return tag.
79 long len, u_char tag[],
/netbsd-6-1-5-RELEASE/crypto/external/cpl/trousers/dist/src/tcs/
H A Dtcs_counter.c43 UnloadBlob_UINT16(offset, &ctr->tag, blob);
51 LoadBlob_UINT16(offset, ctr->tag, blob);
/netbsd-6-1-5-RELEASE/external/bsd/libdwarf/dist/
H A Ddwarf_abbrev.c39 dwarf_abbrev_add(Dwarf_CU cu, uint64_t entry, uint64_t tag, uint8_t children, Dwarf_Abbrev *ap, Dwarf_Error *error) argument
51 a->a_tag = tag;
/netbsd-6-1-5-RELEASE/external/cddl/osnet/dist/uts/common/fs/zfs/sys/
H A Drrwlock.h63 * 'tag' is used in reference counting tracking. The
64 * 'tag' must be the same in a rrw_enter() as in its
69 void rrw_enter(rrwlock_t *rrl, krw_t rw, void *tag);
70 void rrw_exit(rrwlock_t *rrl, void *tag);

Completed in 505 milliseconds

1234567891011>>