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

  /bionic/libc/upstream-netbsd/libc/stdlib/
tfind.c 24 /* find a node by key "vkey" in tree "vrootp", or return 0 */
26 tfind(const void *vkey, void * const *vrootp,
31 _DIAGASSERT(vkey != NULL);
40 if ((r = (*compar)(vkey, (*rootp)->key)) == 0) /* T2: */
tsearch.c 26 tsearch(const void *vkey, void **vrootp,
32 _DIAGASSERT(vkey != NULL);
41 if ((r = (*compar)(vkey, (*rootp)->key)) == 0) /* T2: */
52 q->key = __UNCONST(vkey); /* initialize new node */
tdelete.c 25 /* find a node with key "vkey" in tree "vrootp" */
27 tdelete(const void *vkey, void **vrootp,
34 _DIAGASSERT(vkey != NULL);
40 while ((cmp = (*compar)(vkey, (*rootp)->key)) != 0) {
  /external/harfbuzz/contrib/
harfbuzz-unicode-tables.c 16 combining_property_cmp(const void *vkey, const void *vcandidate) {
17 const uint32_t key = (uint32_t) (intptr_t) vkey;
48 category_property_cmp(const void *vkey, const void *vcandidate) {
49 const uint32_t key = (uint32_t) (intptr_t) vkey;
harfbuzz-unicode.c 66 script_property_cmp(const void *vkey, const void *vcandidate) {
67 const uint32_t key = (uint32_t) (intptr_t) vkey;
208 grapheme_break_property_cmp(const void *vkey, const void *vcandidate) {
209 const uint32_t key = (uint32_t) (intptr_t) vkey;
252 mirroring_property_cmp(const void *vkey, const void *vcandidate) {
253 const uint32_t key = (uint32_t) (intptr_t) vkey;
  /external/qemu/distrib/sdl-1.2.15/src/video/windib/
SDL_dibevents.c 54 static SDL_keysym *TranslateKey(WPARAM vkey, UINT scancode, SDL_keysym *keysym, int pressed);
541 static int SDL_MapVirtualKey(int scancode, int vkey)
549 switch(vkey) {
567 return vkey;
583 return mvke?mvke:vkey;
586 static SDL_keysym *TranslateKey(WPARAM vkey, UINT scancode, SDL_keysym *keysym, int pressed)
593 if ((vkey == VK_RETURN) && (scancode & 0x100)) {
598 keysym->sym = VK_keymap[SDL_MapVirtualKey(scancode, vkey)];
603 /* Uh oh, better hope the vkey is close enough.. */
604 if((keysym->sym == vkey) || (vkey > 0x7f)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/windx5/
SDL_dx5events.c 907 UINT vkey; local
913 vkey = MapVirtualKey(scancode, 1);
915 /* Uh oh, better hope the vkey is close enough.. */
916 keysym->unicode = vkey;
921 if ((keystate[VK_NUMLOCK] & 1) && vkey >= VK_NUMPAD0 && vkey <= VK_NUMPAD9)
923 keysym->unicode = vkey - VK_NUMPAD0 + '0';
925 else if (SDL_ToUnicode(vkey, scancode, keystate, wchars, sizeof(wchars)/sizeof(wchars[0]), 0) > 0)
  /external/valgrind/main/memcheck/tests/
unit_oset.c 80 static Word wordCmp(void* vkey, void* velem)
82 return *(Word*)vkey - *(Word*)velem;
398 static Word blockCmp(const void* vkey, const void* velem)
400 Addr key = *(const Addr*)vkey;
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_sysevents.c 103 static int WINAPI ToUnicode9xME(UINT vkey, UINT scancode, const BYTE *keystate, LPWSTR wchars, int wsize, UINT flags);
844 static int WINAPI ToUnicode9xME(UINT vkey, UINT scancode, const BYTE *keystate, LPWSTR wchars, int wsize, UINT flags)
849 if (ToAsciiEx(vkey, scancode, (PBYTE) keystate, (WORD*)chars, 0, GetKeyboardLayout(0)) == 1) {
  /external/qemu/distrib/sdl-1.2.15/src/video/os2fslib/
SDL_os2fslib.c 95 static SDL_keysym *TranslateKey(int vkey, int chcode, int scancode, SDL_keysym *keysym, int iPressed);
236 static SDL_keysym *TranslateKey(int vkey, int chcode, int scancode, SDL_keysym *keysym, int iPressed)
247 keysym->unicode = vkey;
253 if (vkey == VK_SHIFT)
    [all...]

Completed in 279 milliseconds