Home
last modified time | relevance | path

Searched refs:address (Results 1 – 25 of 3540) sorted by relevance

12345678910>>...142

/netbsd/src/external/gpl3/gdb/dist/sim/frv/
Dmemory.c34 fr400_check_data_read_address (SIM_CPU *current_cpu, SI address, int align_mask) in fr400_check_data_read_address() argument
39 if ((USI)address >= 0xfe800000 && (USI)address <= 0xfeffffff) in fr400_check_data_read_address()
40 frv_queue_data_access_error_interrupt (current_cpu, address); in fr400_check_data_read_address()
42 return address; in fr400_check_data_read_address()
46 fr500_check_data_read_address (SIM_CPU *current_cpu, SI address, int align_mask) in fr500_check_data_read_address() argument
48 if (address & align_mask) in fr500_check_data_read_address()
50 frv_queue_mem_address_not_aligned_interrupt (current_cpu, address); in fr500_check_data_read_address()
51 address &= ~align_mask; in fr500_check_data_read_address()
54 if (((USI)address >= 0xfeff0600 && (USI)address <= 0xfeff7fff) in fr500_check_data_read_address()
55 || ((USI)address >= 0xfe800000 && (USI)address <= 0xfefeffff)) in fr500_check_data_read_address()
[all …]
Dcache.c164 ram_access (FRV_CACHE *cache, USI address) in ram_access() argument
191 return address >= start && address < end; in ram_access()
202 non_cache_access (FRV_CACHE *cache, USI address) in non_cache_access() argument
213 if (address >= 0xff000000 in non_cache_access()
214 || (address >= 0xfe000000 && address <= 0xfeffffff)) in non_cache_access()
218 if (address >= 0xff000000 in non_cache_access()
219 || (address >= 0xfeff0000 && address <= 0xfeffffff)) in non_cache_access()
223 if (address >= 0xfe000000 && address <= 0xfe007fff) in non_cache_access()
226 else if (address >= 0xfe400000 && address <= 0xfe407fff) in non_cache_access()
230 if (address >= 0xff000000 in non_cache_access()
[all …]
/netbsd/src/external/gpl3/gdb/dist/sim/rl78/
Dmem.c106 address_mapping (int address) in address_mapping() argument
108 address &= MASK; in address_mapping()
109 if (address >= mirror_ram_base && address < mirror_ram_base + mirror_length) in address_mapping()
111 address = address - mirror_ram_base + mirror_rom_base; in address_mapping()
114 address |= 0x10000; in address_mapping()
121 return address; in address_mapping()
125 mem_put_byte (int address, unsigned char value) in mem_put_byte() argument
127 address = address_mapping (address); in mem_put_byte()
128 memory [address] = value; in mem_put_byte()
129 initted [address] = 1; in mem_put_byte()
[all …]
/netbsd/src/external/gpl3/gdb/dist/sim/rx/
Dmem.c79 rx_mem_ptr (unsigned long address, enum mem_ptr_action action) in rx_mem_ptr() argument
81 int pt1 = (address >> (L2_BITS + OFF_BITS)) & ((1 << L1_BITS) - 1); in rx_mem_ptr()
82 int pt2 = (address >> OFF_BITS) & ((1 << L2_BITS) - 1); in rx_mem_ptr()
83 int pto = address & ((1 << OFF_BITS) - 1); in rx_mem_ptr()
85 if (address == 0) in rx_mem_ptr()
97 execution_error (SIM_ERR_READ_UNWRITTEN_PAGES, address); in rx_mem_ptr()
105 execution_error (SIM_ERR_READ_UNWRITTEN_BYTES, address); in rx_mem_ptr()
111 execution_error (SIM_ERR_CORRUPT_STACK, address); in rx_mem_ptr()
135 rx_mem_decode_cache (unsigned long address) in rx_mem_decode_cache() argument
137 return (RX_Opcode_Decoded **) rx_mem_ptr (address, MPA_DECODE_CACHE); in rx_mem_decode_cache()
[all …]
Dmem.h48 unsigned char *rx_mem_ptr (unsigned long address, enum mem_ptr_action action);
50 RX_Opcode_Decoded **rx_mem_decode_cache (unsigned long address);
53 void mem_put_qi (int address, unsigned char value);
54 void mem_put_hi (int address, unsigned short value);
55 void mem_put_psi (int address, unsigned long value);
56 void mem_put_si (int address, unsigned long value);
58 void mem_put_blk (int address, void *bufptr_void, int nbytes);
60 unsigned char mem_get_pc (int address);
62 unsigned char mem_get_qi (int address);
63 unsigned short mem_get_hi (int address);
[all …]
/netbsd/src/external/gpl3/gdb/dist/sim/arm/
Darmvirt.c62 GetWord (ARMul_State * state, ARMword address, int check) in GetWord() argument
70 XScale_check_memacc (state, &address, 0); in GetWord()
72 page = address >> PAGEBITS; in GetWord()
73 offset = (address & OFFSETBITS) >> 2; in GetWord()
98 PutWord (ARMul_State * state, ARMword address, ARMword data, int check) in PutWord() argument
106 XScale_check_memacc (state, &address, 1); in PutWord()
108 page = address >> PAGEBITS; in PutWord()
109 offset = (address & OFFSETBITS) >> 2; in PutWord()
125 if (address == 0x8) in PutWord()
186 ARMul_ReLoadInstr (ARMul_State * state, ARMword address, ARMword isize) in ARMul_ReLoadInstr() argument
[all …]
Darmsupp.c525 ARMword address = state->Reg[n]; in handle_VFP_xfer() local
527 state->Reg[n] = address + (imm8 << 2); in handle_VFP_xfer()
537 ARMul_StoreWordN (state, address, VFP_dword (src) >> 32); in handle_VFP_xfer()
538 ARMul_StoreWordN (state, address + 4, VFP_dword (src)); in handle_VFP_xfer()
542 ARMul_StoreWordN (state, address, VFP_dword (src)); in handle_VFP_xfer()
543 ARMul_StoreWordN (state, address + 4, VFP_dword (src) >> 32); in handle_VFP_xfer()
545 address += 8; in handle_VFP_xfer()
554 ARMul_StoreWordN (state, address, VFP_uword (src)); in handle_VFP_xfer()
555 address += 4; in handle_VFP_xfer()
570 ARMword address; in handle_VFP_xfer() local
[all …]
/netbsd/src/external/gpl3/gdb/dist/sim/ppc/
Dhw_phb.c346 extract_n(const device_unit *address) in extract_n() argument
348 return EXTRACTED32(address->cells[0], 0, 0); in extract_n()
352 set_n(device_unit *address) in set_n() argument
354 BLIT32(address->cells[0], 0, 1); in set_n()
361 extract_p(const device_unit *address) in extract_p() argument
363 ASSERT(address->nr_cells == 3); in extract_p()
364 return EXTRACTED32(address->cells[0], 1, 1); in extract_p()
368 set_p(device_unit *address) in set_p() argument
370 BLIT32(address->cells[0], 1, 1); in set_p()
377 extract_t(const device_unit *address) in extract_t() argument
[all …]
Dhw_memory.c87 unsigned_word address; member
124 || chunk->address < chunk->next->address); in hw_memory_set_available()
126 || chunk->address + chunk->size == chunk->next->address); in hw_memory_set_available()
137 available[curr].base = H2BE_cell(chunk->address); in hw_memory_set_available()
175 for (i = 0; i < reg.address.nr_cells - 1; i++) in hw_memory_init_address()
176 if (reg.address.cells[i] != 0) in hw_memory_init_address()
185 reg.address.cells[reg.address.nr_cells - 1], in hw_memory_init_address()
205 (signed_cell *)&new_chunk->address); in hw_memory_init_address()
222 new_chunk->address = reg.address.cells[reg.address.nr_cells - 1]; in hw_memory_init_address()
252 unsigned_cell address; in hw_memory_instance_claim() local
[all …]
Dhw_eeprom.c265 unsigned_word address, in invalid_read() argument
269 (unsigned long)address, in invalid_read()
277 unsigned_word address, in invalid_write() argument
283 (unsigned long)address, in invalid_write()
314 unsigned_word address, in start_programming_byte() argument
317 uint8_t old_byte = eeprom->memory[address]; in start_programming_byte()
319 (unsigned long)address, in start_programming_byte()
322 eeprom->byte_program_address = address; in start_programming_byte()
329 invalid_write(me, eeprom->state, address, new_byte, "setting cleared bit"); in start_programming_byte()
336 eeprom->memory[address] = ~new_byte & ~0x24; /* LE-bits 5:3 zero */ in start_programming_byte()
[all …]
/netbsd/src/external/ibm-public/postfix/dist/src/global/
Drewrite_clnt.ref2 address !
6 address a!
10 address !b
14 address a!b
18 address %
22 address a%
26 address %b
30 address a%b
34 address @
38 address a@
[all …]
Dtok822_limit.ref4 address
7 address
10 address
13 address
16 address
19 address
22 address
25 address
28 address
31 address
[all …]
Dresolve_clnt.ref2 address
9 address @
16 address @@
23 address @a.
30 address @..
37 address @.@.
44 address !
51 address a!
58 address !b
65 address a!b
[all …]
Dtok822_parse.ref4 address
23 address
42 address
61 address
80 address
87 address
91 address
110 address
130 address
151 address
[all …]
/netbsd/src/external/gpl3/gdb/dist/sim/m32c/
Dmem.c92 mem_ptr (int address) in mem_ptr() argument
95 int pt1 = (address >> (L2_BITS + OFF_BITS)) & ((1 << L1_BITS) - 1); in mem_ptr()
96 int pt2 = (address >> OFF_BITS) & ((1 << L2_BITS) - 1); in mem_ptr()
97 int pto = address & ((1 << OFF_BITS) - 1); in mem_ptr()
99 if (address == 0 && !recursing) in mem_ptr()
186 s (int address, char *dir) in s() argument
189 printf ("MEM[%0*x] %s", membus_mask == 0xfffff ? 5 : 6, address, dir); in s()
193 #define S(d) if (trace) s(address, d)
209 mem_put_byte (int address, unsigned char value) in mem_put_byte() argument
212 address &= membus_mask; in mem_put_byte()
[all …]
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dgimple-loop-versioning.cc432 dump_address_info (dump_flags_t flags, address_info &address) in dump_address_info() argument
434 if (address.base) in dump_address_info()
435 dump_printf (flags, "%T + ", address.base); in dump_address_info()
436 for (unsigned int i = 0; i < address.terms.length (); ++i) in dump_address_info()
440 dump_printf (flags, "%T", address.terms[i].expr); in dump_address_info()
441 if (address.terms[i].multiplier != 1) in dump_address_info()
442 dump_printf (flags, " * %wd", address.terms[i].multiplier); in dump_address_info()
445 address.min_offset, address.max_offset - 1); in dump_address_info()
792 loop_versioning::dump_inner_likelihood (address_info &address, in dump_inner_likelihood() argument
796 dump_printf_loc (MSG_NOTE, address.stmt, "%T is likely to be the" in dump_inner_likelihood()
[all …]
/netbsd/src/crypto/external/bsd/heimdal/dist/lib/krb5/
Daddr_families.c72 return krb5_data_copy(&a->address, buf, 4); in ipv4_sockaddr2addr()
94 memcpy (&tmp.sin_addr, a->address.data, 4); in ipv4_addr2sockaddr()
124 return krb5_data_copy(&a->address, buf, 4); in ipv4_h_addr2addr()
171 memcpy (&ia, addr->address.data, 4); in ipv4_print_addr()
177 ipv4_parse_addr (krb5_context context, const char *address, krb5_address *addr) in ipv4_parse_addr() argument
182 p = strchr(address, ':'); in ipv4_parse_addr()
185 if(strncasecmp(address, "ip:", p - address) != 0 && in ipv4_parse_addr()
186 strncasecmp(address, "ip4:", p - address) != 0 && in ipv4_parse_addr()
187 strncasecmp(address, "ipv4:", p - address) != 0 && in ipv4_parse_addr()
188 strncasecmp(address, "inet:", p - address) != 0) in ipv4_parse_addr()
[all …]
/netbsd/src/sys/arch/acorn32/podulebus/
Dnetslot.c61 netslotread(u_int address, int offset) in netslotread() argument
67 WriteByte(address, 0); in netslotread()
71 (void)ReadByte(address); in netslotread()
75 return(ReadByte(address)); in netslotread()
82 volatile u_char *address; in netslotscan() local
90 address = (u_char *)NETSLOT_BASE; in netslotscan()
115 podule->flags0 = *address; in netslotscan()
116 podule->flags1 = *address; in netslotscan()
117 podule->reserved = *address; in netslotscan()
118 podule->product = *address; in netslotscan()
[all …]
Dpodulebus.c180 u_int address; in podulechunkdirectory() local
188 address = 0x40; in podulechunkdirectory()
191 id = podule->read_rom(podule->sync_base, address); in podulechunkdirectory()
192 size = podule->read_rom(podule->sync_base, address + 4); in podulechunkdirectory()
193 size |= (podule->read_rom(podule->sync_base, address + 8) << 8); in podulechunkdirectory()
194 size |= (podule->read_rom(podule->sync_base, address + 12) << 16); in podulechunkdirectory()
196 addr = podule->read_rom(podule->sync_base, address + 16); in podulechunkdirectory()
197 addr |= (podule->read_rom(podule->sync_base, address + 20) << 8); in podulechunkdirectory()
198 addr |= (podule->read_rom(podule->sync_base, address + 24) << 16); in podulechunkdirectory()
199 addr |= (podule->read_rom(podule->sync_base, address + 28) << 24); in podulechunkdirectory()
[all …]
/netbsd/src/external/ibm-public/postfix/dist/src/smtpd/
Dsmtpd_check.ref75 …oo[123.123.123.123]: 501 5.5.2 <[::]>: Helo command rejected: invalid ip address; proto=SMTP helo=…
76 501 5.5.2 <[::]>: Helo command rejected: invalid ip address
80 ….123.123.123]: 501 5.5.2 <[ipv6::::]>: Helo command rejected: invalid ip address; proto=SMTP helo=…
81 501 5.5.2 <[ipv6::::]>: Helo command rejected: invalid ip address
110 …ject: MAIL from foo[123.123.123.123]: 450 4.1.8 <foo@bad.domain>: Sender address rejected: Domain …
111 450 4.1.8 <foo@bad.domain>: Sender address rejected: Domain not found
115 …AIL from foo[123.123.123.123]: 554 5.7.1 <bad-sender@any.domain>: Sender address rejected: match b…
116 554 5.7.1 <bad-sender@any.domain>: Sender address rejected: match bad-sender@
119 >>> mail reject@this.address
120 …123.123]: 554 5.7.1 <reject@this.address>: Sender address rejected: match reject@this.address; fro…
[all …]
/netbsd/src/external/bsd/tcpdump/dist/tests/
Disis_3-v.out7 Area address(es) TLV #1, length: 4
8 Area address (length: 3): 49.0014
9 IPv4 Interface address(es) TLV #132, length: 4
10 IPv4 interface address: 10.0.0.2
25 Area address(es) TLV #1, length: 4
26 Area address (length: 3): 49.0014
27 IPv4 Interface address(es) TLV #132, length: 4
28 IPv4 interface address: 10.0.0.2
43 Area address(es) TLV #1, length: 4
44 Area address (length: 3): 49.0014
[all …]
Disis_2-v.out7 Area address(es) TLV #1, length: 4
8 Area address (length: 3): 49.000a
9 IPv4 Interface address(es) TLV #132, length: 4
10 IPv4 interface address: 10.0.10.2
25 Area address(es) TLV #1, length: 4
26 Area address (length: 3): 49.000a
27 IPv4 Interface address(es) TLV #132, length: 4
28 IPv4 interface address: 10.0.10.2
43 Area address(es) TLV #1, length: 4
44 Area address (length: 3): 49.000a
[all …]
Disis_iid_tlv.out9 Area address(es) TLV #1, length: 4
10 Area address (length: 3): 49.0001
11 IPv4 Interface address(es) TLV #132, length: 4
12 IPv4 interface address: 1.1.1.1
32 Area address(es) TLV #1, length: 4
33 Area address (length: 3): 49.0001
34 IPv4 Interface address(es) TLV #132, length: 4
35 IPv4 interface address: 1.1.1.1
55 Area address(es) TLV #1, length: 4
56 Area address (length: 3): 49.0001
[all …]
Disis_4-v.out11 Area address(es) TLV #1, length: 4
12 Area address (length: 3): 49.0001
13 IPv4 Interface address(es) TLV #132, length: 4
14 IPv4 interface address: 10.0.0.1
31 Area address(es) TLV #1, length: 4
32 Area address (length: 3): 49.0001
33 IPv4 Interface address(es) TLV #132, length: 4
34 IPv4 interface address: 10.0.0.1
51 Area address(es) TLV #1, length: 4
52 Area address (length: 3): 49.0001
[all …]
/netbsd/src/sys/dev/microcode/aic7xxx/
Daic79xx.reg93 * Controls which of the 5, 512byte, address spaces should be used
98 address 0x000
112 address 0x001
129 address 0x002
208 address 0x003
224 address 0x004
239 address 0x004
255 address 0x005
271 address 0x006
280 address 0x008
[all …]

12345678910>>...142