HomeSort by relevance Sort by last modified time
    Searched full:numcodes (Results 1 - 25 of 38) sorted by null

1 2

  /external/qemu/distrib/sdl-1.2.15/src/video/windx5/
SDL_dx5yuv.c 128 DWORD numcodes; local
132 IDirectDraw2_GetFourCCCodes(ddraw2, &numcodes, NULL);
133 if ( numcodes ) {
135 codes = SDL_malloc(numcodes*sizeof(*codes));
137 IDirectDraw2_GetFourCCCodes(ddraw2, &numcodes, codes);
138 for ( i=0; i<numcodes; ++i ) {
  /external/zopfli/src/zopflipng/lodepng/
lodepng_util.cpp 312 unsigned long numcodes = (unsigned long)(bitlen.size()), treepos = 0, nodefilled = 0; local
313 std::vector<unsigned long> tree1d(numcodes), blcount(maxbitlen + 1, 0), nextcode(maxbitlen + 1, 0);
315 for(unsigned long bits = 0; bits < numcodes; bits++) blcount[bitlen[bits]]++;
321 for(unsigned long n = 0; n < numcodes; n++) if(bitlen[n] != 0) tree1d[n] = nextcode[bitlen[n]]++;
322 tree2d.clear(); tree2d.resize(numcodes * 2, 32767); //32767 here means the tree2d isn't filled there yet
323 for(unsigned long n = 0; n < numcodes; n++) //the codes
327 if(treepos > numcodes - 2) return 55;
338 //addresses are encoded as values > numcodes
339 tree2d[2 * treepos + bit] = ++nodefilled + numcodes;
343 else treepos = tree2d[2 * treepos + bit] - numcodes; //subtract numcodes from address to get address valu
349 unsigned long numcodes = (unsigned long)tree2d.size() \/ 2; local
483 size_t numcodes = 0, numlit = 0, numlen = 0; \/\/for logging local
    [all...]
lodepng.cpp 492 unsigned numcodes; /*number of symbols in the alphabet = number of codes*/ member in struct:HuffmanTree
499 std::cout << "tree. length: " << tree->numcodes << " maxbitlen: " << tree->maxbitlen << std::endl;
526 unsigned treepos = 0; /*position in the tree (1 of the numcodes columns)*/
529 tree->tree2d = (unsigned*)lodepng_malloc(tree->numcodes * 2 * sizeof(unsigned));
534 uninited, a value >= numcodes is an address to another bit, a value < numcodes
542 for(n = 0; n < tree->numcodes * 2; n++)
547 for(n = 0; n < tree->numcodes; n++) /*the codes*/
552 if(treepos > tree->numcodes - 2) return 55; /*oversubscribed, see comment in lodepng_error_text*/
565 /*addresses encoded with numcodes added to it*
    [all...]
  /external/llvm/include/llvm/Support/
Win64EH.h 79 support::ulittle8_t NumCodes;
106 return reinterpret_cast<void *>(&UnwindCodes[(NumCodes+1) & ~1]);
111 return reinterpret_cast<const void *>(&UnwindCodes[(NumCodes + 1) & ~1]);
  /external/llvm/lib/MC/
MCWin64EH.cpp 178 uint8_t numCodes = CountOfUnwindCodes(info->Instructions);
179 streamer.EmitIntValue(numCodes, 1);
202 if (numCodes & 1) {
213 else if (numCodes == 0) {
  /external/llvm/tools/llvm-readobj/
Win64EHDumper.cpp 247 SW.printNumber("UnwindCodeCount", UI.NumCodes);
250 ArrayRef<UnwindCode> UC(&UI.UnwindCodes[0], UI.NumCodes);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
term.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
term.h     [all...]
  /frameworks/native/services/inputflinger/
InputReader.h 361 size_t numCodes, const int32_t* keyCodes, uint8_t* outFlags) = 0;
434 size_t numCodes, const int32_t* keyCodes, uint8_t* outFlags);
521 bool markSupportedKeyCodesLocked(int32_t deviceId, uint32_t sourceMask, size_t numCodes,
571 bool markSupportedKeyCodes(uint32_t sourceMask, size_t numCodes,
    [all...]
EventHub.h 230 virtual bool markSupportedKeyCodes(int32_t deviceId, size_t numCodes, const int32_t* keyCodes,
295 virtual bool markSupportedKeyCodes(int32_t deviceId, size_t numCodes,
InputReader.cpp 642 size_t numCodes, const int32_t* keyCodes, uint8_t* outFlags) {
645 memset(outFlags, 0, numCodes);
646 return markSupportedKeyCodesLocked(deviceId, sourceMask, numCodes, keyCodes, outFlags);
650 size_t numCodes, const int32_t* keyCodes, uint8_t* outFlags) {
658 numCodes, keyCodes, outFlags);
667 numCodes, keyCodes, outFlags);
    [all...]
EventHub.cpp 406 bool EventHub::markSupportedKeyCodes(int32_t deviceId, size_t numCodes,
413 for (size_t codeIndex = 0; codeIndex < numCodes; codeIndex++) {
    [all...]
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 426 outs() << " Number of Codes: " << static_cast<int>(UI->NumCodes) << "\n";
441 if (UI->NumCodes)
444 printAllUnwindCodes(ArrayRef<UnwindCode>(&UI->UnwindCodes[0], UI->NumCodes));
  /frameworks/base/services/core/jni/
com_android_server_input_InputManagerService.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/lib32/
libcurses.so 
libncurses.so 
libncurses.so.5 
libncurses.so.5.7 
libtermcap.so 
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/lib32/
libcurses.so 
libncurses.so 
libncurses.so.5 
libncurses.so.5.7 
libtermcap.so 
  /frameworks/native/services/inputflinger/tests/
InputReader_test.cpp 622 virtual bool markSupportedKeyCodes(int32_t deviceId, size_t numCodes, const int32_t* keyCodes,
627 for (size_t i = 0; i < numCodes; i++) {
899 virtual bool markSupportedKeyCodes(uint32_t sourceMask, size_t numCodes,
902 for (size_t i = 0; i < numCodes; i++) {
    [all...]

Completed in 779 milliseconds

1 2