Symbol: scratch
crypto/libressl/crypto/modes/ccm128.c
179
union { u64 u[2]; u8 c[16]; } scratch;
crypto/libressl/crypto/modes/ccm128.c
211
(*block)(ctx->nonce.c,scratch.c,key);
crypto/libressl/crypto/modes/ccm128.c
214
temp.u[0] ^= scratch.u[0];
crypto/libressl/crypto/modes/ccm128.c
215
temp.u[1] ^= scratch.u[1];
crypto/libressl/crypto/modes/ccm128.c
218
((u64*)out)[0] = scratch.u[0]^((u64*)inp)[0];
crypto/libressl/crypto/modes/ccm128.c
219
((u64*)out)[1] = scratch.u[1]^((u64*)inp)[1];
crypto/libressl/crypto/modes/ccm128.c
229
(*block)(ctx->nonce.c,scratch.c,key);
crypto/libressl/crypto/modes/ccm128.c
230
for (i=0; i<len; ++i) out[i] = scratch.c[i]^inp[i];
crypto/libressl/crypto/modes/ccm128.c
236
(*block)(ctx->nonce.c,scratch.c,key);
crypto/libressl/crypto/modes/ccm128.c
237
ctx->cmac.u[0] ^= scratch.u[0];
crypto/libressl/crypto/modes/ccm128.c
238
ctx->cmac.u[1] ^= scratch.u[1];
crypto/libressl/crypto/modes/ccm128.c
254
union { u64 u[2]; u8 c[16]; } scratch;
crypto/libressl/crypto/modes/ccm128.c
274
(*block)(ctx->nonce.c,scratch.c,key);
crypto/libressl/crypto/modes/ccm128.c
278
ctx->cmac.u[0] ^= (scratch.u[0] ^= temp.u[0]);
crypto/libressl/crypto/modes/ccm128.c
279
ctx->cmac.u[1] ^= (scratch.u[1] ^= temp.u[1]);
crypto/libressl/crypto/modes/ccm128.c
280
memcpy (out,scratch.c,16);
crypto/libressl/crypto/modes/ccm128.c
282
ctx->cmac.u[0] ^= (((u64*)out)[0] = scratch.u[0]^((u64*)inp)[0]);
crypto/libressl/crypto/modes/ccm128.c
283
ctx->cmac.u[1] ^= (((u64*)out)[1] = scratch.u[1]^((u64*)inp)[1]);
crypto/libressl/crypto/modes/ccm128.c
293
(*block)(ctx->nonce.c,scratch.c,key);
crypto/libressl/crypto/modes/ccm128.c
295
ctx->cmac.c[i] ^= (out[i] = scratch.c[i]^inp[i]);
crypto/libressl/crypto/modes/ccm128.c
302
(*block)(ctx->nonce.c,scratch.c,key);
crypto/libressl/crypto/modes/ccm128.c
303
ctx->cmac.u[0] ^= scratch.u[0];
crypto/libressl/crypto/modes/ccm128.c
304
ctx->cmac.u[1] ^= scratch.u[1];
crypto/libressl/crypto/modes/ccm128.c
333
union { u64 u[2]; u8 c[16]; } scratch;
crypto/libressl/crypto/modes/ccm128.c
365
(*block)(ctx->nonce.c,scratch.c,key);
crypto/libressl/crypto/modes/ccm128.c
366
for (i=0; i<len; ++i) out[i] = scratch.c[i]^inp[i];
crypto/libressl/crypto/modes/ccm128.c
372
(*block)(ctx->nonce.c,scratch.c,key);
crypto/libressl/crypto/modes/ccm128.c
373
ctx->cmac.u[0] ^= scratch.u[0];
crypto/libressl/crypto/modes/ccm128.c
374
ctx->cmac.u[1] ^= scratch.u[1];
crypto/libressl/crypto/modes/ccm128.c
390
union { u64 u[2]; u8 c[16]; } scratch;
crypto/libressl/crypto/modes/ccm128.c
416
(*block)(ctx->nonce.c,scratch.c,key);
crypto/libressl/crypto/modes/ccm128.c
418
ctx->cmac.c[i] ^= (out[i] = scratch.c[i]^inp[i]);
crypto/libressl/crypto/modes/ccm128.c
425
(*block)(ctx->nonce.c,scratch.c,key);
crypto/libressl/crypto/modes/ccm128.c
426
ctx->cmac.u[0] ^= scratch.u[0];
crypto/libressl/crypto/modes/ccm128.c
427
ctx->cmac.u[1] ^= scratch.u[1];
crypto/libressl/crypto/modes/xts128.c
124
out[i] = scratch.c[i];
crypto/libressl/crypto/modes/xts128.c
125
scratch.c[i] = c;
crypto/libressl/crypto/modes/xts128.c
127
scratch.u[0] ^= tweak.u[0];
crypto/libressl/crypto/modes/xts128.c
128
scratch.u[1] ^= tweak.u[1];
crypto/libressl/crypto/modes/xts128.c
129
(*ctx->block1)(scratch.c,scratch.c,ctx->key1);
crypto/libressl/crypto/modes/xts128.c
130
scratch.u[0] ^= tweak.u[0];
crypto/libressl/crypto/modes/xts128.c
131
scratch.u[1] ^= tweak.u[1];
crypto/libressl/crypto/modes/xts128.c
132
memcpy(out-16,scratch.c,16);
crypto/libressl/crypto/modes/xts128.c
156
memcpy(scratch.c,inp,16);
crypto/libressl/crypto/modes/xts128.c
157
scratch.u[0] ^= tweak1.u[0];
crypto/libressl/crypto/modes/xts128.c
158
scratch.u[1] ^= tweak1.u[1];
crypto/libressl/crypto/modes/xts128.c
160
scratch.u[0] = ((u64*)inp)[0]^tweak1.u[0];
crypto/libressl/crypto/modes/xts128.c
161
scratch.u[1] = ((u64*)inp)[1]^tweak1.u[1];
crypto/libressl/crypto/modes/xts128.c
163
(*ctx->block1)(scratch.c,scratch.c,ctx->key1);
crypto/libressl/crypto/modes/xts128.c
164
scratch.u[0] ^= tweak1.u[0];
crypto/libressl/crypto/modes/xts128.c
165
scratch.u[1] ^= tweak1.u[1];
crypto/libressl/crypto/modes/xts128.c
169
out[16+i] = scratch.c[i];
crypto/libressl/crypto/modes/xts128.c
170
scratch.c[i] = c;
crypto/libressl/crypto/modes/xts128.c
172
scratch.u[0] ^= tweak.u[0];
crypto/libressl/crypto/modes/xts128.c
173
scratch.u[1] ^= tweak.u[1];
crypto/libressl/crypto/modes/xts128.c
174
(*ctx->block1)(scratch.c,scratch.c,ctx->key1);
crypto/libressl/crypto/modes/xts128.c
176
scratch.u[0] ^= tweak.u[0];
crypto/libressl/crypto/modes/xts128.c
177
scratch.u[1] ^= tweak.u[1];
crypto/libressl/crypto/modes/xts128.c
178
memcpy (out,scratch.c,16);
crypto/libressl/crypto/modes/xts128.c
180
((u64*)out)[0] = scratch.u[0]^tweak.u[0];
crypto/libressl/crypto/modes/xts128.c
181
((u64*)out)[1] = scratch.u[1]^tweak.u[1];
crypto/libressl/crypto/modes/xts128.c
67
union { u64 u[2]; u32 d[4]; u8 c[16]; } tweak, scratch;
crypto/libressl/crypto/modes/xts128.c
80
memcpy(scratch.c,inp,16);
crypto/libressl/crypto/modes/xts128.c
81
scratch.u[0] ^= tweak.u[0];
crypto/libressl/crypto/modes/xts128.c
82
scratch.u[1] ^= tweak.u[1];
crypto/libressl/crypto/modes/xts128.c
84
scratch.u[0] = ((u64*)inp)[0]^tweak.u[0];
crypto/libressl/crypto/modes/xts128.c
85
scratch.u[1] = ((u64*)inp)[1]^tweak.u[1];
crypto/libressl/crypto/modes/xts128.c
87
(*ctx->block1)(scratch.c,scratch.c,ctx->key1);
crypto/libressl/crypto/modes/xts128.c
89
scratch.u[0] ^= tweak.u[0];
crypto/libressl/crypto/modes/xts128.c
90
scratch.u[1] ^= tweak.u[1];
crypto/libressl/crypto/modes/xts128.c
91
memcpy(out,scratch.c,16);
crypto/libressl/crypto/modes/xts128.c
93
((u64*)out)[0] = scratch.u[0]^=tweak.u[0];
crypto/libressl/crypto/modes/xts128.c
94
((u64*)out)[1] = scratch.u[1]^=tweak.u[1];
sbin/fsdb/fsdb.c
229
while ((elline = el_gets(elptr, &scratch)) != NULL && scratch != 0) {
sys/bus/u4b/template/usb_template.c
1247
uts = udev->scratch.temp_setup;
sys/bus/u4b/template/usb_template.c
915
ues = udev->scratch.hw_ep_scratch;
sys/bus/u4b/usb_device.c
1779
scratch_ptr = udev->scratch.data;
sys/bus/u4b/usb_device.c
2479
temp_ptr = (char *)udev->scratch.data;
sys/bus/u4b/usb_device.c
2480
temp_size = sizeof(udev->scratch.data);
sys/bus/u4b/usb_device.h
279
union usb_device_scratch scratch;
sys/bus/u4b/usb_generic.c
724
ptr = f->udev->scratch.data;
sys/bus/u4b/usb_generic.c
725
size = sizeof(f->udev->scratch.data);
sys/bus/u4b/usb_transfer.c
1082
xfer = &udev->scratch.xfer_setup[0].dummy;
sys/bus/u4b/usb_transfer.c
947
parm = &udev->scratch.xfer_setup[0].parm;
sys/bus/u4b/usb_util.c
101
sizeof(udev->scratch.data),
sys/bus/u4b/usb_util.c
107
sizeof(udev->scratch.data));
sys/bus/u4b/usb_util.c
96
temp_p = (char *)udev->scratch.data;
sys/dev/disk/ncr/ncr.c
1127
u_char scratch;
sys/dev/disk/ncr/ncr.c
1711
NADDR (scratch),
sys/dev/disk/ncr/ncr.c
1715
NADDR (scratch),
sys/dev/disk/ncr/ncr.c
1736
NADDR (scratch),
sys/dev/disk/ncr/ncr.c
1740
NADDR (scratch),
sys/dev/disk/ncr/ncr.c
1823
NADDR (scratch),
sys/dev/disk/ncr/ncr.c
1842
NADDR (scratch),
sys/dev/disk/sym/sym_fw1.h
1101
PADDR_B (scratch),
sys/dev/disk/sym/sym_fw1.h
1502
HADDR_1 (scratch),
sys/dev/disk/sym/sym_fw1.h
1607
HADDR_1 (scratch),
sys/dev/disk/sym/sym_fw1.h
1635
HADDR_1 (scratch),
sys/dev/disk/sym/sym_fw1.h
209
u32 scratch [ 1];
sys/dev/disk/sym/sym_fw1.h
425
HADDR_1 (scratch),
sys/dev/disk/sym/sym_fw1.h
431
HADDR_1 (scratch),
sys/dev/disk/sym/sym_fw1.h
619
HADDR_1 (scratch),
sys/dev/disk/sym/sym_fw2.h
1359
HADDR_1 (scratch),
sys/dev/disk/sym/sym_fw2.h
1462
HADDR_1 (scratch),
sys/dev/disk/sym/sym_fw2.h
1490
HADDR_1 (scratch),
sys/dev/disk/sym/sym_fw2.h
1813
PADDR_B (scratch),
sys/dev/disk/sym/sym_fw2.h
1815
PADDR_B (scratch),
sys/dev/disk/sym/sym_fw2.h
199
u32 scratch [ 1];
sys/dev/disk/sym/sym_fw2.h
394
HADDR_1 (scratch),
sys/dev/disk/sym/sym_fw2.h
400
HADDR_1 (scratch),
sys/dev/disk/sym/sym_fw2.h
596
HADDR_1 (scratch),
sys/dev/disk/sym/sym_hipd.c
1654
u_char scratch; /* Scratch for SCSI receive */
sys/dev/drm/amd/amdgpu/amdgpu_atombios.c
1818
ctx->scratch = kzalloc(usage_bytes, GFP_KERNEL);
sys/dev/drm/amd/amdgpu/amdgpu_atombios.c
1819
if (!ctx->scratch)
sys/dev/drm/amd/amdgpu/amdgpu_atombios.c
1986
kfree(adev->mode_info.atom_context->scratch);
sys/dev/drm/amd/amdgpu/amdgpu_atomfirmware.c
106
ctx->scratch = kzalloc(usage_bytes, GFP_KERNEL);
sys/dev/drm/amd/amdgpu/amdgpu_atomfirmware.c
107
if (!ctx->scratch)
sys/dev/drm/amd/amdgpu/amdgpu_gfx.c
100
adev->gfx.scratch.free_mask |= 1u << (reg - adev->gfx.scratch.reg_base);
sys/dev/drm/amd/amdgpu/amdgpu_gfx.c
80
i = ffs(adev->gfx.scratch.free_mask);
sys/dev/drm/amd/amdgpu/amdgpu_gfx.c
81
if (i != 0 && i <= adev->gfx.scratch.num_reg) {
sys/dev/drm/amd/amdgpu/amdgpu_gfx.c
83
adev->gfx.scratch.free_mask &= ~(1u << i);
sys/dev/drm/amd/amdgpu/amdgpu_gfx.c
84
*reg = adev->gfx.scratch.reg_base + i;
sys/dev/drm/amd/amdgpu/amdgpu_gfx.h
251
struct amdgpu_scratch scratch;
sys/dev/drm/amd/amdgpu/atom.c
278
val = gctx->scratch[(gctx->fb_base / 4) + idx];
sys/dev/drm/amd/amdgpu/atom.c
533
gctx->scratch[(gctx->fb_base / 4) + idx] = val;
sys/dev/drm/amd/amdgpu/atom.h
141
uint32_t *scratch;
sys/dev/drm/amd/amdgpu/atombios_dp.c
74
base = (unsigned char *)(adev->mode_info.atom_context->scratch + 1);
sys/dev/drm/amd/amdgpu/atombios_i2c.c
54
base = (unsigned char *)adev->mode_info.atom_context->scratch;
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2042
adev->gfx.scratch.num_reg = 8;
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2043
adev->gfx.scratch.reg_base = mmSCRATCH_REG0;
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2044
adev->gfx.scratch.free_mask = (1u << adev->gfx.scratch.num_reg) - 1;
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2061
uint32_t scratch;
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2066
r = amdgpu_gfx_scratch_get(adev, &scratch);
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2071
WREG32(scratch, 0xCAFEDEAD);
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2075
amdgpu_gfx_scratch_free(adev, scratch);
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2079
amdgpu_ring_write(ring, (scratch - PACKET3_SET_UCONFIG_REG_START));
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2084
tmp = RREG32(scratch);
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2093
ring->idx, scratch, tmp);
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2096
amdgpu_gfx_scratch_free(adev, scratch);
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2314
uint32_t scratch;
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2318
r = amdgpu_gfx_scratch_get(adev, &scratch);
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2323
WREG32(scratch, 0xCAFEDEAD);
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2331
ib.ptr[1] = ((scratch - PACKET3_SET_UCONFIG_REG_START));
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2348
tmp = RREG32(scratch);
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2354
scratch, tmp);
sys/dev/drm/amd/amdgpu/gfx_v7_0.c
2362
amdgpu_gfx_scratch_free(adev, scratch);
sys/dev/drm/amd/amdgpu/gfx_v8_0.c
828
adev->gfx.scratch.num_reg = 8;
sys/dev/drm/amd/amdgpu/gfx_v8_0.c
829
adev->gfx.scratch.reg_base = mmSCRATCH_REG0;
sys/dev/drm/amd/amdgpu/gfx_v8_0.c
830
adev->gfx.scratch.free_mask = (1u << adev->gfx.scratch.num_reg) - 1;
sys/dev/drm/amd/amdgpu/gfx_v8_0.c
836
uint32_t scratch;
sys/dev/drm/amd/amdgpu/gfx_v8_0.c
841
r = amdgpu_gfx_scratch_get(adev, &scratch);
sys/dev/drm/amd/amdgpu/gfx_v8_0.c
846
WREG32(scratch, 0xCAFEDEAD);
sys/dev/drm/amd/amdgpu/gfx_v8_0.c
851
amdgpu_gfx_scratch_free(adev, scratch);
sys/dev/drm/amd/amdgpu/gfx_v8_0.c
855
amdgpu_ring_write(ring, (scratch - PACKET3_SET_UCONFIG_REG_START));
sys/dev/drm/amd/amdgpu/gfx_v8_0.c
860
tmp = RREG32(scratch);
sys/dev/drm/amd/amdgpu/gfx_v8_0.c
870
ring->idx, scratch, tmp);
sys/dev/drm/amd/amdgpu/gfx_v8_0.c
873
amdgpu_gfx_scratch_free(adev, scratch);
sys/dev/drm/amd/amdgpu/gfx_v9_0.c
351
adev->gfx.scratch.num_reg = 8;
sys/dev/drm/amd/amdgpu/gfx_v9_0.c
352
adev->gfx.scratch.reg_base = SOC15_REG_OFFSET(GC, 0, mmSCRATCH_REG0);
sys/dev/drm/amd/amdgpu/gfx_v9_0.c
353
adev->gfx.scratch.free_mask = (1u << adev->gfx.scratch.num_reg) - 1;
sys/dev/drm/amd/amdgpu/gfx_v9_0.c
393
uint32_t scratch;
sys/dev/drm/amd/amdgpu/gfx_v9_0.c
398
r = amdgpu_gfx_scratch_get(adev, &scratch);
sys/dev/drm/amd/amdgpu/gfx_v9_0.c
403
WREG32(scratch, 0xCAFEDEAD);
sys/dev/drm/amd/amdgpu/gfx_v9_0.c
408
amdgpu_gfx_scratch_free(adev, scratch);
sys/dev/drm/amd/amdgpu/gfx_v9_0.c
412
amdgpu_ring_write(ring, (scratch - PACKET3_SET_UCONFIG_REG_START));
sys/dev/drm/amd/amdgpu/gfx_v9_0.c
417
tmp = RREG32(scratch);
sys/dev/drm/amd/amdgpu/gfx_v9_0.c
427
ring->idx, scratch, tmp);
sys/dev/drm/amd/amdgpu/gfx_v9_0.c
430
amdgpu_gfx_scratch_free(adev, scratch);
sys/dev/drm/i915/i915_drv.h
2157
struct i915_vma *scratch;
sys/dev/drm/i915/i915_drv.h
3883
return i915_ggtt_offset(i915->gt.scratch);
sys/dev/drm/i915/i915_gem.c
5936
i915->gt.scratch = vma;
sys/dev/drm/i915/i915_gem.c
5946
i915_vma_unpin_and_release(&i915->gt.scratch, 0);
sys/dev/drm/i915/i915_gem_object.h
276
unsigned long scratch;
sys/dev/drm/i915/i915_gpu_error.c
1505
i915->gt.scratch);
sys/dev/drm/i915/intel_ringbuffer.c
989
GEM_BUG_ON(rq->i915->gt.scratch->size < I830_WA_SIZE);
sys/dev/drm/include/uapi/drm/radeon_drm.h
277
} scratch;
sys/dev/drm/radeon/atom.c
1424
ctx->scratch = kzalloc(usage_bytes, GFP_KERNEL);
sys/dev/drm/radeon/atom.c
1425
if (!ctx->scratch)
sys/dev/drm/radeon/atom.c
289
val = gctx->scratch[(gctx->fb_base / 4) + idx];
sys/dev/drm/radeon/atom.c
547
gctx->scratch[(gctx->fb_base / 4) + idx] = val;
sys/dev/drm/radeon/atom.h
141
uint32_t *scratch;
sys/dev/drm/radeon/atombios_dp.c
103
base = (unsigned char *)(rdev->mode_info.atom_context->scratch + 1);
sys/dev/drm/radeon/atombios_i2c.c
53
base = (unsigned char *)rdev->mode_info.atom_context->scratch;
sys/dev/drm/radeon/cik.c
3452
rdev->scratch.num_reg = 7;
sys/dev/drm/radeon/cik.c
3453
rdev->scratch.reg_base = SCRATCH_REG0;
sys/dev/drm/radeon/cik.c
3454
for (i = 0; i < rdev->scratch.num_reg; i++) {
sys/dev/drm/radeon/cik.c
3455
rdev->scratch.free[i] = true;
sys/dev/drm/radeon/cik.c
3456
rdev->scratch.reg[i] = rdev->scratch.reg_base + (i * 4);
sys/dev/drm/radeon/cik.c
3473
uint32_t scratch;
sys/dev/drm/radeon/cik.c
3478
r = radeon_scratch_get(rdev, &scratch);
sys/dev/drm/radeon/cik.c
3483
WREG32(scratch, 0xCAFEDEAD);
sys/dev/drm/radeon/cik.c
3487
radeon_scratch_free(rdev, scratch);
sys/dev/drm/radeon/cik.c
3491
radeon_ring_write(ring, ((scratch - PACKET3_SET_UCONFIG_REG_START) >> 2));
sys/dev/drm/radeon/cik.c
3496
tmp = RREG32(scratch);
sys/dev/drm/radeon/cik.c
3505
ring->idx, scratch, tmp);
sys/dev/drm/radeon/cik.c
3508
radeon_scratch_free(rdev, scratch);
sys/dev/drm/radeon/cik.c
3798
uint32_t scratch;
sys/dev/drm/radeon/cik.c
3803
r = radeon_scratch_get(rdev, &scratch);
sys/dev/drm/radeon/cik.c
3808
WREG32(scratch, 0xCAFEDEAD);
sys/dev/drm/radeon/cik.c
3812
radeon_scratch_free(rdev, scratch);
sys/dev/drm/radeon/cik.c
3816
ib.ptr[1] = ((scratch - PACKET3_SET_UCONFIG_REG_START) >> 2);
sys/dev/drm/radeon/cik.c
3821
radeon_scratch_free(rdev, scratch);
sys/dev/drm/radeon/cik.c
3830
radeon_scratch_free(rdev, scratch);
sys/dev/drm/radeon/cik.c
3835
radeon_scratch_free(rdev, scratch);
sys/dev/drm/radeon/cik.c
3841
tmp = RREG32(scratch);
sys/dev/drm/radeon/cik.c
3850
scratch, tmp);
sys/dev/drm/radeon/cik.c
3853
radeon_scratch_free(rdev, scratch);
sys/dev/drm/radeon/r100.c
3663
uint32_t scratch;
sys/dev/drm/radeon/r100.c
3668
r = radeon_scratch_get(rdev, &scratch);
sys/dev/drm/radeon/r100.c
3673
WREG32(scratch, 0xCAFEDEAD);
sys/dev/drm/radeon/r100.c
3677
radeon_scratch_free(rdev, scratch);
sys/dev/drm/radeon/r100.c
3680
radeon_ring_write(ring, PACKET0(scratch, 0));
sys/dev/drm/radeon/r100.c
3684
tmp = RREG32(scratch);
sys/dev/drm/radeon/r100.c
3694
scratch, tmp);
sys/dev/drm/radeon/r100.c
3697
radeon_scratch_free(rdev, scratch);
sys/dev/drm/radeon/r100.c
3719
uint32_t scratch;
sys/dev/drm/radeon/r100.c
3724
r = radeon_scratch_get(rdev, &scratch);
sys/dev/drm/radeon/r100.c
3729
WREG32(scratch, 0xCAFEDEAD);
sys/dev/drm/radeon/r100.c
3735
ib.ptr[0] = PACKET0(scratch, 0);
sys/dev/drm/radeon/r100.c
3761
tmp = RREG32(scratch);
sys/dev/drm/radeon/r100.c
3771
scratch, tmp);
sys/dev/drm/radeon/r100.c
3777
radeon_scratch_free(rdev, scratch);
sys/dev/drm/radeon/r600.c
2824
rdev->scratch.num_reg = 7;
sys/dev/drm/radeon/r600.c
2825
rdev->scratch.reg_base = SCRATCH_REG0;
sys/dev/drm/radeon/r600.c
2826
for (i = 0; i < rdev->scratch.num_reg; i++) {
sys/dev/drm/radeon/r600.c
2827
rdev->scratch.free[i] = true;
sys/dev/drm/radeon/r600.c
2828
rdev->scratch.reg[i] = rdev->scratch.reg_base + (i * 4);
sys/dev/drm/radeon/r600.c
2834
uint32_t scratch;
sys/dev/drm/radeon/r600.c
2839
r = radeon_scratch_get(rdev, &scratch);
sys/dev/drm/radeon/r600.c
2844
WREG32(scratch, 0xCAFEDEAD);
sys/dev/drm/radeon/r600.c
2848
radeon_scratch_free(rdev, scratch);
sys/dev/drm/radeon/r600.c
2852
radeon_ring_write(ring, ((scratch - PACKET3_SET_CONFIG_REG_OFFSET) >> 2));
sys/dev/drm/radeon/r600.c
2856
tmp = RREG32(scratch);
sys/dev/drm/radeon/r600.c
2865
ring->idx, scratch, tmp);
sys/dev/drm/radeon/r600.c
2868
radeon_scratch_free(rdev, scratch);
sys/dev/drm/radeon/r600.c
3413
uint32_t scratch;
sys/dev/drm/radeon/r600.c
3418
r = radeon_scratch_get(rdev, &scratch);
sys/dev/drm/radeon/r600.c
3423
WREG32(scratch, 0xCAFEDEAD);
sys/dev/drm/radeon/r600.c
3430
ib.ptr[1] = ((scratch - PACKET3_SET_CONFIG_REG_OFFSET) >> 2);
sys/dev/drm/radeon/r600.c
3450
tmp = RREG32(scratch);
sys/dev/drm/radeon/r600.c
3459
scratch, tmp);
sys/dev/drm/radeon/r600.c
3465
radeon_scratch_free(rdev, scratch);
sys/dev/drm/radeon/radeon.h
2380
struct radeon_scratch scratch;
sys/dev/drm/radeon/radeon_device.c
1012
kfree(rdev->mode_info.atom_context->scratch);
sys/dev/drm/radeon/radeon_device.c
265
rdev->scratch.num_reg = 5;
sys/dev/drm/radeon/radeon_device.c
267
rdev->scratch.num_reg = 7;
sys/dev/drm/radeon/radeon_device.c
269
rdev->scratch.reg_base = RADEON_SCRATCH_REG0;
sys/dev/drm/radeon/radeon_device.c
270
for (i = 0; i < rdev->scratch.num_reg; i++) {
sys/dev/drm/radeon/radeon_device.c
271
rdev->scratch.free[i] = true;
sys/dev/drm/radeon/radeon_device.c
272
rdev->scratch.reg[i] = rdev->scratch.reg_base + (i * 4);
sys/dev/drm/radeon/radeon_device.c
289
for (i = 0; i < rdev->scratch.num_reg; i++) {
sys/dev/drm/radeon/radeon_device.c
290
if (rdev->scratch.free[i]) {
sys/dev/drm/radeon/radeon_device.c
291
rdev->scratch.free[i] = false;
sys/dev/drm/radeon/radeon_device.c
292
*reg = rdev->scratch.reg[i];
sys/dev/drm/radeon/radeon_device.c
311
for (i = 0; i < rdev->scratch.num_reg; i++) {
sys/dev/drm/radeon/radeon_device.c
312
if (rdev->scratch.reg[i] == reg) {
sys/dev/drm/radeon/radeon_device.c
313
rdev->scratch.free[i] = true;
sys/dev/drm/radeon/radeon_fence.c
855
rdev->scratch.reg_base;
sys/dev/drm/radeon/si.c
3352
rdev->scratch.num_reg = 7;
sys/dev/drm/radeon/si.c
3353
rdev->scratch.reg_base = SCRATCH_REG0;
sys/dev/drm/radeon/si.c
3354
for (i = 0; i < rdev->scratch.num_reg; i++) {
sys/dev/drm/radeon/si.c
3355
rdev->scratch.free[i] = true;
sys/dev/drm/radeon/si.c
3356
rdev->scratch.reg[i] = rdev->scratch.reg_base + (i * 4);
sys/dev/netif/iwm/if_iwm.c
1172
+ offsetof(struct iwm_tx_cmd, scratch);
sys/dev/netif/iwm/if_iwmreg.h
4991
} scratch; /* DRAM_SCRATCH_API_U_VER_1 */
sys/dev/netif/iwn/if_iwn.c
4555
tx->scratch = 0; /* clear "scratch" area */
sys/dev/netif/iwn/if_iwn.c
4796
tx->scratch = 0; /* clear "scratch" area */
sys/dev/netif/iwn/if_iwnreg.h
765
uint32_t scratch;
sys/dev/video/cxm/cxm.c
1226
unsigned int scratch;
sys/dev/video/cxm/cxm.c
1255
scratch = (current + (CXM_SG_BUFFERS - 1)) % CXM_SG_BUFFERS;
sys/dev/video/cxm/cxm.c
1258
current = scratch;
sys/dev/video/cxm/cxm.c
1270
ptr = (uint32_t *)sc->enc_pool.bufs[scratch].vaddr
sys/dev/video/cxm/cxm.c
1291
sc->enc_pool.bufs[scratch].size
sys/dev/video/cxm/cxm.c
1294
current = scratch;
sys/vfs/hammer2/hammer2.h
1774
void hammer2_xop_ipcluster(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1775
void hammer2_xop_readdir(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1776
void hammer2_xop_nresolve(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1777
void hammer2_xop_unlink(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1778
void hammer2_xop_nrename(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1779
void hammer2_xop_scanlhc(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1780
void hammer2_xop_scanall(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1781
void hammer2_xop_lookup(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1782
void hammer2_xop_delete(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1783
void hammer2_xop_inode_mkdirent(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1784
void hammer2_xop_inode_create(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1786
void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1788
void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1789
void hammer2_xop_inode_destroy(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1790
void hammer2_xop_inode_chain_sync(hammer2_xop_t *xop, void *scratch,
sys/vfs/hammer2/hammer2.h
1792
void hammer2_xop_inode_unlinkall(hammer2_xop_t *xop, void *scratch,
sys/vfs/hammer2/hammer2.h
1794
void hammer2_xop_inode_connect(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1795
void hammer2_xop_inode_flush(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1796
void hammer2_xop_strategy_read(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1797
void hammer2_xop_strategy_write(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1798
void hammer2_xop_bmap(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1800
void hammer2_dmsg_ipcluster(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1801
void hammer2_dmsg_readdir(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1802
void hammer2_dmsg_nresolve(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1803
void hammer2_dmsg_unlink(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1804
void hammer2_dmsg_nrename(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1805
void hammer2_dmsg_scanlhc(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1806
void hammer2_dmsg_scanall(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1807
void hammer2_dmsg_lookup(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1808
void hammer2_dmsg_inode_mkdirent(hammer2_xop_t *xop, void *scratch,
sys/vfs/hammer2/hammer2.h
1810
void hammer2_dmsg_inode_create(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1811
void hammer2_dmsg_inode_destroy(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1812
void hammer2_dmsg_inode_chain_sync(hammer2_xop_t *xop, void *scratch,
sys/vfs/hammer2/hammer2.h
1814
void hammer2_dmsg_inode_unlinkall(hammer2_xop_t *xop, void *scratch,
sys/vfs/hammer2/hammer2.h
1816
void hammer2_dmsg_inode_connect(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1817
void hammer2_dmsg_inode_flush(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1818
void hammer2_dmsg_strategy_read(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1819
void hammer2_dmsg_strategy_write(hammer2_xop_t *xop, void *scratch,
sys/vfs/hammer2/hammer2.h
1822
void hammer2_rmsg_ipcluster(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1823
void hammer2_rmsg_readdir(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1824
void hammer2_rmsg_nresolve(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1825
void hammer2_rmsg_unlink(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1826
void hammer2_rmsg_nrename(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1827
void hammer2_rmsg_scanlhc(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1828
void hammer2_rmsg_scanall(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1829
void hammer2_rmsg_lookup(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1830
void hammer2_rmsg_inode_mkdirent(hammer2_xop_t *xop, void *scratch,
sys/vfs/hammer2/hammer2.h
1832
void hammer2_rmsg_inode_create(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1833
void hammer2_rmsg_inode_destroy(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1834
void hammer2_rmsg_inode_chain_sync(hammer2_xop_t *xop, void *scratch,
sys/vfs/hammer2/hammer2.h
1836
void hammer2_rmsg_inode_unlinkall(hammer2_xop_t *xop, void *scratch,
sys/vfs/hammer2/hammer2.h
1838
void hammer2_rmsg_inode_connect(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1839
void hammer2_rmsg_inode_flush(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1840
void hammer2_rmsg_strategy_read(hammer2_xop_t *xop, void *scratch, int clindex);
sys/vfs/hammer2/hammer2.h
1841
void hammer2_rmsg_strategy_write(hammer2_xop_t *xop, void *scratch,
sys/vfs/hammer2/hammer2.h
823
char *scratch; /* MAXPHYS */
sys/vfs/hammer2/hammer2.h
867
typedef void (*hammer2_xop_func_t)(union hammer2_xop *xop, void *scratch,
sys/vfs/hammer2/hammer2_admin.c
1221
thr->scratch,
sys/vfs/hammer2/hammer2_admin.c
233
if (thr->scratch == NULL)
sys/vfs/hammer2/hammer2_admin.c
234
thr->scratch = kmalloc(MAXPHYS, M_HAMMER2, M_WAITOK | M_ZERO);
sys/vfs/hammer2/hammer2_admin.c
261
if (thr->scratch) {
sys/vfs/hammer2/hammer2_admin.c
262
kfree(thr->scratch, M_HAMMER2);
sys/vfs/hammer2/hammer2_admin.c
263
thr->scratch = NULL;
sys/vfs/hammer2/hammer2_flush.c
1292
hammer2_xop_inode_flush(hammer2_xop_t *arg, void *scratch __unused, int clindex)
sys/vfs/hammer2/hammer2_strategy.c
308
hammer2_xop_strategy_read(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_strategy.c
577
hammer2_xop_strategy_write(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_strategy.c
606
bio_data = scratch;
sys/vfs/hammer2/hammer2_xops.c
1037
hammer2_xop_inode_mkdirent(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_xops.c
1120
hammer2_xop_inode_create(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_xops.c
1183
hammer2_xop_inode_create_det(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_xops.c
1259
hammer2_xop_inode_create_ins(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_xops.c
1345
hammer2_xop_inode_destroy(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_xops.c
1401
hammer2_xop_inode_unlinkall(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_xops.c
1447
hammer2_xop_inode_connect(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_xops.c
1537
hammer2_xop_inode_chain_sync(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_xops.c
159
hammer2_xop_ipcluster(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_xops.c
1641
hammer2_xop_bmap(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_xops.c
184
hammer2_xop_readdir(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_xops.c
249
hammer2_xop_nresolve(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_xops.c
334
hammer2_xop_unlink(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_xops.c
513
hammer2_xop_nrename(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_xops.c
820
hammer2_xop_scanlhc(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_xops.c
875
hammer2_xop_lookup(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_xops.c
921
hammer2_xop_delete(hammer2_xop_t *arg, void *scratch, int clindex)
sys/vfs/hammer2/hammer2_xops.c
977
hammer2_xop_scanall(hammer2_xop_t *arg, void *scratch, int clindex)
usr.bin/units/units.c
303
char *scratch, *savescr;
usr.bin/units/units.c
311
savescr = scratch = dupstr(toadd);
usr.bin/units/units.c
312
for (slash = scratch + 1; *slash; slash++)
usr.bin/units/units.c
317
slash = strchr(scratch, '/');
usr.bin/units/units.c
322
item = strtok(scratch, " *\t\n/");
usr.bin/units/units.c
398
scratch = slash + 1;
usr.sbin/makefs/hammer2/hammer2.h
1835
void hammer2_xop_ipcluster(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1836
void hammer2_xop_readdir(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1837
void hammer2_xop_nresolve(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1838
void hammer2_xop_unlink(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1839
void hammer2_xop_nrename(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1840
void hammer2_xop_scanlhc(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1841
void hammer2_xop_scanall(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1842
void hammer2_xop_lookup(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1843
void hammer2_xop_delete(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1844
void hammer2_xop_inode_mkdirent(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1845
void hammer2_xop_inode_create(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1847
void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1849
void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1850
void hammer2_xop_inode_destroy(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1851
void hammer2_xop_inode_chain_sync(hammer2_xop_t *xop, void *scratch,
usr.sbin/makefs/hammer2/hammer2.h
1853
void hammer2_xop_inode_unlinkall(hammer2_xop_t *xop, void *scratch,
usr.sbin/makefs/hammer2/hammer2.h
1855
void hammer2_xop_inode_connect(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1856
void hammer2_xop_inode_flush(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1857
void hammer2_xop_strategy_read(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1858
void hammer2_xop_strategy_write(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1859
void hammer2_xop_bmap(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1861
void hammer2_dmsg_ipcluster(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1862
void hammer2_dmsg_readdir(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1863
void hammer2_dmsg_nresolve(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1864
void hammer2_dmsg_unlink(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1865
void hammer2_dmsg_nrename(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1866
void hammer2_dmsg_scanlhc(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1867
void hammer2_dmsg_scanall(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1868
void hammer2_dmsg_lookup(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1869
void hammer2_dmsg_inode_mkdirent(hammer2_xop_t *xop, void *scratch,
usr.sbin/makefs/hammer2/hammer2.h
1871
void hammer2_dmsg_inode_create(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1872
void hammer2_dmsg_inode_destroy(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1873
void hammer2_dmsg_inode_chain_sync(hammer2_xop_t *xop, void *scratch,
usr.sbin/makefs/hammer2/hammer2.h
1875
void hammer2_dmsg_inode_unlinkall(hammer2_xop_t *xop, void *scratch,
usr.sbin/makefs/hammer2/hammer2.h
1877
void hammer2_dmsg_inode_connect(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1878
void hammer2_dmsg_inode_flush(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1879
void hammer2_dmsg_strategy_read(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1880
void hammer2_dmsg_strategy_write(hammer2_xop_t *xop, void *scratch,
usr.sbin/makefs/hammer2/hammer2.h
1883
void hammer2_rmsg_ipcluster(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1884
void hammer2_rmsg_readdir(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1885
void hammer2_rmsg_nresolve(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1886
void hammer2_rmsg_unlink(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1887
void hammer2_rmsg_nrename(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1888
void hammer2_rmsg_scanlhc(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1889
void hammer2_rmsg_scanall(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1890
void hammer2_rmsg_lookup(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1891
void hammer2_rmsg_inode_mkdirent(hammer2_xop_t *xop, void *scratch,
usr.sbin/makefs/hammer2/hammer2.h
1893
void hammer2_rmsg_inode_create(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1894
void hammer2_rmsg_inode_destroy(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1895
void hammer2_rmsg_inode_chain_sync(hammer2_xop_t *xop, void *scratch,
usr.sbin/makefs/hammer2/hammer2.h
1897
void hammer2_rmsg_inode_unlinkall(hammer2_xop_t *xop, void *scratch,
usr.sbin/makefs/hammer2/hammer2.h
1899
void hammer2_rmsg_inode_connect(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1900
void hammer2_rmsg_inode_flush(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1901
void hammer2_rmsg_strategy_read(hammer2_xop_t *xop, void *scratch, int clindex);
usr.sbin/makefs/hammer2/hammer2.h
1902
void hammer2_rmsg_strategy_write(hammer2_xop_t *xop, void *scratch,
usr.sbin/makefs/hammer2/hammer2.h
864
char *scratch; /* MAXPHYS */
usr.sbin/makefs/hammer2/hammer2.h
908
typedef void (*hammer2_xop_func_t)(union hammer2_xop *xop, void *scratch,
usr.sbin/makefs/hammer2/hammer2_admin.c
1277
thr->scratch,
usr.sbin/makefs/hammer2/hammer2_admin.c
238
if (thr->scratch == NULL)
usr.sbin/makefs/hammer2/hammer2_admin.c
239
thr->scratch = kmalloc(MAXPHYS, M_HAMMER2, M_WAITOK | M_ZERO);
usr.sbin/makefs/hammer2/hammer2_admin.c
271
if (thr->scratch) {
usr.sbin/makefs/hammer2/hammer2_admin.c
272
kfree(thr->scratch, M_HAMMER2);
usr.sbin/makefs/hammer2/hammer2_admin.c
273
thr->scratch = NULL;
usr.sbin/makefs/hammer2/hammer2_flush.c
1296
hammer2_xop_inode_flush(hammer2_xop_t *arg, void *scratch __unused, int clindex)
usr.sbin/makefs/hammer2/hammer2_strategy.c
320
hammer2_xop_strategy_read(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_strategy.c
598
hammer2_xop_strategy_write(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_strategy.c
627
bio_data = scratch;
usr.sbin/makefs/hammer2/hammer2_xops.c
1040
hammer2_xop_inode_mkdirent(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_xops.c
1123
hammer2_xop_inode_create(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_xops.c
1186
hammer2_xop_inode_create_det(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_xops.c
1262
hammer2_xop_inode_create_ins(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_xops.c
1348
hammer2_xop_inode_destroy(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_xops.c
1404
hammer2_xop_inode_unlinkall(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_xops.c
1450
hammer2_xop_inode_connect(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_xops.c
1540
hammer2_xop_inode_chain_sync(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_xops.c
162
hammer2_xop_ipcluster(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_xops.c
1644
hammer2_xop_bmap(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_xops.c
187
hammer2_xop_readdir(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_xops.c
252
hammer2_xop_nresolve(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_xops.c
337
hammer2_xop_unlink(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_xops.c
516
hammer2_xop_nrename(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_xops.c
823
hammer2_xop_scanlhc(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_xops.c
878
hammer2_xop_lookup(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_xops.c
924
hammer2_xop_delete(hammer2_xop_t *arg, void *scratch, int clindex)
usr.sbin/makefs/hammer2/hammer2_xops.c
980
hammer2_xop_scanall(hammer2_xop_t *arg, void *scratch, int clindex)