| /src/external/gpl3/gcc/dist/fixincludes/tests/base/mach-o/ |
| dyld.h | 15 unsigned long *address);
|
| /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/mach-o/ |
| dyld.h | 15 unsigned long *address);
|
| /src/external/gpl3/gdb.old/dist/sim/m32c/ |
| mem.h | 25 void mem_put_qi (int address, unsigned char value); 26 void mem_put_hi (int address, unsigned short value); 27 void mem_put_psi (int address, unsigned long value); 28 void mem_put_si (int address, unsigned long value); 30 void mem_put_blk (int address, const void *bufptr, int nbytes); 34 unsigned char mem_get_qi (int address); 35 unsigned short mem_get_hi (int address); 36 unsigned long mem_get_psi (int address); 37 unsigned long mem_get_si (int address); 39 void mem_get_blk (int address, void *bufptr, int nbytes) [all...] |
| /src/external/gpl3/gdb/dist/sim/m32c/ |
| mem.h | 25 void mem_put_qi (int address, unsigned char value); 26 void mem_put_hi (int address, unsigned short value); 27 void mem_put_psi (int address, unsigned long value); 28 void mem_put_si (int address, unsigned long value); 30 void mem_put_blk (int address, const void *bufptr, int nbytes); 34 unsigned char mem_get_qi (int address); 35 unsigned short mem_get_hi (int address); 36 unsigned long mem_get_psi (int address); 37 unsigned long mem_get_si (int address); 39 void mem_get_blk (int address, void *bufptr, int nbytes) [all...] |
| /src/external/gpl3/gdb.old/dist/sim/rl78/ |
| mem.h | 38 void mem_put_qi (int address, unsigned char value); 39 void mem_put_hi (int address, unsigned short value); 40 void mem_put_psi (int address, unsigned long value); 41 void mem_put_si (int address, unsigned long value); 43 void mem_put_blk (int address, const void *bufptr, int nbytes); 45 unsigned char mem_get_pc (int address); 47 unsigned char mem_get_qi (int address); 48 unsigned short mem_get_hi (int address); 49 unsigned long mem_get_psi (int address); 50 unsigned long mem_get_si (int address); [all...] |
| mem.c | 106 address_mapping (int address) 108 address &= MASK; 109 if (address >= mirror_ram_base && address < mirror_ram_base + mirror_length) 111 address = address - mirror_ram_base + mirror_rom_base; 114 address |= 0x10000; 121 return address; 125 mem_put_byte (int address, unsigned char value) 127 address = address_mapping (address) [all...] |
| /src/external/gpl3/gdb/dist/sim/rl78/ |
| mem.h | 38 void mem_put_qi (int address, unsigned char value); 39 void mem_put_hi (int address, unsigned short value); 40 void mem_put_psi (int address, unsigned long value); 41 void mem_put_si (int address, unsigned long value); 43 void mem_put_blk (int address, const void *bufptr, int nbytes); 45 unsigned char mem_get_pc (int address); 47 unsigned char mem_get_qi (int address); 48 unsigned short mem_get_hi (int address); 49 unsigned long mem_get_psi (int address); 50 unsigned long mem_get_si (int address); [all...] |
| mem.c | 106 address_mapping (int address) 108 address &= MASK; 109 if (address >= mirror_ram_base && address < mirror_ram_base + mirror_length) 111 address = address - mirror_ram_base + mirror_rom_base; 114 address |= 0x10000; 121 return address; 125 mem_put_byte (int address, unsigned char value) 127 address = address_mapping (address) [all...] |
| /src/external/gpl3/gdb.old/dist/sim/rx/ |
| mem.h | 42 /* rx_mem_ptr returns a pointer which is valid as long as the address 48 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); [all...] |
| mem.c | 79 rx_mem_ptr (unsigned long address, enum mem_ptr_action action) 81 int pt1 = (address >> (L2_BITS + OFF_BITS)) & ((1 << L1_BITS) - 1); 82 int pt2 = (address >> OFF_BITS) & ((1 << L2_BITS) - 1); 83 int pto = address & ((1 << OFF_BITS) - 1); 85 if (address == 0) 97 execution_error (SIM_ERR_READ_UNWRITTEN_PAGES, address); 105 execution_error (SIM_ERR_READ_UNWRITTEN_BYTES, address); 111 execution_error (SIM_ERR_CORRUPT_STACK, address); 135 rx_mem_decode_cache (unsigned long address) 137 return (RX_Opcode_Decoded **) rx_mem_ptr (address, MPA_DECODE_CACHE) [all...] |
| /src/external/gpl3/gdb/dist/sim/rx/ |
| mem.h | 42 /* rx_mem_ptr returns a pointer which is valid as long as the address 48 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); [all...] |
| mem.c | 79 rx_mem_ptr (unsigned long address, enum mem_ptr_action action) 81 int pt1 = (address >> (L2_BITS + OFF_BITS)) & ((1 << L1_BITS) - 1); 82 int pt2 = (address >> OFF_BITS) & ((1 << L2_BITS) - 1); 83 int pto = address & ((1 << OFF_BITS) - 1); 85 if (address == 0) 97 execution_error (SIM_ERR_READ_UNWRITTEN_PAGES, address); 105 execution_error (SIM_ERR_READ_UNWRITTEN_BYTES, address); 111 execution_error (SIM_ERR_CORRUPT_STACK, address); 135 rx_mem_decode_cache (unsigned long address) 137 return (RX_Opcode_Decoded **) rx_mem_ptr (address, MPA_DECODE_CACHE) [all...] |
| /src/external/gpl3/gcc/dist/libgcc/config/aarch64/ |
| sync-cache.c | 37 const char *address; local 51 /* Loop over the address range, clearing one cache line at once. 56 /* Make the start address of the loop cache aligned. */ 57 address = (const char*) ((__UINTPTR_TYPE__) base 60 for (; address < (const char *) end; address += dcache_lsize) 63 : "r" (address) 73 /* Make the start address of the loop cache aligned. */ 74 address = (const char*) ((__UINTPTR_TYPE__) base 77 for (; address < (const char *) end; address += icache_lsize [all...] |
| /src/external/gpl3/gcc.old/dist/libgcc/config/aarch64/ |
| sync-cache.c | 37 const char *address; local 51 /* Loop over the address range, clearing one cache line at once. 56 /* Make the start address of the loop cache aligned. */ 57 address = (const char*) ((__UINTPTR_TYPE__) base 60 for (; address < (const char *) end; address += dcache_lsize) 63 : "r" (address) 73 /* Make the start address of the loop cache aligned. */ 74 address = (const char*) ((__UINTPTR_TYPE__) base 77 for (; address < (const char *) end; address += icache_lsize [all...] |
| /src/external/gpl3/gdb.old/dist/sim/frv/ |
| memory.c | 31 /* Check for alignment and access restrictions. Return the corrected address. 34 fr400_check_data_read_address (SIM_CPU *current_cpu, SI address, int align_mask) 39 if ((USI)address >= 0xfe800000 && (USI)address <= 0xfeffffff) 40 frv_queue_data_access_error_interrupt (current_cpu, address); 42 return address; 46 fr500_check_data_read_address (SIM_CPU *current_cpu, SI address, int align_mask) 48 if (address & align_mask) 50 frv_queue_mem_address_not_aligned_interrupt (current_cpu, address); 51 address &= ~align_mask [all...] |
| /src/external/gpl3/gdb/dist/sim/frv/ |
| memory.c | 31 /* Check for alignment and access restrictions. Return the corrected address. 34 fr400_check_data_read_address (SIM_CPU *current_cpu, SI address, int align_mask) 39 if ((USI)address >= 0xfe800000 && (USI)address <= 0xfeffffff) 40 frv_queue_data_access_error_interrupt (current_cpu, address); 42 return address; 46 fr500_check_data_read_address (SIM_CPU *current_cpu, SI address, int align_mask) 48 if (address & align_mask) 50 frv_queue_mem_address_not_aligned_interrupt (current_cpu, address); 51 address &= ~align_mask [all...] |
| /src/external/gpl3/gcc/dist/libsanitizer/tsan/ |
| tsan_interceptors_mach_vm.cpp | 22 static bool intersects_with_shadow(mach_vm_address_t address, 26 return !IsAppMem(address) || !IsAppMem(address + size - 1); 30 mach_vm_address_t *address, mach_vm_size_t size, int flags) { 31 SCOPED_TSAN_INTERCEPTOR(mach_vm_allocate, target, address, size, flags); 33 return REAL(mach_vm_allocate)(target, address, size, flags); 34 if (address && intersects_with_shadow(*address, size, flags)) 36 kern_return_t kr = REAL(mach_vm_allocate)(target, address, size, flags); 38 MemoryRangeImitateWriteOrResetRange(thr, pc, *address, size) [all...] |
| /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
| tsan_interceptors_mach_vm.cpp | 22 static bool intersects_with_shadow(mach_vm_address_t address, 26 return !IsAppMem(address) || !IsAppMem(address + size - 1); 30 mach_vm_address_t *address, mach_vm_size_t size, int flags) { 31 SCOPED_TSAN_INTERCEPTOR(mach_vm_allocate, target, address, size, flags); 33 return REAL(mach_vm_allocate)(target, address, size, flags); 34 if (address && intersects_with_shadow(*address, size, flags)) 36 kern_return_t kr = REAL(mach_vm_allocate)(target, address, size, flags); 38 MemoryRangeImitateWriteOrResetRange(thr, pc, *address, size) [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/projects/TP/ |
| team-address | 2 # Print the team's address (to stdout) and output additional instructions 13 address=`echo "$html" | tr '\012' '|' | sed -e "$sed_addnl" | sed -n -e "s,^.*<td>$catalog</td>[^<>]*<td>[^|]*</td>[^<>]*<td><a href=\"\\([^\"]*\\)\">[^<>]*</a></td>.*\$,\\1,p" | sed 1q` 14 if test -n "$address"; then 15 case "$address" in 16 mailto:*) address=`echo "$address" | sed -e 's,^mailto:,<,' -e 's,$,>,'` ;; 24 echo " $address" 26 echo "$address" 29 address=`echo "$html" | tr '\012' '|' | sed -e "$sed_addnl" | sed -n -e "s,^.*<td>$language</td>[^<>]*<td>[^|]*</td>[^<>]*<td><a href=\"\\([^\"]*\\)\">[^<>]*</a></td>.*\$,\\1,p" | sed 1q` 30 if test -n "$address"; the [all...] |
| /src/external/gpl3/gdb.old/dist/sim/arm/ |
| armvirt.c | 62 GetWord (ARMul_State * state, ARMword address, int check) 70 XScale_check_memacc (state, &address, 0); 72 page = address >> PAGEBITS; 73 offset = (address & OFFSETBITS) >> 2; 98 PutWord (ARMul_State * state, ARMword address, ARMword data, int check) 106 XScale_check_memacc (state, &address, 1); 108 page = address >> PAGEBITS; 109 offset = (address & OFFSETBITS) >> 2; 125 if (address == 0x8) 186 ARMul_ReLoadInstr (ARMul_State * state, ARMword address, ARMword isize [all...] |
| /src/external/bsd/ntp/dist/tests/libntp/ |
| refnumtoa.c | 28 /* We test with a refclock address of type LOCALCLOCK. 34 sockaddr_u address; local 40 AF(&address) = AF_INET; 41 NSRCADR(&address) = htonl(addr); 45 TEST_ASSERT_EQUAL_STRING(expected, refnumtoa(&address)); 60 sockaddr_u address; local 66 AF(&address) = AF_INET; 67 NSRCADR(&address) = htonl(addr); 72 TEST_ASSERT_EQUAL_STRING(expected, refnumtoa(&address));
|
| /src/external/gpl3/binutils/dist/config/ |
| bootstrap-asan.mk | 1 # This option enables -fsanitize=address for stage2 and stage3. 6 STAGE2_CFLAGS += -fsanitize=address 7 STAGE3_CFLAGS += -fsanitize=address 8 POSTSTAGE1_LDFLAGS += -fsanitize=address -static-libasan \
|
| /src/external/gpl3/binutils.old/dist/config/ |
| bootstrap-asan.mk | 1 # This option enables -fsanitize=address for stage2 and stage3. 6 STAGE2_CFLAGS += -fsanitize=address 7 STAGE3_CFLAGS += -fsanitize=address 8 POSTSTAGE1_LDFLAGS += -fsanitize=address -static-libasan \
|
| /src/external/gpl3/gcc/dist/config/ |
| bootstrap-asan.mk | 1 # This option enables -fsanitize=address for stage2 and stage3. 6 STAGE2_CFLAGS += -fsanitize=address 7 STAGE3_CFLAGS += -fsanitize=address 8 POSTSTAGE1_LDFLAGS += -fsanitize=address -static-libasan \
|
| /src/external/gpl3/gcc.old/dist/config/ |
| bootstrap-asan.mk | 1 # This option enables -fsanitize=address for stage2 and stage3. 6 STAGE2_CFLAGS += -fsanitize=address 7 STAGE3_CFLAGS += -fsanitize=address 8 POSTSTAGE1_LDFLAGS += -fsanitize=address -static-libasan \
|