HomeSort by relevance Sort by last modified time
    Searched defs:din (Results 1 - 25 of 39) sorted by null

1 2

  /external/aac/libFDK/src/mips/
fft_rad2_mips.cpp 123 int32c *din = (int32c *)x; local
156 mips_fft32(dout, din, twiddles, scratch, ldn);
  /external/u-boot/test/dm/
spi.c 103 unsigned char din[5]; local
108 ut_assertok(spi_xfer(slave, 40, dout, din,
110 ut_asserteq(0xff, din[0]);
111 ut_asserteq(0x20, din[1]);
112 ut_asserteq(0x20, din[2]);
113 ut_asserteq(0x15, din[3]);
  /external/u-boot/board/CZ.NIC/turris_mox/
turris_mox.c 60 u8 din[10], dout[10]; local
74 memset(din, 0, 10);
77 ret = spi_xfer(slave, 80, dout, din, SPI_XFER_ONCE);
81 if (din[0] != 0x00 && din[0] != 0xff)
85 for (i = 1; i < 10 && din[i] != 0xff; ++i) {
86 u8 mid = din[i] & 0xf;
  /external/u-boot/cmd/
spi.c 40 static uchar din[MAX_SPI_BYTES]; variable
70 ret = spi_xfer(slave, bitlen, dout, din,
83 printf("%02X", din[j]);
  /external/ltp/testcases/misc/math/float/
thread_code.c 154 static void compute_normal(TH_DATA * th_data, double *din, double *dex,
159 d = din[index];
168 static void compute_atan2_hypot(TH_DATA * th_data, double *din, double *dex,
173 d = din[index];
181 static void compute_modf(TH_DATA * th_data, double *din, double *dex,
189 d = din[index];
210 static void compute_fmod_pow(TH_DATA * th_data, double *din, double *dex,
215 d = din[index];
224 static void compute_frexp_lgamma(TH_DATA * th_data, double *din, double *dex,
233 d = din[index]
281 double *din, *dex, *dex2 = NULL; local
    [all...]
  /external/u-boot/arch/arm/include/asm/arch-mvebu/
spi.h 18 u32 din; /* 0x1060c */ member in struct:kwspi_registers
  /external/u-boot/board/work-microwave/work_92105/
work_92105_display.c 94 /* do SPI read/write (passing din==dout is OK) */
111 uint8_t dout[2], din[2]; local
117 /* do SPI read/write (passing din==dout is OK) */
121 /* read register -- din = noop on xmit, din[1] = reg on recv */
122 din[0] = 0;
123 din[1] = 0;
125 /* do SPI read/write (passing din==dout is OK) */
126 spi_xfer(slave, 16, din, din, SPI_XFER_BEGIN | SPI_XFER_END)
    [all...]
  /external/u-boot/drivers/spi/
mvebu_a3700_spi.c 33 u32 din; /* 0x1060c */ member in struct:spi_reg
55 * @din: Buffer address of where to receive.
59 * @din, if necessary.
80 const void *dout, void *din)
92 /* din_8: pointer of current din */
93 din_8 = din;
110 if (din) {
118 *din_8 = (u8)readl(&reg->din);
124 if (din)
134 const void *dout, void *din, unsigned long flags
    [all...]
fsl_espi.c 212 static int fsl_espi_rx(struct fsl_spi_slave *fsl, void *din, unsigned int bytes)
235 if (din)
236 memcpy(din, buf, bytes);
251 void *din = NULL; local
306 din = buffer + rx_offset;
338 if (fsl_espi_rx(fsl, din, rx_bytes)
341 if (din)
342 din = (unsigned char *)din
tegra20_sflash.c 211 u8 *din = data_in; local
215 debug("%s: slave %u:%u dout %p din %p bitlen %u\n",
216 __func__, bus->seq, spi_chip_select(dev), dout, din, bitlen);
280 if (din != NULL) {
282 din[i] = tmpdin & 0xff;
285 din += bytes;
atcspi200_spi.c 88 u8 *din; member in struct:nds_spi_slave
144 if ((ns->din)&&(ns->cmd_len))
146 else if (ns->din)
155 if(ns->din)
182 static int __nspi_espi_rx(struct nds_spi_slave *ns, void *din, unsigned int bytes)
184 *(u8 *)din = ns->regs->data;
195 void *din = NULL; local
217 ns->din = (u8 *)data_in;
223 ns->din = 0;
237 din = data_in
    [all...]
tegra114_spi.c 225 u8 *din = data_in; local
229 debug("%s: slave %u:%u dout %p din %p bitlen %u\n",
230 __func__, bus->seq, spi_chip_select(dev), dout, din, bitlen);
314 if (din != NULL) {
316 din[i] = tmpdin & 0xff;
319 din += bytes;
tegra20_slink.c 205 u8 *din = data_in; local
209 debug("%s: slave %u:%u dout %p din %p bitlen %u\n",
210 __func__, bus->seq, spi_chip_select(dev), dout, din, bitlen);
279 if (din != NULL) {
281 din[i] = tmpdin & 0xff;
284 din += bytes;
tegra210_qspi.c 211 u8 *din = data_in; local
214 debug("%s: slave %u:%u dout %p din %p bitlen %u\n",
215 __func__, bus->seq, spi_chip_select(dev), dout, din, bitlen);
252 * i.e., both dout and din are not NULL.
280 if (din != NULL)
339 if (din != NULL) {
340 memcpy(din, &tmpdin, bytes);
341 din += bytes;
  /external/apache-commons-compress/src/test/java/org/apache/commons/compress/utils/
ByteUtilsTest.java 121 DataInput din = new DataInputStream(new ByteArrayInputStream(new byte[] { 2, 3, 4, 5 })); local
122 assertEquals(2 + 3 * 256 + 4 * 256 * 256, fromLittleEndian(din, 3));
127 DataInput din = new DataInputStream(new ByteArrayInputStream(new byte[] { 2, 3, 4, (byte) 128 })); local
128 assertEquals(2 + 3 * 256 + 4 * 256 * 256 + 128l * 256 * 256 * 256, fromLittleEndian(din, 4));
133 DataInput din = new DataInputStream(new ByteArrayInputStream(new byte[0])); local
134 fromLittleEndian(din, 9);
139 DataInput din = new DataInputStream(new ByteArrayInputStream(new byte[] { 2, 3 })); local
140 fromLittleEndian(din, 3);
FixedLengthBlockOutputStreamTest.java 217 DataInputStream din = new DataInputStream(Files.newInputStream(tempFile)); local
219 assertEquals("file int",i,din.readInt());
222 assertEquals(0,din.read());
224 assertEquals(-1,din.read());
  /external/mesa3d/src/amd/common/
ac_surface.c 930 ADDR2_COMPUTE_DCCINFO_INPUT din = {0}; local
934 din.size = sizeof(ADDR2_COMPUTE_DCCINFO_INPUT);
938 din.dccKeyFlags.pipeAligned = 1;
939 din.dccKeyFlags.rbAligned = 1;
940 din.colorFlags = in->flags;
941 din.resourceType = in->resourceType;
942 din.swizzleMode = in->swizzleMode;
943 din.bpp = in->bpp;
944 din.unalignedWidth = in->width;
945 din.unalignedHeight = in->height
    [all...]
  /external/u-boot/drivers/net/
e1000_spi.c 13 * destination of the input bits is the "din" parameter. Note that "dout"
14 * and "din" can point to the same memory location, in which case the
25 uint8_t *din = din_mem; local
56 if (din) {
58 din[i >> 3] |= mask;
60 din[i >> 3] &= ~mask;
68 if (din && (i & 7))
69 din[i >> 3] &= ~((mask << 1) - 1);
  /external/u-boot/drivers/rtc/
ds1306.c 431 unsigned char din[2]; /* SPI Input Data Bytes */ local
436 spi_xfer (slave, 16, dout, din, SPI_XFER_BEGIN | SPI_XFER_END);
  /external/u-boot/include/
spi.h 238 * destination of the input bits is the "din" parameter. Note that "dout"
239 * and "din" can point to the same memory location, in which case the
248 * @din: Pointer to a string of bits that will be filled in.
254 void *din, unsigned long flags);
309 unsigned char din[2]; local
315 ret = spi_xfer(slave, 16, dout, din, SPI_XFER_BEGIN | SPI_XFER_END);
316 return ret < 0 ? ret : din[1];
387 * destination of the input bits is the "din" parameter. Note that
388 * "dout" and "din" can point to the same memory location, in which
397 * @din: Pointer to a string of bits that will be filled in
    [all...]
  /external/u-boot/arch/arm/mach-kirkwood/include/mach/
cpu.h 132 u32 din; member in struct:kwgpio_registers
  /external/emma/core/java12/com/vladium/emma/data/
DataFactory.java 767 DataInputStream din = new DataInputStream (rafin); local
770 case TYPE_METADATA: data = MetaData.readExternal (din);
773 default /* TYPE_COVERAGEDATA */: data = CoverageData.readExternal (din);
  /external/u-boot/arch/arm/mach-mvebu/include/mach/
cpu.h 113 u32 din; member in struct:kwgpio_registers
  /external/u-boot/drivers/misc/
cros_ec.c 131 if (in_bytes > (int)sizeof(dev->din)) {
155 struct ec_host_response *rs = (struct ec_host_response *)dev->din;
159 cros_ec_dump_data("in-header", -1, dev->din, sizeof(*rs));
177 cros_ec_dump_data("in-data", -1, dev->din + sizeof(*rs), rs->data_len);
183 csum = cros_ec_calc_checksum(dev->din, in_bytes);
269 uint8_t *din = NULL; local
273 &din, din_len);
302 NULL, 0, &din, din_len);
305 debug("%s: len=%d, din=%p\n", __func__, len, din);
    [all...]
  /external/guice/extensions/persist/lib/
javassist.jar 

Completed in 413 milliseconds

1 2