HomeSort by: relevance | last modified time | path
    Searched defs:shift1 (Results 1 - 10 of 10) sorted by relevancy

  /src/common/lib/libc/arch/or1k/string/
memcpy.c 40 combine_words(unsigned long w1, unsigned long w2, int shift1, int shift2)
43 return (w1 << shift1) | (w2 >> shift2);
45 return (w1 >> shift1) | (w2 << shift2);
90 const int shift1 = offset * 8; local
91 const int shift2 = sizeof(*la) * 8 - shift1;
100 la[0] = combine_words(w1, w2, shift1, shift2);
104 la[1] = combine_words(w2, w1, shift1, shift2);
108 la[2] = combine_words(w1, w2, shift1, shift2);
112 la[3] = combine_words(w2, w1, shift1, shift2);
121 *la++ = combine_words(w1, w2, shift1, shift2)
    [all...]
memcpy.c 40 combine_words(unsigned long w1, unsigned long w2, int shift1, int shift2)
43 return (w1 << shift1) | (w2 >> shift2);
45 return (w1 >> shift1) | (w2 << shift2);
90 const int shift1 = offset * 8; local
91 const int shift2 = sizeof(*la) * 8 - shift1;
100 la[0] = combine_words(w1, w2, shift1, shift2);
104 la[1] = combine_words(w2, w1, shift1, shift2);
108 la[2] = combine_words(w1, w2, shift1, shift2);
112 la[3] = combine_words(w2, w1, shift1, shift2);
121 *la++ = combine_words(w1, w2, shift1, shift2)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/h8300/
h8300.cc 3627 /* The number of bits to be shifted by shift1 and shift2. Valid
3636 const char *shift1;
3707 info->shift1 = shift_one[cpu_type][shift_type][shift_mode].assembler;
3713 info->shift1 = rotate_one[cpu_type][shift_type][shift_mode];
3721 info->shift1 = shift_one[cpu_type][shift_type][shift_mode].assembler;
4148 output_asm_insn (info.shift1, operands);
4161 gcc_assert (info.shift1);
4172 output_asm_insn (info.shift1, operands);
4205 output_asm_insn (info.shift1, operands);
4212 output_asm_insn (info.shift1, operands)
3623 const char *shift1; member in struct:shift_info
    [all...]
h8300.cc 3627 /* The number of bits to be shifted by shift1 and shift2. Valid
3636 const char *shift1;
3707 info->shift1 = shift_one[cpu_type][shift_type][shift_mode].assembler;
3713 info->shift1 = rotate_one[cpu_type][shift_type][shift_mode];
3721 info->shift1 = shift_one[cpu_type][shift_type][shift_mode].assembler;
4148 output_asm_insn (info.shift1, operands);
4161 gcc_assert (info.shift1);
4172 output_asm_insn (info.shift1, operands);
4205 output_asm_insn (info.shift1, operands);
4212 output_asm_insn (info.shift1, operands)
3623 const char *shift1; member in struct:shift_info
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/ia64/
unwind-ia64.c 1512 unw_word shift1, shift2;
1521 shift1 = ((dst - src) >> 3) & 0x3f;
1523 shift1--;
1524 shift2 = 0x3f - shift1;
1546 dst_rnat |= (src_rnat << shift1) & ~(1ULL << 63);
1552 count = shift1 << 3;
1506 unw_word shift1, shift2; local
unwind-ia64.c 1512 unw_word shift1, shift2;
1521 shift1 = ((dst - src) >> 3) & 0x3f;
1523 shift1--;
1524 shift2 = 0x3f - shift1;
1546 dst_rnat |= (src_rnat << shift1) & ~(1ULL << 63);
1552 count = shift1 << 3;
1506 unw_word shift1, shift2; local
  /src/external/gpl3/binutils/dist/bfd/
elflink.c 6545 long int shift1, shift2;
6640 val = (s->hashval[h->dynindx] >> s->shift1)
6641 & ((s->maskbits >> s->shift1) - 1);
8107 cinfo.shift1 = 6;
8110 cinfo.shift1 = 5;
8111 cinfo.mask = (1 << cinfo.shift1) - 1;
8114 maskwords = 1 << (maskbitslog2 - cinfo.shift1);
6535 long int shift1, shift2; member in struct:collect_gnu_hash_codes
elflink.c 6545 long int shift1, shift2;
6640 val = (s->hashval[h->dynindx] >> s->shift1)
6641 & ((s->maskbits >> s->shift1) - 1);
8107 cinfo.shift1 = 6;
8110 cinfo.shift1 = 5;
8111 cinfo.mask = (1 << cinfo.shift1) - 1;
8114 maskwords = 1 << (maskbitslog2 - cinfo.shift1);
6535 long int shift1, shift2; member in struct:collect_gnu_hash_codes
  /src/external/gpl3/binutils.old/dist/bfd/
elflink.c 6507 long int shift1, shift2;
6597 val = (s->hashval[h->dynindx] >> s->shift1)
6598 & ((s->maskbits >> s->shift1) - 1);
8064 cinfo.shift1 = 6;
8067 cinfo.shift1 = 5;
8068 cinfo.mask = (1 << cinfo.shift1) - 1;
8071 maskwords = 1 << (maskbitslog2 - cinfo.shift1);
6497 long int shift1, shift2; member in struct:collect_gnu_hash_codes
elflink.c 6507 long int shift1, shift2;
6597 val = (s->hashval[h->dynindx] >> s->shift1)
6598 & ((s->maskbits >> s->shift1) - 1);
8064 cinfo.shift1 = 6;
8067 cinfo.shift1 = 5;
8068 cinfo.mask = (1 << cinfo.shift1) - 1;
8071 maskwords = 1 << (maskbitslog2 - cinfo.shift1);
6497 long int shift1, shift2; member in struct:collect_gnu_hash_codes

Completed in 116 milliseconds