/external/tcpdump/ |
print-token.c | 50 extract_token_addrs(const struct token_header *trp, char *fsrc, char *fdst) 52 memcpy(fdst, (const char *)trp->token_dhost, 6); 61 register const u_char *fsrc, register const u_char *fdst) 66 dstname = etheraddr_string(fdst);
|
print-fddi.c | 190 extract_fddi_addrs(const struct fddi_header *fddip, char *fsrc, char *fdst) 200 fdst[i] = fddi_bit_swap[fddip->fddi_dhost[i]]; 205 memcpy(fdst, (const char *)fddip->fddi_dhost, 6); 215 register const u_char *fsrc, register const u_char *fdst) 220 dstname = etheraddr_string(fdst);
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/SampleCode/ |
AMRWB_E_SAMPLE.c | 83 FILE *fdst = NULL; local 116 if ((fdst = fopen (dstfile, "wb")) == NULL) 216 fwrite(OutputBuf, 1, outData.Length + size1, fdst); 217 fflush(fdst); 221 fwrite(outData.Buffer, 1, outData.Length, fdst); 222 fflush(fdst); 251 if (fdst) 252 fclose(fdst);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
file_util.py | 29 fdst = None 44 fdst = open(dst, 'wb') 60 fdst.write(buf) 66 if fdst: 67 fdst.close()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
file_util.py | 29 fdst = None 44 fdst = open(dst, 'wb') 60 fdst.write(buf) 66 if fdst: 67 fdst.close()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
shutil.py | 46 def copyfileobj(fsrc, fdst, length=16*1024): 47 """copy data from file-like object fsrc to file-like object fdst""" 52 fdst.write(buf) 83 with open(dst, 'wb') as fdst: 84 copyfileobj(fsrc, fdst)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
shutil.py | 46 def copyfileobj(fsrc, fdst, length=16*1024): 47 """copy data from file-like object fsrc to file-like object fdst""" 52 fdst.write(buf) 83 with open(dst, 'wb') as fdst: 84 copyfileobj(fsrc, fdst)
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_test_blend.c | 505 double fdst[LP_MAX_VECTOR_LENGTH]; local 510 read_vec(type, dst, fdst); 514 compute_blend_ref(blend, fsrc + j, fdst + j, fcon + j, fref + j); 580 double fdst[4]; local 588 fdst[j] = read_elem(type, dst + j*stride, k); 592 compute_blend_ref(blend, fsrc, fdst, fcon, fref);
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_test_blend.c | 505 double fdst[LP_MAX_VECTOR_LENGTH]; local 510 read_vec(type, dst, fdst); 514 compute_blend_ref(blend, fsrc + j, fdst + j, fcon + j, fref + j); 580 double fdst[4]; local 588 fdst[j] = read_elem(type, dst + j*stride, k); 592 compute_blend_ref(blend, fsrc, fdst, fcon, fref);
|
/external/skia/gm/rebaseline_server/ |
imagediffdb.py | 278 shutil.copyfileobj(fsrc=url_handle, fdst=file_handle)
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/ |
nvfx_vertprog.c | 419 tgsi_dst(struct nvfx_vpc *vpc, const struct tgsi_full_dst_register *fdst) { 422 switch (fdst->Register.File) { 427 dst = vpc->r_result[fdst->Register.Index]; 430 dst = vpc->r_temp[fdst->Register.Index]; 433 dst = vpc->r_address[fdst->Register.Index]; 436 NOUVEAU_ERR("bad dst file %i\n", fdst->Register.File); [all...] |
nvfx_fragprog.c | 413 tgsi_dst(struct nvfx_fpc *fpc, const struct tgsi_full_dst_register *fdst) { 414 switch (fdst->Register.File) { 416 return fpc->r_result[fdst->Register.Index]; 418 return fpc->r_temp[fdst->Register.Index]; 422 NOUVEAU_ERR("bad dst file %d\n", fdst->Register.File); [all...] |
/external/mesa3d/src/gallium/drivers/nv30/ |
nvfx_vertprog.c | 419 tgsi_dst(struct nvfx_vpc *vpc, const struct tgsi_full_dst_register *fdst) { 422 switch (fdst->Register.File) { 427 dst = vpc->r_result[fdst->Register.Index]; 430 dst = vpc->r_temp[fdst->Register.Index]; 433 dst = vpc->r_address[fdst->Register.Index]; 436 NOUVEAU_ERR("bad dst file %i\n", fdst->Register.File); [all...] |
nvfx_fragprog.c | 413 tgsi_dst(struct nvfx_fpc *fpc, const struct tgsi_full_dst_register *fdst) { 414 switch (fdst->Register.File) { 416 return fpc->r_result[fdst->Register.Index]; 418 return fpc->r_temp[fdst->Register.Index]; 422 NOUVEAU_ERR("bad dst file %d\n", fdst->Register.File); [all...] |
/external/valgrind/main/VEX/priv/ |
host_ppc_isel.c | 3399 HReg fdst = newVRegF(env); local 3415 HReg fdst = newVRegF(env); local 3438 HReg fdst = newVRegF(env); local 3663 HReg fdst = newVRegF(env); local 3687 HReg fdst = newVRegF(env); local [all...] |
host_mips_isel.c | 2416 HReg fdst = newVRegF(env); local [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/ |
t_vertex_generic.c | 1047 GLfloat fin[4], fout[4], fdst[4]; local 1052 INTERP_4F(t, fdst, fout, fin); 1054 a[j].insert[4-1]( &a[j], vdst + a[j].vertoffset, fdst );
|
/external/mesa3d/src/mesa/tnl/ |
t_vertex_generic.c | 1047 GLfloat fin[4], fout[4], fdst[4]; local 1052 INTERP_4F(t, fdst, fout, fin); 1054 a[j].insert[4-1]( &a[j], vdst + a[j].vertoffset, fdst );
|