key               272 core/action_stack.c void action_push_press(long key)
key               276 core/action_stack.c     action_push(key);
key               290 core/action_stack.c void action_push_release(long key)
key               294 core/action_stack.c     action_push(key);
key               300 core/action_stack.c void action_push_click(long key)
key               303 core/action_stack.c     action_push_release(key);
key               304 core/action_stack.c     action_push_press(key);
key                22 core/action_stack.h void action_push_press(long key);
key                23 core/action_stack.h void action_push_release(long key);
key                24 core/action_stack.h void action_push_click(long key);
key               319 core/kbd_common.c void kbd_key_press(long key)
key               322 core/kbd_common.c     if (key == KEY_VIDEO && !is_video_key_pressed)
key               333 core/kbd_common.c         if (keymap[i].hackkey == key){
key               340 core/kbd_common.c void kbd_key_release(long key)
key               343 core/kbd_common.c     if (key == KEY_VIDEO && is_video_key_pressed)
key               352 core/kbd_common.c         if (keymap[i].hackkey == key){
key               370 core/kbd_common.c long kbd_is_key_pressed(long key)
key               374 core/kbd_common.c         if (keymap[i].hackkey == key){
key               381 core/kbd_common.c long kbd_is_key_clicked(long key)
key               385 core/kbd_common.c         if (keymap[i].hackkey == key){
key                22 core/kbd_process.c 	register long key, t;
key                24 core/kbd_process.c 	key=kbd_get_clicked_key();
key                25 core/kbd_process.c 	if (key && (key != last_kbd_key))
key                27 core/kbd_process.c 		last_kbd_key = key;
key                30 core/kbd_process.c 		return key;
key               141 core/script.c  void script_set_terminate_key(int key, const char *keyname)
key               143 core/script.c      script_terminate_key = key;
key                85 include/keyboard.h extern void kbd_key_press(long key);
key                86 include/keyboard.h extern void kbd_key_release(long key);
key                88 include/keyboard.h extern long kbd_is_key_pressed(long key);
key                89 include/keyboard.h extern long kbd_is_key_clicked(long key);
key                58 include/script.h extern void script_set_terminate_key(int key, const char *keyname);
key               546 lib/lua/lapi.c   TValue key;
key               550 lib/lua/lapi.c   setsvalue(L, &key, luaS_new(L, k));
key               551 lib/lua/lapi.c   luaV_gettable(L, t, &key, L->top);
key               659 lib/lua/lapi.c   TValue key;
key               664 lib/lua/lapi.c   setsvalue(L, &key, luaS_new(L, k));
key               665 lib/lua/lapi.c   luaV_settable(L, t, &key, L->top - 1);
key               503 lib/lua/lcode.c LUAI_FUNC void luaK_self (FuncState *fs, expdesc *e, expdesc *key) {
key               509 lib/lua/lcode.c   luaK_codeABC(fs, OP_SELF, func, e->u.s.info, luaK_exp2RK(fs, key));
key               510 lib/lua/lcode.c   freeexp(fs, key);
key                58 lib/lua/lcode.h LUAI_FUNC void luaK_self (FuncState *fs, expdesc *e, expdesc *key);
key                99 lib/lua/loslib.c static void setfield (lua_State *L, const char *key, int value) {
key               101 lib/lua/loslib.c   lua_setfield(L, -2, key);
key               104 lib/lua/loslib.c static void setboolfield (lua_State *L, const char *key, int value) {
key               108 lib/lua/loslib.c   lua_setfield(L, -2, key);
key               111 lib/lua/loslib.c static int getboolfield (lua_State *L, const char *key) {
key               113 lib/lua/loslib.c   lua_getfield(L, -1, key);
key               120 lib/lua/loslib.c static int getfield (lua_State *L, const char *key, int d) {
key               122 lib/lua/loslib.c   lua_getfield(L, -1, key);
key               127 lib/lua/loslib.c       return luaL_error(L, "field " LUA_QS " missing in date table", key);
key               410 lib/lua/lparser.c   expdesc key;
key               413 lib/lua/lparser.c   checkname(ls, &key);
key               414 lib/lua/lparser.c   luaK_indexed(fs, v, &key);
key               447 lib/lua/lparser.c   expdesc key, val;
key               451 lib/lua/lparser.c     checkname(ls, &key);
key               454 lib/lua/lparser.c     yindex(ls, &key);
key               457 lib/lua/lparser.c   rkkey = luaK_exp2RK(fs, &key);
key               702 lib/lua/lparser.c         expdesc key;
key               704 lib/lua/lparser.c         yindex(ls, &key);
key               705 lib/lua/lparser.c         luaK_indexed(fs, v, &key);
key               709 lib/lua/lparser.c         expdesc key;
key               711 lib/lua/lparser.c         checkname(ls, &key);
key               712 lib/lua/lparser.c         luaK_self(fs, v, &key);
key               100 lib/lua/ltable.c static Node *mainposition (const Table *t, const TValue *key) {
key               101 lib/lua/ltable.c   switch (ttype(key)) {
key               103 lib/lua/ltable.c       return hashnum(t, nvalue(key));
key               105 lib/lua/ltable.c       return hashstr(t, rawtsvalue(key));
key               107 lib/lua/ltable.c       return hashboolean(t, bvalue(key));
key               109 lib/lua/ltable.c       return hashpointer(t, pvalue(key));
key               111 lib/lua/ltable.c       return hashpointer(t, gcvalue(key));
key               120 lib/lua/ltable.c static int arrayindex (const TValue *key) {
key               121 lib/lua/ltable.c   if (ttisnumber(key)) {
key               122 lib/lua/ltable.c     lua_Number n = nvalue(key);
key               137 lib/lua/ltable.c static int findindex (lua_State *L, Table *t, StkId key) {
key               139 lib/lua/ltable.c   if (ttisnil(key)) return -1;  /* first iteration */
key               140 lib/lua/ltable.c   i = arrayindex(key);
key               144 lib/lua/ltable.c     Node *n = mainposition(t, key);
key               147 lib/lua/ltable.c       if (luaO_rawequalObj(key2tval(n), key) ||
key               148 lib/lua/ltable.c             (ttype(gkey(n)) == LUA_TDEADKEY && iscollectable(key) &&
key               149 lib/lua/ltable.c              gcvalue(gkey(n)) == gcvalue(key))) {
key               162 lib/lua/ltable.c LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key) {
key               163 lib/lua/ltable.c   int i = findindex(L, t, key);  /* find original element */
key               166 lib/lua/ltable.c       setnvalue(key, cast_num(i+1));
key               167 lib/lua/ltable.c       setobj2s(L, key+1, &t->array[i]);
key               173 lib/lua/ltable.c       setobj2s(L, key, key2tval(gnode(t, i)));
key               174 lib/lua/ltable.c       setobj2s(L, key+1, gval(gnode(t, i)));
key               211 lib/lua/ltable.c static int countint (const TValue *key, int *nums) {
key               212 lib/lua/ltable.c   int k = arrayindex(key);
key               399 lib/lua/ltable.c static TValue *newkey (lua_State *L, Table *t, const TValue *key) {
key               400 lib/lua/ltable.c   Node *mp = mainposition(t, key);
key               405 lib/lua/ltable.c       rehash(L, t, key);  /* grow table */
key               406 lib/lua/ltable.c       return luaH_set(L, t, key);  /* re-insert key into grown table */
key               425 lib/lua/ltable.c   gkey(mp)->value = key->value; gkey(mp)->tt = key->tt;
key               426 lib/lua/ltable.c   luaC_barriert(L, t, key);
key               435 lib/lua/ltable.c LUAI_FUNC const TValue *luaH_getnum (Table *t, int key) {
key               437 lib/lua/ltable.c   if (cast(unsigned int, key-1) < cast(unsigned int, t->sizearray))
key               438 lib/lua/ltable.c     return &t->array[key-1];
key               440 lib/lua/ltable.c     lua_Number nk = cast_num(key);
key               455 lib/lua/ltable.c LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key) {
key               456 lib/lua/ltable.c   Node *n = hashstr(t, key);
key               458 lib/lua/ltable.c     if (ttisstring(gkey(n)) && rawtsvalue(gkey(n)) == key)
key               469 lib/lua/ltable.c LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key) {
key               470 lib/lua/ltable.c   switch (ttype(key)) {
key               472 lib/lua/ltable.c     case LUA_TSTRING: return luaH_getstr(t, rawtsvalue(key));
key               475 lib/lua/ltable.c       lua_Number n = nvalue(key);
key               477 lib/lua/ltable.c       if (luai_numeq(cast_num(k), nvalue(key))) /* index is int? */
key               482 lib/lua/ltable.c       Node *n = mainposition(t, key);
key               484 lib/lua/ltable.c         if (luaO_rawequalObj(key2tval(n), key))
key               494 lib/lua/ltable.c LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key) {
key               495 lib/lua/ltable.c   const TValue *p = luaH_get(t, key);
key               500 lib/lua/ltable.c     if (ttisnil(key)) luaG_runerror(L, "table index is nil");
key               501 lib/lua/ltable.c     else if (ttisnumber(key) && luai_numisnan(nvalue(key)))
key               503 lib/lua/ltable.c     return newkey(L, t, key);
key               508 lib/lua/ltable.c LUAI_FUNC TValue *luaH_setnum (lua_State *L, Table *t, int key) {
key               509 lib/lua/ltable.c   const TValue *p = luaH_getnum(t, key);
key               514 lib/lua/ltable.c     setnvalue(&k, cast_num(key));
key               520 lib/lua/ltable.c LUAI_FUNC TValue *luaH_setstr (lua_State *L, Table *t, TString *key) {
key               521 lib/lua/ltable.c   const TValue *p = luaH_getstr(t, key);
key               526 lib/lua/ltable.c     setsvalue(L, &k, key);
key               582 lib/lua/ltable.c Node *luaH_mainposition (const Table *t, const TValue *key) {
key               583 lib/lua/ltable.c   return mainposition(t, key);
key                21 lib/lua/ltable.h LUAI_FUNC const TValue *luaH_getnum (Table *t, int key);
key                22 lib/lua/ltable.h LUAI_FUNC TValue *luaH_setnum (lua_State *L, Table *t, int key);
key                23 lib/lua/ltable.h LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key);
key                24 lib/lua/ltable.h LUAI_FUNC TValue *luaH_setstr (lua_State *L, Table *t, TString *key);
key                25 lib/lua/ltable.h LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
key                26 lib/lua/ltable.h LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key);
key                30 lib/lua/ltable.h LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key);
key                35 lib/lua/ltable.h LUAI_FUNC Node *luaH_mainposition (const Table *t, const TValue *key);
key               124 lib/lua/lvm.c  LUAI_FUNC void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val) {
key               130 lib/lua/lvm.c        const TValue *res = luaH_get(h, key); /* do a primitive get */
key               141 lib/lua/lvm.c        callTMres(L, val, tm, t, key);
key               150 lib/lua/lvm.c  LUAI_FUNC void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val) {
key               157 lib/lua/lvm.c        TValue *oldval = luaH_set(L, h, key); /* do a primitive set */
key               170 lib/lua/lvm.c        callTM(L, tm, t, key, val);
key                29 lib/lua/lvm.h  LUAI_FUNC void luaV_gettable (lua_State *L, const TValue *t, TValue *key,
key                31 lib/lua/lvm.h  LUAI_FUNC void luaV_settable (lua_State *L, const TValue *t, TValue *key,
key                75 modules/eyefi.c     u8  key[WPA_KEY_BYTES];     // Large enough for longest key
key               120 modules/eyefi.c             struct network_key key;
key               207 modules/eyefi.c static int make_network_key(struct network_key *key, char *essid, char *pass)
key               211 modules/eyefi.c     memset(key, 0, sizeof(*key));
key               222 modules/eyefi.c                 key->len = pass_len/2;
key               223 modules/eyefi.c                 memcpy(&key->key[0], hex_pass, key->len);
key               228 modules/eyefi.c             key->len = WPA_KEY_BYTES;
key               229 modules/eyefi.c             pbkdf2_sha1(pass, essid, strlen(essid), 4096, &key->key[0], WPA_KEY_BYTES);
key               332 modules/eyefi.c         make_network_key(&param.network.key, SSID, pwd);
key                32 modules/eyefi.h void hmac_md5_vector(const u8 *key, size_t key_len, size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac);
key                33 modules/eyefi.h void hmac_md5(const u8 *key, size_t key_len, const u8 *data, size_t data_len, u8 *mac);
key               211 modules/games/gui_mastermind.c     long key = kbd_get_autoclicked_key();
key               212 modules/games/gui_mastermind.c     if (key)
key               217 modules/games/gui_mastermind.c             switch (key)
key               255 modules/games/gui_mastermind.c         else if (key == KEY_SET)
key               859 modules/games/gui_sudoku.c 	int key=kbd_get_autoclicked_key();
key               861 modules/games/gui_sudoku.c 	switch (key) {
key               898 modules/games/gui_sudoku.c 			if (key & (KEY_UP | KEY_DOWN))
key               901 modules/games/gui_sudoku.c 				if (key==KEY_UP)yPos--;
key               902 modules/games/gui_sudoku.c 				if (key==KEY_DOWN)yPos++;
key               906 modules/games/gui_sudoku.c 			if (key & (KEY_LEFT | KEY_RIGHT))
key               909 modules/games/gui_sudoku.c 				if (key==KEY_LEFT)xPos--;
key               910 modules/games/gui_sudoku.c 				if (key==KEY_RIGHT)xPos++;
key               914 modules/games/gui_sudoku.c 			if (key==KEY_SET && field[yPos][xPos]==0)
key               924 modules/games/gui_sudoku.c 			if (key &(KEY_LEFT | KEY_RIGHT) && yPosPad>=0)
key               926 modules/games/gui_sudoku.c 				if (key==KEY_LEFT)xPosPad--;
key               927 modules/games/gui_sudoku.c 				if (key==KEY_RIGHT)xPosPad++;
key               932 modules/games/gui_sudoku.c 			if (key &(KEY_UP | KEY_DOWN))
key               934 modules/games/gui_sudoku.c 				if (key==KEY_UP)yPosPad--;
key               935 modules/games/gui_sudoku.c 				if (key==KEY_DOWN)yPosPad++;
key               941 modules/games/gui_sudoku.c 			if (key==KEY_SET)
key               959 modules/games/gui_sudoku.c 			key |= get_jogdial_direction();
key               960 modules/games/gui_sudoku.c 			if (key & (KEY_UP | KEY_DOWN | JOGDIAL_LEFT | JOGDIAL_RIGHT))
key               962 modules/games/gui_sudoku.c 				if (key==KEY_UP || key==JOGDIAL_LEFT)menuPos--;
key               963 modules/games/gui_sudoku.c 				if (key==KEY_DOWN || key==JOGDIAL_RIGHT)menuPos++;
key               967 modules/games/gui_sudoku.c 			switch (key) {
key              1839 modules/luascript.c void set_string_field(lua_State* L, const char *key, const char *val)
key              1842 modules/luascript.c   lua_setfield(L, -2, key);
key              1845 modules/luascript.c void set_number_field(lua_State* L, const char *key, int val)
key              1848 modules/luascript.c   lua_setfield(L, -2, key);
key                30 modules/md5.c  void hmac_md5_vector(const u8 *key, size_t key_len, size_t num_elem,
key                48 modules/md5.c  		md5_vector(1, &key, &key_len, tk);
key                49 modules/md5.c  		key = tk;
key                64 modules/md5.c  	os_memcpy(k_pad, key, key_len);
key                80 modules/md5.c  	os_memcpy(k_pad, key, key_len);
key               102 modules/md5.c  void hmac_md5(const u8 *key, size_t key_len, const u8 *data, size_t data_len,
key               105 modules/md5.c  	hmac_md5_vector(key, key_len, 1, &data, &data_len, mac);
key                35 modules/sha1.c void hmac_sha1_vector(const u8 *key, size_t key_len, size_t num_elem,
key                53 modules/sha1.c 		sha1_vector(1, &key, &key_len, tk);
key                54 modules/sha1.c 		key = tk;
key                69 modules/sha1.c 	memcpy(k_pad, key, key_len);
key                84 modules/sha1.c 	memcpy(k_pad, key, key_len);
key               106 modules/sha1.c void hmac_sha1(const u8 *key, size_t key_len, const u8 *data, size_t data_len,
key               109 modules/sha1.c 	hmac_sha1_vector(key, key_len, 1, &data, &data_len, mac);
key               126 modules/sha1.c void sha1_prf(const u8 *key, size_t key_len, const char *label,
key               149 modules/sha1.c 			hmac_sha1_vector(key, key_len, 4, addr, len,
key               153 modules/sha1.c 			hmac_sha1_vector(key, key_len, 4, addr, len,
key               177 modules/sha1.c void sha1_t_prf(const u8 *key, size_t key_len, const char *label,
key               205 modules/sha1.c 		hmac_sha1_vector(key, key_len, 5, addr, len, hash);
key               124 platform/a470/kbd.c void enable_extra_button(short key) {
key               132 platform/a470/kbd.c     if (key) {
key               137 platform/a470/kbd.c         keymap[10].hackkey=key;
key               148 platform/a470/kbd.c void kbd_set_extra_button(short key) { // called by core
key               149 platform/a470/kbd.c     set_fake_key=key|0x10000000;    
key                95 platform/ixus110_sd960/kbd.c void enable_extra_button(short key) {
key               103 platform/ixus110_sd960/kbd.c     if (key) {
key               107 platform/ixus110_sd960/kbd.c         keymap[13].hackkey=key;
key               117 platform/ixus110_sd960/kbd.c void kbd_set_extra_button(short key) { // called by core
key               118 platform/ixus110_sd960/kbd.c     set_fake_key=key|0x10000000;    
key               626 platform/ixus240_elph320hs/kbd.c void kbd_key_press(long key)
key               631 platform/ixus240_elph320hs/kbd.c     if (key == KEY_VIDEO && !is_video_key_pressed)
key               642 platform/ixus240_elph320hs/kbd.c         if (keymap[i].hackkey == key)
key               650 platform/ixus240_elph320hs/kbd.c void kbd_key_release(long key)
key               653 platform/ixus240_elph320hs/kbd.c     if (key == KEY_VIDEO && is_video_key_pressed)
key               663 platform/ixus240_elph320hs/kbd.c         if (keymap[i].hackkey == key) {
key               678 platform/ixus240_elph320hs/kbd.c long kbd_is_key_pressed(long key)
key               683 platform/ixus240_elph320hs/kbd.c         if ((keymap[i].hackkey == key) && keymap[i].canonkey)
key               691 platform/ixus240_elph320hs/kbd.c long kbd_is_key_clicked(long key)
key               696 platform/ixus240_elph320hs/kbd.c         if ((keymap[i].hackkey == key) && keymap[i].canonkey)
key               166 tools/capdis.c     unsigned key = ADDR_HASH(addr);
key               167 tools/capdis.c     if(!addr_hash[key]) {
key               170 tools/capdis.c     return l_search(addr_hash[key],addr);
key               174 tools/capdis.c     unsigned key = ADDR_HASH(addr);
key               175 tools/capdis.c     if(!addr_hash[key]) {
key               176 tools/capdis.c         addr_hash[key] = new_list();
key               178 tools/capdis.c     l_insert(addr_hash[key],addr,0);
key               318 tools/packfi2/aes128.c static void AddRoundKey (uint32_t *state, uint32_t *key)
key               323 tools/packfi2/aes128.c 		state[idx] ^= key[idx];
key               333 tools/packfi2/aes128.c 	unsigned char *key = (unsigned char *)aes_key;
key               337 tools/packfi2/aes128.c 	memcpy (expkey, key, Nk * 4);
key               117 tools/packfi2/fi2enc.c static int fi2enc( char *infname, char *outfname, uint32_t *key, uint32_t *iv , uint32_t pid, uint32_t dryos_ver,
key               139 tools/packfi2/fi2enc.c 	aes128_expandkey( exkey, key );
key               246 tools/packfi2/fi2enc.c 	uint32_t *key = NULL;
key               260 tools/packfi2/fi2enc.c 				else key = key_buf;
key               292 tools/packfi2/fi2enc.c 	if( !key || !iv || !pid){
key               301 tools/packfi2/fi2enc.c 	for( i = 0; i < 4; i ++ )  key[i] = read32_be( key+i );
key               302 tools/packfi2/fi2enc.c         i = fi2enc( fni, fno, key, iv , pid, dryos_ver, cs_words);
key               824 tools/ubasic_test/camera_functions.c void script_set_terminate_key(int key, const char *keyname)
key               826 tools/ubasic_test/camera_functions.c     printf("*** script_set_terminate_key %d %s ***\n", key, keyname);