Beispiel #1
0
u32int krealloc_p(u32int *ptr, u32int old_sz, u32int new_sz, u32int *phys)
{
  u32int *out;
  out = (u32int*)kmalloc_int(new_sz, 0, phys);
  memcpy(out, ptr, old_sz);
  kfree(ptr);
  return (u32int)out;    
}
Beispiel #2
0
u32 kmalloc_ap(size_t size, u32 *phys)
{

    return kmalloc_int(size, 1, phys);
}
Beispiel #3
0
uint32_t kmalloc_ap(uint32_t size, uint32_t *phys)
{
    return kmalloc_int(size, 1, phys);
}
Beispiel #4
0
u32 kmalloc(u32 sz)
{
	return kmalloc_int(sz, 0, 0);
}
Beispiel #5
0
u32 kmalloc_p(u32 sz, u32 *phys)
{
	return kmalloc_int(sz, 0, phys);
}
Beispiel #6
0
uint32_t kmalloc(uint32_t sz)
{
    return kmalloc_int(sz, 0, 0);
}
Beispiel #7
0
uint32_t kmalloc_a(uint32_t sz)
{
    return kmalloc_int(sz, 1, 0);
}
Beispiel #8
0
u32int kmalloc_ap(u32int sz, u32int *phys)
{
    return kmalloc_int(sz, 1, phys);
}
Beispiel #9
0
void* kmalloc_p(uint32_t sz, uint32_t* phys) {
	return kmalloc_int(sz, 0, phys);
}
Beispiel #10
0
u32int kmalloc_a(size_t sz) {
	return kmalloc_int(sz,1,0);
}
Beispiel #11
0
u32int kmalloc(size_t sz) {
	return kmalloc_int(sz,0,0);
}
Beispiel #12
0
size_t kmalloc_ap(size_t sz, size_t *phys)
{
	return kmalloc_int(sz, 1, phys);
}
Beispiel #13
0
size_t kmalloc_p(size_t sz, size_t *phys)
{
	return kmalloc_int(sz, 0, phys);
}
Beispiel #14
0
u32 kmalloc(size_t size)
{
    return kmalloc_int(size, 0, 0);
}
Beispiel #15
0
u32int kmalloc_a(u32int sz)
{
    return kmalloc_int(sz, 1, 0);
}
Beispiel #16
0
u32int kmalloc_p(u32int sz, u32int *phys)
{
    return kmalloc_int(sz, 0, phys);
}
Beispiel #17
0
void* kmalloc_real(uint32_t sz) {
	return kmalloc_int(sz, 0, 0);
}
Beispiel #18
0
u32int kmalloc(u32int sz)
{
    return kmalloc_int(sz, 0, 0);
}
Beispiel #19
0
uint32_t kmalloc_p(uint32_t sz, uint32_t *phys) {
	return kmalloc_int(sz, false, phys);
}
Beispiel #20
0
uint32_t kmalloc_ap(uint32_t sz, uint32_t *phys)
{
    return kmalloc_int(sz, 1, phys);
}
Beispiel #21
0
uint32_t kmalloc(uint32_t sz) {
	return kmalloc_int(sz, false, 0);
}
Beispiel #22
0
u32 kmalloc_a(u32 sz)
{
	return kmalloc_int(sz, 1, 0);
}
Beispiel #23
0
unsigned int kmalloc_a(int size) { return kmalloc_int(size, 1, 0); }
Beispiel #24
0
u32 kmalloc_ap(u32 sz, u32 *phys)
{
	return kmalloc_int(sz, 1, phys);
}
Beispiel #25
0
unsigned int kmalloc_ap(int size, unsigned int *phys) { return kmalloc_int(size, 1, phys); }
Beispiel #26
0
uint32_t kmalloc_a(uint32_t size)
{
    return kmalloc_int(size, 1, 0);
}
Beispiel #27
0
unsigned int kmalloc(int size) { return kmalloc_int(size, 0, 0); }
Beispiel #28
0
uint32_t kmalloc(uint32_t size)
{
    return kmalloc_int(size, 0, 0);
}
Beispiel #29
0
u32 kmalloc_a(size_t size)
{
    return kmalloc_int(size, 1, 0);
}