/external/u-boot/drivers/i2c/ |
D | soft_i2c.c | 122 static int write_byte (uchar byte); 213 static int write_byte(uchar data) in write_byte() function 316 rc = write_byte ((addr << 1) | 0); in soft_i2c_probe() 358 if(write_byte(chip << 1)) { /* write cycle */ in soft_i2c_read() 365 if(write_byte(addr >> shift)) { in soft_i2c_read() 389 write_byte((chip << 1) | 1); /* read cycle */ in soft_i2c_read() 409 if(write_byte(chip << 1)) { /* write cycle */ in soft_i2c_write() 416 if(write_byte(addr >> shift)) { in soft_i2c_write() 424 if(write_byte(*buffer++)) { in soft_i2c_write()
|
/external/autotest/client/common_lib/ |
D | smogcheck_pca9555.py | 99 write_byte = byte_read | PCA_BIT_ONE[key] 101 write_byte = byte_read & ~PCA_BIT_ONE[key] 102 self.writeByte(PCA_REG['OUT0'], write_byte) 195 write_byte = reset_low6 ^ bit_mask 198 byte_read, reset_low6, bit_mask, write_byte) 199 self.writeByte(PCA_REG['OUT1'], write_byte)
|
/external/tensorflow/tensorflow/contrib/ignite/python/ops/ |
D | ignite_dataset_ops.py | 143 def write_byte(self, v): member in TcpClient 373 self.write_byte(1) # Handshake operation 377 self.write_byte(2) # Thin client 380 self.write_byte(101) 382 self.write_byte(9) 387 self.write_byte(101) 389 self.write_byte(9) 417 self.write_byte(0) # Flags 418 self.write_byte(101) # Filter (NULL) 421 self.write_byte(0) # Local flag
|
/external/cn-cbor/src/ |
D | cn-encoder.c | 48 #define write_byte(b) \ macro 53 write_byte(b); \ 92 write_byte(ib | val); in _write_positive() 95 write_byte(ib | 24); in _write_positive() 96 write_byte((uint8_t)val); in _write_positive()
|
/external/u-boot/drivers/rtc/ |
D | ds1302.c | 116 write_byte(unsigned char b) in write_byte() function 162 write_byte(addr); in read_ser_drv() 184 write_byte(addr); in write_ser_drv() 185 for(i=0;i<count;i++) write_byte(*(buf++)); in write_ser_drv()
|
/external/e2fsprogs/lib/ext2fs/ |
D | test_io.c | 55 void (*write_byte)(unsigned long block, int count, errcode_t err); member 214 data->write_byte = test_io_cb_write_byte; in test_open() 421 if (data->real && data->real->manager->write_byte) in test_write_byte() 423 if (data->write_byte) in test_write_byte() 424 data->write_byte(offset, count, retval); in test_write_byte() 541 .write_byte = test_write_byte,
|
D | io_manager.c | 65 if (channel->manager->write_byte) in io_channel_write_byte() 66 return channel->manager->write_byte(channel, offset, in io_channel_write_byte()
|
D | ext2_io.h | 84 errcode_t (*write_byte)(io_channel channel, unsigned long offset, member
|
D | sparse_io.c | 522 .write_byte = NULL, 541 .write_byte = NULL,
|
D | inode_io.c | 74 .write_byte = inode_write_byte,
|
D | closefs.c | 199 if (!fs->io->manager->write_byte || !fs->orig_super) { in write_primary_superblock()
|
D | undo_io.c | 928 if (data->real && data->real->manager->write_byte) in undo_write_byte() 1094 .write_byte = undo_write_byte,
|
D | unix_io.c | 1231 .write_byte = unix_write_byte, 1252 .write_byte = unix_write_byte,
|
/external/python/cpython3/Lib/test/ |
D | test_mmap.py | 159 m.write_byte(b'd') 244 self.assertRaises(TypeError, m.write_byte, 0) 586 m.write_byte(data[i]) 588 self.assertRaises(ValueError, m.write_byte, b"x"[0]) 614 m.write_byte(b) 734 self.assertRaises(ValueError, m.write_byte, 42)
|
/external/python/cpython2/Lib/test/ |
D | test_mmap.py | 155 m.write_byte('d') 248 self.assertRaises(TypeError, m.write_byte, 0) 560 m.write_byte(data[i]) 562 self.assertRaises(ValueError, m.write_byte, "x") 666 self.assertRaises(ValueError, m.write_byte, 'b')
|
/external/u-boot/include/ |
D | pci.h | 579 int (*write_byte)(struct pci_controller*, pci_dev_t, int where, u8); member 602 int (*write_byte)(struct pci_controller*, in pci_set_ops() 611 hose->write_byte = write_byte; in pci_set_ops()
|
/external/u-boot/drivers/mtd/nand/ |
D | lpc32xx_nand_slc.c | 544 lpc32xx_chip->write_byte = lpc32xx_write_byte; in board_nand_init()
|
D | nand_base.c | 3049 chip->write_byte(mtd, subfeature_param[i]); in nand_onfi_set_features() 3117 if (!chip->write_byte || chip->write_byte == nand_write_byte) in nand_set_defaults() 3118 chip->write_byte = busw ? nand_write_byte16 : nand_write_byte; in nand_set_defaults()
|
D | denali.c | 1247 chip->write_byte = denali_write_byte; in denali_init()
|
/external/u-boot/include/linux/mtd/ |
D | rawnand.h | 881 void (*write_byte)(struct mtd_info *mtd, uint8_t byte); member
|
/external/python/cpython2/Doc/library/ |
D | mmap.rst | 251 .. method:: write_byte(byte)
|
/external/python/cpython3/Doc/library/ |
D | mmap.rst | 285 .. method:: write_byte(byte)
|
/external/libpng/contrib/tools/ |
D | pngfix.c | 1341 write_byte(struct file *file, int b) in write_byte() function 3515 write_byte(file, (png_byte)b); /* increments chunk_write */ in read_callback()
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7a1.rst | 3705 mmap.write_byte didn't check map size, so it could cause buffer overrun.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 15572 - Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer
|