• Home
  • Raw
  • Download

Lines Matching refs:buffer

39 				  long buffer);
447 static int apply_6_bit_accumulation(struct module *me, void *location, long buffer) in apply_6_bit_accumulation() argument
450 u8 value = buffer; in apply_6_bit_accumulation()
452 if (buffer > 0x3f) { in apply_6_bit_accumulation()
454 me->name, buffer); in apply_6_bit_accumulation()
462 static int apply_8_bit_accumulation(struct module *me, void *location, long buffer) in apply_8_bit_accumulation() argument
464 if (buffer > U8_MAX) { in apply_8_bit_accumulation()
466 me->name, buffer); in apply_8_bit_accumulation()
469 *(u8 *)location = (u8)buffer; in apply_8_bit_accumulation()
473 static int apply_16_bit_accumulation(struct module *me, void *location, long buffer) in apply_16_bit_accumulation() argument
475 if (buffer > U16_MAX) { in apply_16_bit_accumulation()
477 me->name, buffer); in apply_16_bit_accumulation()
480 *(u16 *)location = (u16)buffer; in apply_16_bit_accumulation()
484 static int apply_32_bit_accumulation(struct module *me, void *location, long buffer) in apply_32_bit_accumulation() argument
486 if (buffer > U32_MAX) { in apply_32_bit_accumulation()
488 me->name, buffer); in apply_32_bit_accumulation()
491 *(u32 *)location = (u32)buffer; in apply_32_bit_accumulation()
495 static int apply_64_bit_accumulation(struct module *me, void *location, long buffer) in apply_64_bit_accumulation() argument
497 *(u64 *)location = (u64)buffer; in apply_64_bit_accumulation()
501 static int apply_uleb128_accumulation(struct module *me, void *location, long buffer) in apply_uleb128_accumulation() argument
509 while (buffer != 0) { in apply_uleb128_accumulation()
510 u8 value = buffer & 0x7f; in apply_uleb128_accumulation()
512 buffer >>= 7; in apply_uleb128_accumulation()
513 value |= (!!buffer) << 7; in apply_uleb128_accumulation()
627 long buffer; in process_accumulated_relocations() local
633 buffer = 0; in process_accumulated_relocations()
641 me, &buffer, rel_entry_iter->value); in process_accumulated_relocations()
645 me, location, buffer); in process_accumulated_relocations()