/external/chromium_org/third_party/icu/source/tools/tzcode/ |
scheck.c | 21 register char * fbuf; local 31 fbuf = imalloc((int) (2 * strlen(format) + 4)); 32 if (fbuf == NULL) 35 tp = fbuf; 59 if (sscanf(string, fbuf, &dummy) != 1) 61 ifree(fbuf);
|
/external/icu4c/tools/tzcode/ |
scheck.c | 21 register char * fbuf; local 31 fbuf = imalloc((int) (2 * strlen(format) + 4)); 32 if (fbuf == NULL) 35 tp = fbuf; 59 if (sscanf(string, fbuf, &dummy) != 1) 61 ifree(fbuf);
|
/system/netd/ |
SoftapController.cpp | 122 char *fbuf = NULL; local 147 asprintf(&fbuf, "%swpa=1\nwpa_pairwise=TKIP CCMP\nwpa_psk=%s\n", wbuf, psk_str); 150 asprintf(&fbuf, "%swpa=2\nrsn_pairwise=CCMP\nwpa_psk=%s\n", wbuf, psk_str); 152 asprintf(&fbuf, "%s", wbuf); 156 asprintf(&fbuf, "%s", wbuf); 159 asprintf(&fbuf, "%s", wbuf); 166 free(fbuf); 169 if (write(fd, fbuf, strlen(fbuf)) < 0) { 174 free(fbuf); [all...] |
/external/chromium_org/third_party/opus/src/tests/ |
test_opus_api.c | 91 float fbuf[960*2]; local 298 VG_UNDEF(fbuf,sizeof(fbuf)); 299 if(opus_decode_float(dec, packet, 3, fbuf, 960, 0)!=960)test_failed(); 331 float fbuf[960*2]; local 648 VG_UNDEF(fbuf,sizeof(fbuf)); 649 if(opus_multistream_decode_float(dec, packet, 3, fbuf, 960, 0)!=960)test_failed(); 1053 float fbuf[960*2]; local [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
VertexBuffer.java | 653 FloatBuffer fbuf = (FloatBuffer) data; local 654 fbuf.limit(total); 656 fnewBuf.put(fbuf); [all...] |