HomeSort by relevance Sort by last modified time
    Searched refs:nframe (Results 1 - 9 of 9) sorted by null

  /external/python/cpython3/Modules/clinic/
_tracemalloc.c.h 78 "start($module, nframe=1, /)\n"
84 "trace to nframe.");
90 _tracemalloc_start_impl(PyObject *module, int nframe);
96 int nframe = 1; local
99 &nframe)) {
102 return_value = _tracemalloc_start_impl(module, nframe);
  /external/python/cpython3/Lib/test/
test_tracemalloc.py 20 def get_frames(nframe, lineno_delta):
23 for index in range(nframe):
34 nframe = tracemalloc.get_traceback_limit()
36 frames = get_frames(nframe, 1)
850 def check_env_var_invalid(self, nframe):
854 PYTHONTRACEMALLOC=str(nframe))
864 for nframe in (-1, 0, 2**30):
865 with self.subTest(nframe=nframe):
866 self.check_env_var_invalid(nframe)
    [all...]
  /external/python/cpython3/Modules/
_tracemalloc.c 101 int nframe; member in struct:__anon37327
105 #define TRACEBACK_SIZE(NFRAME) \
106 (sizeof(traceback_t) + sizeof(frame_t) * (NFRAME - 1))
328 if (traceback1->nframe != traceback2->nframe)
331 for (i=0; i < traceback1->nframe; i++) {
424 int len = traceback->nframe;
459 tracemalloc_get_frame(pyframe, &traceback->frames[traceback->nframe]);
460 assert(traceback->frames[traceback->nframe].filename != NULL);
461 traceback->nframe++
    [all...]
main.c 1743 int nframe; local
    [all...]
  /external/python/cpython3/Lib/
sndhdr.py 121 nframe = data_size / frame_size
123 nframe = -1
124 return filetype, rate, nchannels, nframe, sample_bits
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVXCheckAnalyzer.java 177 int nframe;// number of frames in video local
192 nframe = nvlog = loadAttitudeRecs(new File(mPath, "vision_rpy.log"), vrecs);
195 nframe = analyzeVideo(vrecs);
199 Log.v(TAG, "Post video analysis nvlog = " + nvlog + " nframe=" + nframe);
201 if (nvlog <= 0 || nframe <= 0) {
206 if (nframe < MIN_VIDEO_LENGTH_SEC*VALID_FRAME_THRESHOLD) {
208 Log.w(TAG, "Video record is to short, n frame = " + nframe);
212 if ((double) nvlog / nframe < VALID_FRAME_THRESHOLD) {
215 ", n total frame = " + nframe);
    [all...]
  /external/one-true-awk/
run.c 221 int nframe = 0; /* number of frames allocated */ variable
239 fp = frame = (struct Frame *) calloc(nframe += 100, sizeof(struct Frame));
271 if (fp >= frame + nframe) {
274 realloc((char *) frame, (nframe += 100) * sizeof(struct Frame));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/pydoc_data/
topics.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/pydoc_data/
topics.py     [all...]

Completed in 242 milliseconds