Home
last modified time | relevance | path

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

/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.py68 last_command = command # Used by S and T
78 last_command = command # Used by S and T
160 if last_command not in 'CS':
200 if last_command not in 'QT':
/external/brotli/c/enc/
Dencode.c884 Command* last_command = &s->commands_[s->num_commands_ - 1]; in ExtendLastCommand() local
889 uint64_t last_copy_len = last_command->copy_len_ & 0x1FFFFFF; in ExtendLastCommand()
894 uint32_t distance_code = CommandRestoreDistanceCode(last_command, in ExtendLastCommand()
901 last_command->copy_len_++; in ExtendLastCommand()
907 GetLengthCode(last_command->insert_len_, in ExtendLastCommand()
908 (size_t)((int)(last_command->copy_len_ & 0x1FFFFFF) + in ExtendLastCommand()
909 (int)(last_command->copy_len_ >> 25)), in ExtendLastCommand()
910 TO_BROTLI_BOOL((last_command->dist_prefix_ & 0x3FF) == 0), in ExtendLastCommand()
911 &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.h455 SVGAFifo3dCmdId last_command; member
Dsvga_cmd.c122 swc->last_command = cmd; in SVGA3D_FIFOReserve()