Searched defs:tmp (Results 476 - 500 of 2459) sorted by relevance

<<11121314151617181920>>

/external/libdrm/freedreno/kgsl/
H A Dkgsl_pipe.c163 struct kgsl_bo *kgsl_bo = NULL, *tmp; local
165 LIST_FOR_EACH_ENTRY_SAFE(kgsl_bo, tmp, &kgsl_pipe->submit_list, list[pipe->id]) {
182 struct kgsl_bo *kgsl_bo = NULL, *tmp; local
184 LIST_FOR_EACH_ENTRY_SAFE(kgsl_bo, tmp, &kgsl_pipe->pending_list, list[pipe->id]) {
/external/libedit/src/
H A Deln.c77 const wchar_t *tmp; local
80 tmp = el_wgets(el, nread);
82 return ct_encode_string(tmp, &el->el_lgcyconv);
/external/libevent/
H A Dpoll.c144 struct pollfd *tmp = mm_realloc(pop->event_set_copy, local
146 if (tmp == NULL) {
150 pop->event_set_copy = tmp;
/external/libevent/test/
H A Dtest-fdleak.c85 unsigned char tmp; local
86 bufferevent_read(bev, &tmp, 1);
87 bufferevent_write(bev, &tmp, 1);
170 unsigned char tmp; local
173 bufferevent_read(bev, &tmp, 1);
174 if (tmp != 'A') {
193 unsigned char tmp = 'A'; local
194 bufferevent_write(bev, &tmp, 1);
/external/libexif/libexif/olympus/
H A Dmnote-olympus-entry.c692 unsigned long tmp = vr.numerator / vr.denominator; local
693 snprintf (v, maxlen, "%li mm", tmp);
/external/libffi/src/sparc/
H A Dffi.c126 int tmp; local
131 tmp = 0;
155 tmp = 1;
172 tmp++;
225 tmp++;
231 tmp++;
235 if ((tmp & 1) && (*p_arg)->alignment > 8)
237 tmp++;
242 tmp += 2;
/external/libldac/src/
H A Dmdct_ldac.c35 SCALAR a, b, c, d, tmp; local
81 tmp = _scalar(1.0) / (SCALAR)(nsmpl>>1);
90 p_y[index0] = a * tmp;
91 p_y[nsmpl-index0-1] = b * tmp;
H A Dquant_fixp_ldac.c66 INT32 maxspec, tmp; local
75 tmp = abs(p_spec[isp]);
76 if (maxspec < tmp) {
77 maxspec = tmp;
H A Dquant_ldac.c56 SCALAR maxspec, tmp; local
65 tmp = fabs(p_spec[isp]);
66 if (maxspec < tmp) {
67 maxspec = tmp;
73 tmp = ga_isf_ldac[idsf];
75 p_spec[isp] *= tmp;
H A Dsigana_ldac.c36 SCALAR low_energy, tmp; local
42 tmp = y1 * y1 + y2 * y2;
43 low_energy = tmp;
44 p_psd[0] = sqrt(tmp);
51 tmp = y1 * y1 + (y0-y2) * (y0-y2);
52 low_energy += tmp;
53 p_psd[isp] = sqrt(tmp);
60 tmp = y1 * y1 + (y0-y2) * (y0-y2);
61 p_psd[isp] = sqrt(tmp);
65 tmp
[all...]
/external/libmicrohttpd/src/examples/
H A Dmhd2spdy_http.c335 char tmp[4]; local
336 memcpy(&tmp,nv[i+1],3);
337 tmp[3]=0;
338 proxy->status = atoi(tmp);
/external/libmtp/examples/
H A Ddetect.c44 uint16_t tmp; local
47 tmp = buf[bp+1] << 8 | buf[bp+0];
49 tmp = buf[bp+0] << 8 | buf[bp+1];
53 printf("%c", (uint8_t) tmp);
237 LIBMTP_file_t *file, *tmp; local
287 tmp = file;
289 LIBMTP_destroy_file_t(tmp);
/external/libnetfilter_conntrack/qa/
H A Dtest_api.c481 struct nf_conntrack *ct, *ct2, *tmp; local
499 tmp = nfct_new();
500 if (!tmp) {
591 nfct_copy_attr(tmp, ct, i);
600 test_nfct_cmp_api(tmp, ct);
738 nfct_destroy(tmp);
/external/libnetfilter_conntrack/src/conntrack/
H A Dparse.c297 uint64_t tmp; local
298 memcpy(&tmp,
300 sizeof(tmp));
301 ct->protoinfo.dccp.handshake_seq = __be64_to_cpu(tmp);
338 uint64_t tmp; local
339 memcpy(&tmp,
341 sizeof(tmp));
342 ct->counters[dir].packets = __be64_to_cpu(tmp);
362 uint64_t tmp; local
363 memcpy(&tmp,
481 uint64_t tmp; local
487 uint64_t tmp; local
[all...]
H A Dsnprintf_xml.c84 static char tmp[INET6_ADDRSTRLEN]; local
89 if (!inet_ntop(AF_INET6, &addr, tmp, sizeof(tmp)))
92 return snprintf(buf, len, "%s", tmp);
/external/libnfnetlink/src/
H A Diftable.c119 struct ifindex_node *this, *tmp; local
131 list_for_each_entry_safe(this, tmp, &h->ifindex_hash[hash], head) {
264 struct ifindex_node *this, *tmp; local
273 list_for_each_entry_safe(this, tmp, &h->ifindex_hash[i], head) {
/external/libopus/celt/x86/
H A Dvq_sse2.c144 opus_val16 tmp = (opus_val16)pulsesLeft; local
145 yy = MAC16_16(yy, tmp, tmp);
146 yy = MAC16_16(yy, tmp, y[0]);
/external/libpng/contrib/examples/
H A Dsimpleover.c160 png_uint_32 tmp; local
163 tmp = out_pixel[c] * in_alpha;\
164 tmp = (tmp + (tmp >> 16) + 32769) >> 16;\
165 out_pixel[c] = tmp + in_pixel[c]
422 size_t buf_size, tmp; local
436 tmp = buf_size;
437 tmp /= sprites[nsprites].width;
438 tmp /
[all...]
/external/libunwind/src/
H A Dos-linux.h45 char *cp = buf, tmp; local
60 tmp = buf[i];
62 cp[-i] = tmp;
/external/libusb/libusb/os/
H A Dlinux_netlink.c201 const char *tmp, *slash; local
210 tmp = netlink_message_parse(buffer, len, "ACTION");
211 if (!tmp) {
213 } else if (strcmp(tmp, "remove") == 0) {
215 } else if (strcmp(tmp, "add") != 0) {
216 usbi_dbg("unknown device action %s", tmp);
221 tmp = netlink_message_parse(buffer, len, "SUBSYSTEM");
222 if (!tmp || strcmp(tmp, "usb") != 0) {
228 tmp
[all...]
/external/libvpx/libvpx/test/
H A Dlpf_test.cc177 uint8_t tmp = GetOuterThresh(&rnd); local
179 blimit[16]) = { tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp,
180 tmp, tm
236 uint8_t tmp = GetOuterThresh(&rnd); local
286 uint8_t tmp = GetOuterThresh(&rnd); local
[all...]
H A Dy4m_video_source.h93 vpx_image_t *tmp; local
94 tmp = other->img_.release();
96 img_.reset(tmp);
/external/libvpx/libvpx/vp8/common/
H A Dfindnearmv.c102 int tmp; local
103 tmp = cnt[CNT_NEAREST];
105 cnt[CNT_NEAR] = tmp;
106 tmp = near_mvs[CNT_NEAREST].as_int;
108 near_mvs[CNT_NEAR].as_int = tmp;
/external/libvpx/libvpx/vp8/common/mips/mmi/
H A Dloopfilter_filters_mmi.c34 uint32_t tmp[1]; local
189 [tmp0]"=&r"(tmp[0]),
209 uint32_t tmp[1]; local
451 [ftmp12]"=&f"(ftmp[12]), [tmp0]"=&r"(tmp[0]),
487 uint32_t tmp[1]; local
651 [ftmp12]"=&f"(ftmp[12]), [tmp0]"=&r"(tmp[0]),
680 mips_reg tmp[1]; local
950 [tmp0]"=&r"(tmp[0]), [src_ptr]"+&r"(src_ptr),
973 uint32_t tmp[1], count = 2; local
1049 [tmp0]"=&r"(tmp[
1064 uint32_t tmp[1], count = 2; local
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dmr_dissim.c43 cm->ref_frame_sign_bias[tmp->mbmi.ref_frame]) { \
79 MODE_INFO *tmp = cm->mip + cm->mode_info_stride; local
83 tmp++;
87 if (tmp->mbmi.ref_frame != INTRA_FRAME) {
93 const MODE_INFO *here = tmp;
184 store_mode_info->mode = tmp->mbmi.mode;
185 store_mode_info->ref_frame = tmp->mbmi.ref_frame;
186 store_mode_info->mv.as_int = tmp->mbmi.mv.as_int;
188 tmp++;

Completed in 683 milliseconds

<<11121314151617181920>>