Searched defs:datum (Results 1 - 4 of 4) sorted by relevance

/external/opencore/codecs_v2/audio/aac/dec/src/
H A Dlong_term_prediction.cpp380 Int32 datum; local
547 datum = *(pTimeQuant++) >> SCALING;
557 test = (Int32)datum * weight;
/external/webkit/WebCore/platform/image-decoders/gif/
H A DGIFImageReader.cpp239 int datum = gs->datum; local
270 datum += ((int) *ch) << bits;
277 code = datum & codemask;
278 datum >>= codesize;
369 gs->datum = datum;
475 frame_reader->datum = frame_reader->bits = 0;
H A DGIFImageReader.h91 int bits; /* Number of unread bits in "datum" */
92 int datum; /* 32-bit input buffer */ member in struct:GIFFrameReader
128 bits = datum = 0;
/external/kernel-headers/original/linux/mtd/
H A Dmap.h385 static inline void inline_map_write(struct map_info *map, const map_word datum, unsigned long ofs) argument
388 __raw_writeb(datum.x[0], map->virt + ofs);
390 __raw_writew(datum.x[0], map->virt + ofs);
392 __raw_writel(datum.x[0], map->virt + ofs);
395 __raw_writeq(datum.x[0], map->virt + ofs);
398 memcpy_toio(map->virt+ofs, datum.x, map->bankwidth);
418 #define map_write(map, datum, ofs) (map)->write(map, datum, ofs)
427 #define map_write(map, datum, ofs) inline_map_write(map, datum, of
[all...]

Completed in 121 milliseconds