| /src/sys/arch/vax/vax/ |
| db_disasm.c | 115 static inline int get_byte(inst_buffer * ib); 116 static inline int get_word(inst_buffer * ib); 117 static inline int get_long(inst_buffer * ib); 119 static int get_opcode(inst_buffer * ib); 120 static int get_operands(inst_buffer * ib); 121 static int get_operand(inst_buffer * ib, int size); 123 static inline void add_char(inst_buffer * ib, char c); 124 static inline void add_str(inst_buffer * ib, const char *s); 125 static void add_int(inst_buffer * ib, int i); 126 static void add_xint(inst_buffer * ib, int i) 148 inst_buffer ib; local [all...] |
| opcodes.c | 449 get_byte(long ib) 451 return *((u_int8_t *)ib); 455 skip_opcode(long ib) 461 opc = get_byte(ib++); 465 opc += get_byte(ib++); 471 return ib; 479 ib++; 482 ib += 2; 485 ib += 4; 516 ib = skip_operand(ib, size) [all...] |
| /src/external/bsd/ntp/dist/kernel/sys/ |
| bsd_audioirig.h | 45 #define AUIB_INIT(ib) ((ib)->ib_head = (ib)->ib_tail = (ib)->ib_lock = \ 46 (ib)->phase = (ib)->shi = (ib)->slo = (ib)->high = \ 47 (ib)->level0 = (ib)->level1 = [all...] |
| /src/external/gpl3/gcc/dist/libgcc/soft-fp/ |
| floattidd.c | 37 UBILtype ib[128 / BIL_TYPE_SIZE]; local 39 ib[0] = i; 41 ib[BITINT_END (0, 1)] = i >> 64; 42 ib[BITINT_END (1, 0)] = i; 44 ib[BITINT_END (0, 3)] = i >> 96; 45 ib[BITINT_END (1, 2)] = i >> 64; 46 ib[BITINT_END (2, 1)] = i >> 32; 47 ib[BITINT_END (3, 0)] = i; 51 return __bid_floatbitintdd (ib, -128);
|
| floattisd.c | 37 UBILtype ib[128 / BIL_TYPE_SIZE]; local 39 ib[0] = i; 41 ib[BITINT_END (0, 1)] = i >> 64; 42 ib[BITINT_END (1, 0)] = i; 44 ib[BITINT_END (0, 3)] = i >> 96; 45 ib[BITINT_END (1, 2)] = i >> 64; 46 ib[BITINT_END (2, 1)] = i >> 32; 47 ib[BITINT_END (3, 0)] = i; 51 return __bid_floatbitintsd (ib, -128);
|
| floattitd.c | 37 UBILtype ib[128 / BIL_TYPE_SIZE]; local 39 ib[0] = i; 41 ib[BITINT_END (0, 1)] = i >> 64; 42 ib[BITINT_END (1, 0)] = i; 44 ib[BITINT_END (0, 3)] = i >> 96; 45 ib[BITINT_END (1, 2)] = i >> 64; 46 ib[BITINT_END (2, 1)] = i >> 32; 47 ib[BITINT_END (3, 0)] = i; 51 return __bid_floatbitinttd (ib, -128);
|
| floatuntidd.c | 37 UBILtype ib[128 / BIL_TYPE_SIZE]; local 39 ib[0] = i; 41 ib[BITINT_END (0, 1)] = i >> 64; 42 ib[BITINT_END (1, 0)] = i; 44 ib[BITINT_END (0, 3)] = i >> 96; 45 ib[BITINT_END (1, 2)] = i >> 64; 46 ib[BITINT_END (2, 1)] = i >> 32; 47 ib[BITINT_END (3, 0)] = i; 51 return __bid_floatbitintdd (ib, 128);
|
| floatuntisd.c | 37 UBILtype ib[128 / BIL_TYPE_SIZE]; local 39 ib[0] = i; 41 ib[BITINT_END (0, 1)] = i >> 64; 42 ib[BITINT_END (1, 0)] = i; 44 ib[BITINT_END (0, 3)] = i >> 96; 45 ib[BITINT_END (1, 2)] = i >> 64; 46 ib[BITINT_END (2, 1)] = i >> 32; 47 ib[BITINT_END (3, 0)] = i; 51 return __bid_floatbitintsd (ib, 128);
|
| floatuntitd.c | 37 UBILtype ib[128 / BIL_TYPE_SIZE]; local 39 ib[0] = i; 41 ib[BITINT_END (0, 1)] = i >> 64; 42 ib[BITINT_END (1, 0)] = i; 44 ib[BITINT_END (0, 3)] = i >> 96; 45 ib[BITINT_END (1, 2)] = i >> 64; 46 ib[BITINT_END (2, 1)] = i >> 32; 47 ib[BITINT_END (3, 0)] = i; 51 return __bid_floatbitinttd (ib, 128);
|
| /src/sys/external/bsd/drm2/dist/drm/radeon/ |
| radeon_si_dma.c | 67 * @ib: indirect buffer to fill with commands 75 struct radeon_ib *ib, 84 ib->ptr[ib->length_dw++] = DMA_PACKET(DMA_PACKET_COPY, 86 ib->ptr[ib->length_dw++] = lower_32_bits(pe); 87 ib->ptr[ib->length_dw++] = lower_32_bits(src); 88 ib->ptr[ib->length_dw++] = upper_32_bits(pe) & 0xff [all...] |
| radeon_ni_dma.c | 120 * cayman_dma_ring_ib_execute - Schedule an IB on the DMA engine 123 * @ib: IB object to schedule 125 * Schedule an IB in the DMA ring (cayman-SI). 128 struct radeon_ib *ib) 130 struct radeon_ring *ring = &rdev->ring[ib->ring]; 131 unsigned vm_id = ib->vm ? ib->vm->ids[ib->ring].id : 0; 150 radeon_ring_write(ring, (ib->gpu_addr & 0xFFFFFFE0)) [all...] |
| radeon_ib.c | 41 * IB 43 * commands are stored. You can put a pointer to the IB in the 44 * command ring and the hw will fetch the commands from the IB 52 * radeon_ib_get - request an IB (Indirect Buffer) 55 * @ring: ring index the IB is associated with 56 * @ib: IB object returned 57 * @size: requested IB size 59 * Request an IB (all asics). IBs are allocated using the 64 struct radeon_ib *ib, struct radeon_vm *vm [all...] |
| radeon_vce.c | 407 struct radeon_ib ib; local 411 r = radeon_ib_get(rdev, ring, &ib, NULL, ib_size_dw * 4); 413 DRM_ERROR("radeon: failed to get ib (%d).\n", r); 417 dummy = ib.gpu_addr + 1024; 420 ib.length_dw = 0; 421 ib.ptr[ib.length_dw++] = cpu_to_le32(0x0000000c); /* len */ 422 ib.ptr[ib.length_dw++] = cpu_to_le32(0x00000001); /* session cmd */ 423 ib.ptr[ib.length_dw++] = cpu_to_le32(handle) 474 struct radeon_ib ib; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| data-streamer-in.cc | 33 IB. Write the length to RLEN. */ 62 IB. Write the length to RLEN. */ 66 class lto_input_block *ib, unsigned int *rlen) 68 return string_for_index (data_in, streamer_read_uhwi (ib), rlen); 75 streamer_read_string (class data_in *data_in, class lto_input_block *ib) 80 ptr = streamer_read_indexed_string (data_in, ib, &len); 119 /* Read an unsigned HOST_WIDE_INT number from IB. */ 122 streamer_read_uhwi (class lto_input_block *ib) 127 unsigned int p = ib->p; 128 unsigned int len = ib->len [all...] |
| gimple-streamer-in.cc | 36 the file being read. IB is the input block to use for reading. */ 39 input_phi (class lto_input_block *ib, basic_block bb, class data_in *data_in, 47 ix = streamer_read_uhwi (ib); 57 tree def = stream_read_tree (ib, data_in); 58 int src_index = streamer_read_uhwi (ib); 59 bitpack_d bp = streamer_read_bitpack (ib); 74 data_in->location_cache.input_location_and_block (arg_locp, &bp, ib, 82 /* Read a statement with tag TAG in function FN from block IB using 86 input_gimple_stmt (class lto_input_block *ib, class data_in *data_in, 99 bp = streamer_read_bitpack (ib); 111 &bp, ib, data_in); local [all...] |
| tree-streamer-in.cc | 41 block IB. */ 44 streamer_read_string_cst (class data_in *data_in, class lto_input_block *ib) 49 ptr = streamer_read_indexed_string (data_in, ib, &len); 57 block IB. */ 60 input_identifier (class data_in *data_in, class lto_input_block *ib) 65 ptr = streamer_read_indexed_string (data_in, ib, &len); 72 /* Read a chain of tree nodes from input block IB. DATA_IN contains 76 streamer_read_chain (class lto_input_block *ib, class data_in *data_in) 84 curr = stream_read_tree_ref (ib, data_in); 480 /* Read all the language-independent bitfield values for EXPR from IB [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| data-streamer-in.cc | 35 IB. Write the length to RLEN. */ 64 IB. Write the length to RLEN. */ 68 class lto_input_block *ib, unsigned int *rlen) 70 return string_for_index (data_in, streamer_read_uhwi (ib), rlen); 77 streamer_read_string (class data_in *data_in, class lto_input_block *ib) 82 ptr = streamer_read_indexed_string (data_in, ib, &len); 121 /* Read an unsigned HOST_WIDE_INT number from IB. */ 124 streamer_read_uhwi (class lto_input_block *ib) 129 unsigned int p = ib->p; 130 unsigned int len = ib->len [all...] |
| gimple-streamer-in.cc | 36 the file being read. IB is the input block to use for reading. */ 39 input_phi (class lto_input_block *ib, basic_block bb, class data_in *data_in, 47 ix = streamer_read_uhwi (ib); 57 tree def = stream_read_tree (ib, data_in); 58 int src_index = streamer_read_uhwi (ib); 59 bitpack_d bp = streamer_read_bitpack (ib); 74 data_in->location_cache.input_location_and_block (arg_locp, &bp, ib, 82 /* Read a statement with tag TAG in function FN from block IB using 86 input_gimple_stmt (class lto_input_block *ib, class data_in *data_in, 99 bp = streamer_read_bitpack (ib); 111 &bp, ib, data_in); local [all...] |
| tree-streamer-in.cc | 41 block IB. */ 44 streamer_read_string_cst (class data_in *data_in, class lto_input_block *ib) 49 ptr = streamer_read_indexed_string (data_in, ib, &len); 57 block IB. */ 60 input_identifier (class data_in *data_in, class lto_input_block *ib) 65 ptr = streamer_read_indexed_string (data_in, ib, &len); 72 /* Read a chain of tree nodes from input block IB. DATA_IN contains 76 streamer_read_chain (class lto_input_block *ib, class data_in *data_in) 84 curr = stream_read_tree_ref (ib, data_in); 475 /* Read all the language-independent bitfield values for EXPR from IB [all...] |
| lto-streamer-in.cc | 132 lto_input_data_block (class lto_input_block *ib, void *addr, size_t length) 138 buffer[i] = streamer_read_uchar (ib); 509 or add it to the location cache. If IB is non-NULL, stream in a block 516 class lto_input_block *ib, 534 if (ib) 538 stream_block = stream_read_tree (ib, data_in); 581 if (ib) 585 stream_block = stream_read_tree (ib, data_in); 623 /* Read a location bitpack from input block IB and either update *LOC directly 634 /* Read a reference to a tree node from DATA_IN using input block IB [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/ |
| complex.f90 | 20 integer ia, ib variable in program:test_complex 35 ib = 12 42 ci = cmplx(ia, ib) 48 print *, ia, ib
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/ |
| complex.f90 | 20 integer ia, ib variable in program:test_complex 35 ib = 12 42 ci = cmplx(ia, ib) 48 print *, ia, ib
|
| /src/sys/dev/ic/ |
| igpio.c | 162 igpio_find_bank_setup(struct igpio_bank *ib, int barno) 167 if (strcmp(ib->ib_sc->sc_acpi_hid, ibs->ibs_acpi_hid) != 0) 182 struct igpio_bank *ib; local 185 ib = &sc->sc_banks[i]; 186 if (pin >= ib->ib_setup->ibs_first_pin && 187 pin <= ib->ib_setup->ibs_last_pin) 191 ib = NULL; 193 return ib; 197 igpio_bank_pin(struct igpio_bank *ib, int pin) 199 return pin - ib->ib_setup->ibs_first_pin 236 struct igpio_bank *ib = &sc->sc_banks[i]; local 379 struct igpio_bank *ib = &sc->sc_banks[i]; local 470 struct igpio_bank *ib = igpio_find_bank(sc, pin); local 497 struct igpio_bank *ib = igpio_find_bank(sc, pin); local 529 struct igpio_bank *ib = igpio_find_bank(sc, pin); local 605 struct igpio_bank *ib = igpio_find_bank(sc, pin); local 682 struct igpio_bank *ib; local 743 struct igpio_bank *ib = &sc->sc_banks[i]; local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
| amdgpu_sdma_v2_4.c | 249 * sdma_v2_4_ring_emit_ib - Schedule an IB on the DMA engine 252 * @ib: IB object to schedule 254 * Schedule an IB in the DMA ring (VI). 258 struct amdgpu_ib *ib, 263 /* IB packet must end on a 8 DW boundary */ 269 amdgpu_ring_write(ring, lower_32_bits(ib->gpu_addr) & 0xffffffe0); 270 amdgpu_ring_write(ring, upper_32_bits(ib->gpu_addr)); 271 amdgpu_ring_write(ring, ib->length_dw); 598 * sdma_v2_4_ring_test_ib - test an IB on the DMA engin 608 struct amdgpu_ib ib; local [all...] |
| amdgpu_vce.c | 451 struct amdgpu_ib *ib; local 460 ib = &job->ibs[0]; 465 ib->length_dw = 0; 466 ib->ptr[ib->length_dw++] = 0x0000000c; /* len */ 467 ib->ptr[ib->length_dw++] = 0x00000001; /* session cmd */ 468 ib->ptr[ib->length_dw++] = handle; 471 ib->ptr[ib->length_dw++] = 0x00000040; /* len * 530 struct amdgpu_ib *ib; local 725 struct amdgpu_ib *ib = &p->job->ibs[ib_idx]; local 961 struct amdgpu_ib *ib = &p->job->ibs[ib_idx]; local [all...] |