shift 2346 bignum.c long shift;
shift 2351 bignum.c shift = FIX2LONG(y);
shift 2352 bignum.c if (shift < 0) {
shift 2354 bignum.c shift = -shift;
shift 2364 bignum.c shift = big2ulong(y, "long", Qtrue);
shift 2370 bignum.c if (neg) return big_rshift(x, shift);
shift 2371 bignum.c return big_lshift(x, shift);
shift 2378 bignum.c long s1 = shift/BITSPERDIG;
shift 2379 bignum.c int s2 = shift%BITSPERDIG;
shift 2410 bignum.c long shift;
shift 2415 bignum.c shift = FIX2LONG(y);
shift 2416 bignum.c if (shift < 0) {
shift 2418 bignum.c shift = -shift;
shift 2430 bignum.c shift = big2ulong(y, "long", Qtrue);
shift 2436 bignum.c if (neg) return big_lshift(x, shift);
shift 2437 bignum.c return big_rshift(x, shift);
shift 2444 bignum.c long s1 = shift/BITSPERDIG;
shift 2445 bignum.c int s2 = shift%BITSPERDIG;
shift 2507 bignum.c VALUE shift;
shift 2517 bignum.c shift = big2ulong(y, "long", Qfalse);
shift 2522 bignum.c shift = (VALUE)i;
shift 2524 bignum.c s1 = shift/BITSPERDIG;
shift 2525 bignum.c s2 = shift%BITSPERDIG;
shift 1461 dir.c long shift;
shift 1465 dir.c shift = (lbrace-s);
shift 1478 dir.c memcpy(buf+shift, t, p-t);
shift 1479 dir.c strcpy(buf+shift+(p-t), rbrace+1);
shift 316 enc/utf_8.c #define UTF8_TRAILS(code, shift) (UChar )((((code) >> (shift)) & 0x3f) | 0x80)
shift 171 ext/json/ext/generator/generator.c VALUE shift, result;
shift 182 ext/json/ext/generator/generator.c shift = rb_str_times(state->indent, LONG2FIX(depth + 1));
shift 195 ext/json/ext/generator/generator.c rb_str_buf_append(result, shift);
shift 210 ext/json/ext/generator/generator.c shift = rb_str_times(state->indent, LONG2FIX(depth + 1));
shift 218 ext/json/ext/generator/generator.c rb_str_buf_append(result, shift);
shift 1024 ext/nkf/nkf-utf8/nkf.c int shift = 20;
shift 1026 ext/nkf/nkf-utf8/nkf.c while(shift >= 0){
shift 1027 ext/nkf/nkf-utf8/nkf.c if(c >= 1<<shift){
shift 1028 ext/nkf/nkf-utf8/nkf.c while(shift >= 0){
shift 1029 ext/nkf/nkf-utf8/nkf.c (*f)(0, bin2hex(c>>shift));
shift 1030 ext/nkf/nkf-utf8/nkf.c shift -= 4;
shift 1033 ext/nkf/nkf-utf8/nkf.c shift -= 4;
shift 201 ext/racc/cparse/cparse.c static void shift _((struct cparse_params* v, long act, VALUE tok, VALUE val));
shift 430 ext/racc/cparse/cparse.c #define SHIFT(v,act,tok,val) shift(v,act,tok,val)
shift 1346 marshal.c int shift = 0;
shift 1350 marshal.c num |= (int)p[i] << shift;
shift 1351 marshal.c shift += 8;