HomeSort by relevance Sort by last modified time
    Searched defs:tmpbuffer (Results 1 - 7 of 7) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
getpath.c 489 char tmpbuffer[MAXPATHLEN+1]; local
490 int linklen = readlink(progpath, tmpbuffer, MAXPATHLEN);
493 tmpbuffer[linklen] = '\0';
494 if (tmpbuffer[0] == SEP)
495 /* tmpbuffer should never be longer than MAXPATHLEN,
497 strncpy(argv0_path, tmpbuffer, MAXPATHLEN);
501 joinpath(argv0_path, tmpbuffer);
503 linklen = readlink(argv0_path, tmpbuffer, MAXPATHLEN);
  /external/python/cpython2/Modules/
getpath.c 538 char tmpbuffer[MAXPATHLEN+1]; local
539 int linklen = readlink(progpath, tmpbuffer, MAXPATHLEN);
542 tmpbuffer[linklen] = '\0';
543 if (tmpbuffer[0] == SEP)
544 /* tmpbuffer should never be longer than MAXPATHLEN,
546 strncpy(argv0_path, tmpbuffer, MAXPATHLEN);
550 joinpath(argv0_path, tmpbuffer);
552 linklen = readlink(argv0_path, tmpbuffer, MAXPATHLEN);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
filter_functions.c 136 double tmpbuffer[PITCH_FRAME_LEN + PITCH_WLPCBUFLEN]; local
146 memcpy(tmpbuffer, wfdata->buffer, sizeof(double) * PITCH_WLPCBUFLEN);
147 memcpy(tmpbuffer+PITCH_WLPCBUFLEN, in, sizeof(double) * PITCH_FRAME_LEN);
148 memcpy(wfdata->buffer, tmpbuffer+PITCH_FRAME_LEN, sizeof(double) * PITCH_WLPCBUFLEN);
163 inp=tmpbuffer + PITCH_WLPCBUFLEN;
169 ext[k]=wfdata->window[k]*tmpbuffer[start+k];
  /external/python/cpython3/Modules/
getpath.c 271 wchar_t tmpbuffer[MAXPATHLEN*2+1]; local
289 tmpbuffer, MAXPATHLEN * 2);
292 wchar_t * tok = wcstok(tmpbuffer, L" \t\r\n", &state);
611 wchar_t tmpbuffer[MAXPATHLEN+1]; local
612 int linklen = _Py_wreadlink(progpath, tmpbuffer, MAXPATHLEN);
614 if (tmpbuffer[0] == SEP)
615 /* tmpbuffer should never be longer than MAXPATHLEN,
617 wcsncpy(argv0_path, tmpbuffer, MAXPATHLEN);
621 joinpath(argv0_path, tmpbuffer);
623 linklen = _Py_wreadlink(argv0_path, tmpbuffer, MAXPATHLEN)
639 wchar_t tmpbuffer[MAXPATHLEN+1]; local
    [all...]
  /external/python/cpython3/PC/
getpathp.c 501 wchar_t tmpbuffer[MAXPATHLEN*2+1]; local
518 tmpbuffer, MAXPATHLEN * 2);
522 wchar_t * tok = wcstok_s(tmpbuffer, L" \t\r\n", &context);
669 wchar_t tmpbuffer[MAXPATHLEN+1]; local
688 if (find_env_config_value(env_file, L"home", tmpbuffer)) {
689 wcscpy_s(argv0_path, MAXPATHLEN+1, tmpbuffer);
  /hardware/nxp/nfc/halimpl/hal/
phNxpNciHal.cc 1609 char tmpbuffer[10] = {0}; local
    [all...]
  /external/icu/icu4c/source/tools/pkgdata/
pkgdata.cpp 1890 char tmpbuffer[SMALL_BUFFER_MAX_SIZE]; local
    [all...]

Completed in 184 milliseconds