Home
last modified time | relevance | path

Searched refs:write_byte (Results 1 – 25 of 25) sorted by relevance

/external/u-boot/drivers/i2c/
Dsoft_i2c.c122 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/
Dsmogcheck_pca9555.py99 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/
Dignite_dataset_ops.py143 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/
Dcn-encoder.c48 #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/
Dds1302.c116 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/
Dtest_io.c55 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,
Dio_manager.c65 if (channel->manager->write_byte) in io_channel_write_byte()
66 return channel->manager->write_byte(channel, offset, in io_channel_write_byte()
Dext2_io.h84 errcode_t (*write_byte)(io_channel channel, unsigned long offset, member
Dsparse_io.c522 .write_byte = NULL,
541 .write_byte = NULL,
Dinode_io.c74 .write_byte = inode_write_byte,
Dclosefs.c199 if (!fs->io->manager->write_byte || !fs->orig_super) { in write_primary_superblock()
Dundo_io.c928 if (data->real && data->real->manager->write_byte) in undo_write_byte()
1094 .write_byte = undo_write_byte,
Dunix_io.c1231 .write_byte = unix_write_byte,
1252 .write_byte = unix_write_byte,
/external/python/cpython3/Lib/test/
Dtest_mmap.py159 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/
Dtest_mmap.py155 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/
Dpci.h579 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/
Dlpc32xx_nand_slc.c544 lpc32xx_chip->write_byte = lpc32xx_write_byte; in board_nand_init()
Dnand_base.c3049 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()
Ddenali.c1247 chip->write_byte = denali_write_byte; in denali_init()
/external/u-boot/include/linux/mtd/
Drawnand.h881 void (*write_byte)(struct mtd_info *mtd, uint8_t byte); member
/external/python/cpython2/Doc/library/
Dmmap.rst251 .. method:: write_byte(byte)
/external/python/cpython3/Doc/library/
Dmmap.rst285 .. method:: write_byte(byte)
/external/libpng/contrib/tools/
Dpngfix.c1341 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/
D2.7a1.rst3705 mmap.write_byte didn't check map size, so it could cause buffer overrun.
/external/python/cpython3/Misc/
DHISTORY15572 - Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer