| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/i2c/ |
| nouveau_nvkm_subdev_i2c_pad.c | 29 #include "pad.h" 34 nvkm_i2c_pad_mode_locked(struct nvkm_i2c_pad *pad, enum nvkm_i2c_pad_mode mode) 36 PAD_TRACE(pad, "-> %s", (mode == NVKM_I2C_PAD_AUX) ? "aux" : 38 if (pad->func->mode) 39 pad->func->mode(pad, mode); 43 nvkm_i2c_pad_mode(struct nvkm_i2c_pad *pad, enum nvkm_i2c_pad_mode mode) 45 PAD_TRACE(pad, "mode %d", mode); 46 mutex_lock(&pad->mutex); 47 nvkm_i2c_pad_mode_locked(pad, mode) 93 struct nvkm_i2c_pad *pad = *ppad; local [all...] |
| nouveau_nvkm_subdev_i2c_auxgf119.c | 36 gf119_i2c_aux_new(struct nvkm_i2c_pad *pad, int index, u8 drive, 39 return g94_i2c_aux_new_(&gf119_i2c_aux, pad, index, drive, paux);
|
| nouveau_nvkm_subdev_i2c_anx9805.c | 43 struct anx9805_pad *pad; member in struct:anx9805_bus 51 struct anx9805_pad *pad = bus->pad; local 52 struct i2c_adapter *adap = &pad->bus->i2c; 58 tmp = nvkm_rdi2cr(adap, pad->addr, 0x07) & ~0x10; 59 nvkm_wri2cr(adap, pad->addr, 0x07, tmp | 0x10); 60 nvkm_wri2cr(adap, pad->addr, 0x07, tmp); 111 struct anx9805_pad *pad = anx9805_pad(base); local 118 bus->pad = pad; 136 struct anx9805_pad *pad; member in struct:anx9805_aux 145 struct anx9805_pad *pad = aux->pad; local 201 struct anx9805_pad *pad = aux->pad; local 240 struct anx9805_pad *pad = anx9805_pad(base); local 273 struct anx9805_pad *pad; local [all...] |
| nouveau_nvkm_subdev_i2c_base.c | 32 #include "pad.h" 43 struct nvkm_i2c_pad *pad; local 45 list_for_each_entry(pad, &i2c->pad, head) { 46 if (pad->id == id) 47 return pad; 167 struct nvkm_i2c_pad *pad; local 185 list_for_each_entry(pad, &i2c->pad, head) { 186 nvkm_i2c_pad_fini(pad); 197 struct nvkm_i2c_pad *pad; local 216 struct nvkm_i2c_pad *pad; local 254 struct nvkm_i2c_pad *pad = local 305 struct nvkm_i2c_pad *pad = NULL; local 373 struct nvkm_i2c_pad *pad; local [all...] |
| /src/sys/modules/pad/ |
| Makefile | 5 .PATH: ${S}/dev/pad 7 KMOD= pad 8 IOCONF= pad.ioconf 10 SRCS= pad.c
|
| /src/lib/libcurses/ |
| echo_wchar.c | 72 * Echo character and attributes on "pad" and refresh "pad" at 76 pecho_wchar(WINDOW *pad, const cchar_t *wch) 80 retval = wadd_wch(pad, wch); 82 retval = prefresh(pad, pad->pbegy, pad->pbegx, 83 pad->sbegy, pad->sbegx, pad->smaxy, pad->smaxx) [all...] |
| echochar.c | 70 * Echo character and attributes on "pad" and refresh "pad" at 74 pechochar(WINDOW *pad, const chtype ch) 78 retval = waddch(pad, ch); 80 retval = prefresh(pad, pad->pbegy, pad->pbegx, 81 pad->sbegy, pad->sbegx, pad->smaxy, pad->smaxx) [all...] |
| /src/sys/dev/dec/ |
| mcclock_pad32.h | 42 char pad[3]; member in struct:mcclock_pad32_clockdatum
|
| /src/external/bsd/wpa/dist/src/crypto/ |
| aes-omac1.c | 16 static void gf_mulx(u8 *pad) 20 carry = pad[0] & 0x80; 22 pad[i] = (pad[i] << 1) | (pad[i + 1] >> 7); 23 pad[AES_BLOCK_SIZE - 1] <<= 1; 25 pad[AES_BLOCK_SIZE - 1] ^= 0x87; 47 u8 cbc[AES_BLOCK_SIZE], pad[AES_BLOCK_SIZE]; local 89 os_memset(pad, 0, AES_BLOCK_SIZE); 90 aes_encrypt(ctx, pad, pad) [all...] |
| /src/sys/rump/dev/lib/libpad/ |
| Makefile | 4 .PATH: ${.CURDIR}/../../../../dev/pad 9 IOCONF= PAD.ioconf 11 SRCS= pad.c
|
| /src/lib/libmenu/ |
| attributes.c | 113 * Set the menu pad character - the filler char between name and description 116 set_menu_pad(MENU *menu, int pad) 119 _menui_default_menu.pad = pad; 121 menu->pad = pad; 126 * Return the menu pad character 132 return _menui_default_menu.pad; 134 return menu->pad;
|
| /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_auth/hmacsha256/ |
| auth_hmacsha256.c | 40 unsigned char pad[64]; local 52 memset(pad, 0x36, 64); 54 pad[i] ^= key[i]; 56 crypto_hash_sha256_update(&state->ictx, pad, 64); 59 memset(pad, 0x5c, 64); 61 pad[i] ^= key[i]; 63 crypto_hash_sha256_update(&state->octx, pad, 64); 65 sodium_memzero((void *) pad, sizeof pad);
|
| /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_auth/hmacsha512/ |
| auth_hmacsha512.c | 40 unsigned char pad[128]; local 52 memset(pad, 0x36, 128); 54 pad[i] ^= key[i]; 56 crypto_hash_sha512_update(&state->ictx, pad, 128); 59 memset(pad, 0x5c, 128); 61 pad[i] ^= key[i]; 63 crypto_hash_sha512_update(&state->octx, pad, 128); 65 sodium_memzero((void *) pad, sizeof pad);
|
| /src/sys/arch/xen/include/ |
| xenio_gntdev.h | 56 uint32_t pad; member in struct:ioctl_gntdev_map_grant_ref 78 uint32_t pad; member in struct:ioctl_gntdev_unmap_grant_ref 104 uint32_t pad; member in struct:ioctl_gntdev_get_offset_for_vaddr
|
| /src/external/mpl/dhcp/dist/omapip/ |
| iscprint.c | 80 int pad; local 110 length = pad = zeropad = 0; 296 pad = width - length - 298 if (pad < 0) 299 pad = 0; 302 count += strlen(head) + strlen(buf) + pad + 305 while (pad > 0 && size > 1) { 308 pad--; 326 while (pad > 0 && size > 1) { 329 pad-- [all...] |
| /src/external/gpl2/mkhybrid/dist/ |
| mac_label_proto.h | 30 unsigned int pad; member in struct:deferred_write
|
| /src/external/gpl3/binutils/dist/include/vms/ |
| dcx.h | 31 unsigned char pad[2]; member in struct:vms_dcxmap
|
| /src/external/gpl3/binutils.old/dist/include/vms/ |
| dcx.h | 31 unsigned char pad[2]; member in struct:vms_dcxmap
|
| /src/external/gpl3/gdb/dist/include/vms/ |
| dcx.h | 31 unsigned char pad[2]; member in struct:vms_dcxmap
|
| /src/external/gpl3/gdb.old/dist/include/vms/ |
| dcx.h | 31 unsigned char pad[2]; member in struct:vms_dcxmap
|
| /src/external/gpl3/gcc/dist/libgfortran/intrinsics/ |
| reshape_packed.c | 34 index_type ssize, const char * pad, index_type psize) 45 memcpy (ret, pad, size);
|
| /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/ |
| reshape_packed.c | 34 index_type ssize, const char * pad, index_type psize) 45 memcpy (ret, pad, size);
|
| /src/crypto/external/apache2/openssl/dist/crypto/bn/asm/ |
| via-mont.pl | 98 $pad=16*1; # amount of reserved bytes on top of every vector 110 # &DWP(64+(4*$num+$pad)*0,"esp") # padded tp[num] 111 # &DWP(64+(4*$num+$pad)*1,"esp") # padded copy of ap[num] 112 # &DWP(64+(4*$num+$pad)*2,"esp") # padded copy of bp[num] 113 # &DWP(64+(4*$num+$pad)*3,"esp") # padded copy of np[num] 141 &lea ("ecx",&DWP($pad,"","ecx",4)); # ecx becomes vector size in bytes 158 &lea ("ebp",&DWP(-$pad,"ecx")); 164 &lea ("ecx",&DWP((32+$pad)/4,"ecx"));# padded tp + scratch 168 &lea ("edi",&DWP(64+$pad,"esp","ecx",4));# pointer to ap copy 171 &mov ("ecx",$pad/4) [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/bn/asm/ |
| via-mont.pl | 98 $pad=16*1; # amount of reserved bytes on top of every vector 110 # &DWP(64+(4*$num+$pad)*0,"esp") # padded tp[num] 111 # &DWP(64+(4*$num+$pad)*1,"esp") # padded copy of ap[num] 112 # &DWP(64+(4*$num+$pad)*2,"esp") # padded copy of bp[num] 113 # &DWP(64+(4*$num+$pad)*3,"esp") # padded copy of np[num] 141 &lea ("ecx",&DWP($pad,"","ecx",4)); # ecx becomes vector size in bytes 158 &lea ("ebp",&DWP(-$pad,"ecx")); 164 &lea ("ecx",&DWP((32+$pad)/4,"ecx"));# padded tp + scratch 168 &lea ("edi",&DWP(64+$pad,"esp","ecx",4));# pointer to ap copy 171 &mov ("ecx",$pad/4) [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/bn/asm/ |
| via-mont.pl | 99 $pad=16*1; # amount of reserved bytes on top of every vector 111 # &DWP(64+(4*$num+$pad)*0,"esp") # padded tp[num] 112 # &DWP(64+(4*$num+$pad)*1,"esp") # padded copy of ap[num] 113 # &DWP(64+(4*$num+$pad)*2,"esp") # padded copy of bp[num] 114 # &DWP(64+(4*$num+$pad)*3,"esp") # padded copy of np[num] 142 &lea ("ecx",&DWP($pad,"","ecx",4)); # ecx becomes vector size in bytes 159 &lea ("ebp",&DWP(-$pad,"ecx")); 165 &lea ("ecx",&DWP((32+$pad)/4,"ecx"));# padded tp + scratch 169 &lea ("edi",&DWP(64+$pad,"esp","ecx",4));# pointer to ap copy 172 &mov ("ecx",$pad/4) [all...] |