Lines Matching defs:tmp
534 int tmp, err, c;
655 tmp = parse_long(optarg, &err);
660 if (tmp < 1000)
661 tmp *= 1000;
662 rhwparams.rate = tmp;
663 if (tmp < 2000 || tmp > 768000) {
664 error(_("bad speed value %i"), tmp);
1806 char tmp[4];
1823 sprintf(tmp, "MAX");
1825 sprintf(tmp, "%02d%%", maxperc[c]);
1827 memcpy(line + bar_length + 3 + 1, tmp, 3);
1829 memcpy(line + bar_length, tmp, 3);
2091 static uint8_t *tmp, *src, *dst;
2103 free(tmp);
2104 tmp = malloc(chunk_bytes);
2105 if (!tmp) {
2113 dst = tmp;
2122 return tmp;
2127 static uint8_t **tmp;
2133 if (!tmp) {
2134 tmp = malloc(sizeof(*tmp) * hwparams.channels);
2135 if (!tmp) {
2140 tmp[ch] = data[hw_map[ch]];
2142 return tmp;
2707 uint32_t tmp;
2735 tmp = cnt + sizeof(WaveHeader) + sizeof(WaveChunkHeader) + sizeof(WaveFmtBody) + sizeof(WaveChunkHeader) - 8;
2736 h.length = LE_INT(tmp);
2751 tmp = dsp_speed * hwparams.channels * (uint32_t) tmp2;
2755 tmp = (uint32_t) tmp2 * hwparams.rate;
2757 f.byte_p_sec = LE_INT(tmp);
3150 struct tm *tmp;
3154 tmp = localtime(&t);
3155 if (tmp == NULL) {
3159 if (mystrftime(namebuf, namelen, name, tmp, filecount+1) == 0) {