Home
last modified time | relevance | path

Searched refs:last_command (Results 1 – 12 of 12) sorted by relevance

/external/pthreadpool/src/
Dpthreads.c142 uint32_t last_command, in wait_for_new_command() argument
146 if (command != last_command) { in wait_for_new_command()
156 if (command != last_command) { in wait_for_new_command()
165 futex_wait(&threadpool->command, last_command); in wait_for_new_command()
167 } while (command == last_command); in wait_for_new_command()
172 while ((command = pthreadpool_load_acquire_uint32_t(&threadpool->command)) == last_command) { in wait_for_new_command()
185 uint32_t last_command = threadpool_command_init; in thread_main() local
194 uint32_t command = wait_for_new_command(threadpool, last_command, flags); in thread_main()
226 last_command = command; in thread_main()
Dwindows.c54 uint32_t last_command, in wait_for_new_command() argument
58 if (command != last_command) { in wait_for_new_command()
68 if (command != last_command) { in wait_for_new_command()
75 const uint32_t event_index = (last_command >> 31); in wait_for_new_command()
80 assert(command != last_command); in wait_for_new_command()
87 uint32_t last_command = threadpool_command_init; in thread_main() local
96 uint32_t command = wait_for_new_command(threadpool, last_command, flags); in thread_main()
129 last_command = command; in thread_main()
/external/e2fsprogs/ext2ed/
Dmain.c374 i<=current_type->type_commands.last_command && !found; in dispatch()
385 for (i=0;i<=ext2_commands.last_command && !found;i++) { in dispatch()
396 for (i=0;i<=general_commands.last_command && !found;i++) { in dispatch()
474 for (i=0;i<=current_type->type_commands.last_command;i++) { in complete_command()
485 for (i=0;i<=ext2_commands.last_command;i++) { in complete_command()
496 for (i=0;i<=general_commands.last_command;i++) { in complete_command()
Dinit.c58 general_commands.last_command=-1; /* No commands whatsoever meanwhile */ in init()
59 ext2_commands.last_command=-1; in init()
178 for (i=0;i<=ptr->last_command;i++) { in free_user_commands()
183 ptr->last_command=-1; in free_user_commands()
206 ptr->type_commands.last_command=-1; in add_new_descriptor()
355 num=ptr->last_command; in add_user_command()
361 ptr->last_command=++num; in add_user_command()
Dgeneral_com.c47 if (current_type->type_commands.last_command==-1) { in help()
51 for (i=0;i<=current_type->type_commands.last_command;i++) { in help()
63 if (ext2_commands.last_command != -1) { in help()
65 for (i=0;i<=ext2_commands.last_command;i++) { in help()
79 for (i=0;i<=general_commands.last_command;i++) { in help()
117 for (i=0;i<=current_type->type_commands.last_command;i++) { in detailed_help()
124 for (i=0;i<=ext2_commands.last_command;i++) { in detailed_help()
131 for (i=0;i<=general_commands.last_command;i++) { in detailed_help()
Dext2ed.h81 int last_command; member
/external/fonttools/Lib/fontTools/svgLib/path/
Dparser.py128 last_command = command # Used by S and T
138 last_command = command # Used by S and T
220 if last_command not in 'CS':
260 if last_command not in 'QT':
/external/llvm-project/lldb/examples/python/
Dgdbremote.py1371 last_command = None
1438 last_command = m.group(1)
1439 if last_command == '?':
1440 last_command = '\\?'
1441 packet_name = last_command
1444 hide_next_response = gdb_remote_commands[last_command][
1445 'cmd'](options, last_command, last_command_args)
1455 last_command = None
1458 elif last_command:
1459 gdb_remote_commands[last_command]['rsp'](
[all …]
/external/brotli/c/enc/
Dencode.c916 Command* last_command = &s->commands_[s->num_commands_ - 1]; in ExtendLastCommand() local
921 uint64_t last_copy_len = last_command->copy_len_ & 0x1FFFFFF; in ExtendLastCommand()
926 uint32_t distance_code = CommandRestoreDistanceCode(last_command, in ExtendLastCommand()
933 last_command->copy_len_++; in ExtendLastCommand()
940 GetLengthCode(last_command->insert_len_, in ExtendLastCommand()
941 (size_t)((int)(last_command->copy_len_ & 0x1FFFFFF) + in ExtendLastCommand()
942 (int)(last_command->copy_len_ >> 25)), in ExtendLastCommand()
943 TO_BROTLI_BOOL((last_command->dist_prefix_ & 0x3FF) == 0), in ExtendLastCommand()
944 &last_command->cmd_prefix_); in ExtendLastCommand()
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_cmd.h70 return swc->last_command; in SVGA3D_GetLastCommand()
80 swc->last_command = 0; in SVGA3D_ResetLastCommand()
Dsvga_winsys.h466 SVGAFifo3dCmdId last_command; member
Dsvga_cmd.c122 swc->last_command = cmd; in SVGA3D_FIFOReserve()