/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/examples/ |
A D | enough.c | 206 big_t got; /* value returned from count() */ in count() local 221 got = num[index]; in count() 222 if (got) in count() 240 got = count(syms - use, len + 1, (left - use) << 1); in count() 241 sum += got; in count() 242 if (got == (big_t)0 - 1 || sum < got) /* overflow */ in count() 462 big_t got; /* return value of count() */ in main() local 536 got = count(n, 1, 2); in main() 537 sum += got; in main() 538 if (got == (big_t)0 - 1 || sum < got) { /* overflow */ in main() [all …]
|
A D | gzlog.c | 611 uint got, max; in log_compress() local 662 got = DICT - strm.avail_out; in log_compress() 663 if (got && write(log->fd, buf, got) != got) { in log_compress()
|
/AliOS-Things-master/components/py_engine/tests/extmod/ |
A D | uasyncio_lock.py.exp | 29 task got 0 32 task got 2 36 task got 0 39 task got 2
|
A D | uasyncio_wait_for_fwd.py.exp | 7 waiting got cancelled 14 waiting got cancelled
|
A D | uasyncio_cancel_task.py.exp | 14 main got CancelledError
|
/AliOS-Things-master/components/py_engine/tests/basics/ |
A D | async_await2.py.exp | 3 wait got back: message from main 5 got StopIteration
|
/AliOS-Things-master/components/SDL2/src/audio/emscripten/ |
A D | SDL_emscriptenaudio.c | 70 int got; in HandleAudioProcess() local 80 got = SDL_AudioStreamGet(this->stream, this->work_buffer, this->spec.size); in HandleAudioProcess() 81 SDL_assert((got < 0) || (got == this->spec.size)); in HandleAudioProcess() 82 if (got != this->spec.size) { in HandleAudioProcess() 134 const int got = SDL_AudioStreamGet(this->stream, this->work_buffer, stream_len); in HandleCaptureProcess() local 135 SDL_assert((got < 0) || (got == stream_len)); in HandleCaptureProcess() 136 if (got != stream_len) { in HandleCaptureProcess()
|
/AliOS-Things-master/components/SDL2/src/audio/nacl/ |
A D | SDL_naclaudio.c | 81 const int got = SDL_AudioStreamGet(_this->stream, stream, len); in nacl_audio_callback() local 82 SDL_assert((got < 0) || (got == len)); in nacl_audio_callback() 83 if (got != len) { in nacl_audio_callback()
|
/AliOS-Things-master/components/SDL2/src/audio/haiku/ |
A D | SDL_haikuaudio.cc | 80 const int got = SDL_AudioStreamGet(audio->stream, stream, ilen); in FillSound() local 81 SDL_assert((got < 0) || (got == ilen)); in FillSound() 82 if (got != ilen) { in FillSound()
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/ |
A D | gzread.c | 59 unsigned got; local 74 state->size - strm->avail_in, &got) == -1) 76 strm->avail_in += got; 299 z_size_t got; local 314 got = 0; 366 got += n; 371 return got;
|
A D | inflate.c | 1382 unsigned got; local 1385 got = *have; 1387 while (next < len && got < 4) { 1388 if ((int)(buf[next]) == (got < 2 ? 0 : 0xff)) 1389 got++; 1391 got = 0; 1393 got = 4 - got; 1396 *have = got;
|
A D | configure | 382 got=`( $* ) 2>&1` 384 printf %s "$got" >> configure.log 388 test "$got" = ""
|
/AliOS-Things-master/hardware/chip/smarth_rv64/ |
A D | gcc_csky.ld | 91 *(.got.plt) 92 *(.got)
|
/AliOS-Things-master/components/oss/src/http/ |
A D | CurlHttpClient.cc | 232 size_t got = 0; in sendBody() local 244 got = static_cast<size_t>(content->gcount()); in sendBody() 247 state->transferred += got; in sendBody() 249 state->progress(got, state->transferred, state->total, state->userData); in sendBody() 253 state->sendCrc64Value = CRC64::CalcCRC(state->sendCrc64Value, (void *)ptr, got); in sendBody() 256 return got; in sendBody()
|
/AliOS-Things-master/components/py_engine/external/unzip/src/ |
A D | gzread.c | 367 unsigned got, n; local 400 got = 0; 444 got += n; 449 return (int)got;
|
A D | inflate.c | 1327 unsigned got; local 1330 got = *have; 1332 while (next < len && got < 4) { 1333 if ((int)(buf[next]) == (got < 2 ? 0 : 0xff)) 1334 got++; 1336 got = 0; 1338 got = 4 - got; 1341 *have = got;
|
A D | gzwrite.c | 63 int ret, got; local 79 if (have && ((got = write(state->fd, state->next, have)) < 0 || 80 (unsigned)got != have)) {
|
/AliOS-Things-master/components/SDL2/src/audio/ |
A D | SDL_audio.c | 748 int got; in SDL_RunAudio() local 750 … got = SDL_AudioStreamGet(device->stream, data ? data : device->work_buffer, device->spec.size); in SDL_RunAudio() 751 SDL_assert((got < 0) || (got == device->spec.size)); in SDL_RunAudio() 757 if (got != device->spec.size) { in SDL_RunAudio() 870 …const int got = SDL_AudioStreamGet(device->stream, device->work_buffer, device->callbackspec.size); in SDL_CaptureAudio() local 871 SDL_assert((got < 0) || (got == device->callbackspec.size)); in SDL_CaptureAudio() 872 if (got != device->callbackspec.size) { in SDL_CaptureAudio()
|
/AliOS-Things-master/components/SDL2/acinclude/ |
A D | ltoptions.m4 | 174 # Look at the argument we got. We use all the common list separators. 228 # Look at the argument we got. We use all the common list separators. 282 # Look at the argument we got. We use all the common list separators. 336 # Look at the argument we got. We use all the common list separators.
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/test/ |
A D | minigzip.c | 266 unsigned got; local 278 got = fread(in, 1, 1, gz->file); 279 if (got == 0)
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | test262_errors.txt | 1 …ed-this-uninitialized-realm.js:20: Test262Error: Expected a ReferenceError but got a ReferenceError 2 …tialized-realm.js:20: strict mode: Test262Error: Expected a ReferenceError but got a ReferenceError
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/m4/ |
A D | ltoptions.m4 | 176 # Look at the argument we got. We use all the common list separators. 230 # Look at the argument we got. We use all the common list separators. 284 # Look at the argument we got. We use all the common list separators. 391 # Look at the argument we got. We use all the common list separators.
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/scripts/ |
A D | ltoptions.m4 | 176 # Look at the argument we got. We use all the common list separators. 230 # Look at the argument we got. We use all the common list separators. 284 # Look at the argument we got. We use all the common list separators. 391 # Look at the argument we got. We use all the common list separators.
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/m4/ |
A D | ltoptions.m4 | 176 # Look at the argument we got. We use all the common list separators. 230 # Look at the argument we got. We use all the common list separators. 284 # Look at the argument we got. We use all the common list separators. 391 # Look at the argument we got. We use all the common list separators.
|
/AliOS-Things-master/components/SDL2/src/image/acinclude/ |
A D | ltoptions.m4 | 174 # Look at the argument we got. We use all the common list separators. 228 # Look at the argument we got. We use all the common list separators. 282 # Look at the argument we got. We use all the common list separators.
|