/kernel/linux/linux-5.10/drivers/acpi/acpica/ |
H A D | utascii.c | 31 /* Validate each character in the signature */ in acpi_ut_valid_nameseg() 46 * PARAMETERS: char - The character to be examined 49 * RETURN: TRUE if the character is valid, FALSE otherwise 51 * DESCRIPTION: Check for a valid ACPI character. Must be one of: 56 * We allow a '!' as the last character because of the ASF! table 60 u8 acpi_ut_valid_name_char(char character, u32 position) in acpi_ut_valid_name_char() argument 63 if (!((character >= 'A' && character <= 'Z') || in acpi_ut_valid_name_char() 64 (character >= '0' && character < in acpi_ut_valid_name_char() [all...] |
H A D | acutils.h | 156 u8 acpi_ut_valid_name_char(char character, u32 position); 600 * utstring - String and character utilities
|
/kernel/linux/linux-6.6/drivers/acpi/acpica/ |
H A D | utascii.c | 31 /* Validate each character in the signature */ in acpi_ut_valid_nameseg() 46 * PARAMETERS: char - The character to be examined 49 * RETURN: TRUE if the character is valid, FALSE otherwise 51 * DESCRIPTION: Check for a valid ACPI character. Must be one of: 56 * We allow a '!' as the last character because of the ASF! table 60 u8 acpi_ut_valid_name_char(char character, u32 position) in acpi_ut_valid_name_char() argument 63 if (!((character >= 'A' && character <= 'Z') || in acpi_ut_valid_name_char() 64 (character >= '0' && character < in acpi_ut_valid_name_char() [all...] |
/kernel/liteos_a/arch/arm/arm/src/ |
H A D | strncpy_from_user.c | 39 CHAR character;
in LOS_StrncpyFromUser() local 52 if (LOS_GetUser(&character, src + offset) != LOS_OK) {
in LOS_StrncpyFromUser() 55 *(CHAR *)(dst + offset) = character;
in LOS_StrncpyFromUser() 56 if (character == '\0') {
in LOS_StrncpyFromUser()
|
H A D | strnlen_user.c | 39 CHAR character;
in LOS_StrnlenUser() local 52 if (LOS_GetUser(&character, src + offset) != LOS_OK) {
in LOS_StrnlenUser() 56 if (character == '\0') {
in LOS_StrnlenUser()
|
/kernel/linux/linux-5.10/arch/m68k/sun3/prom/ |
H A D | console.c | 16 /* Non blocking get character from console input device, returns -1 31 /* Non blocking put character to console device, returns -1 if 46 /* Blocking version of get character routine above. */ 50 int character; in prom_getchar() local 51 while((character = prom_nbgetchar()) == -1) ; in prom_getchar() 52 return (char) character; in prom_getchar() 55 /* Blocking version of put character routine above. */
|
/kernel/linux/linux-6.6/arch/m68k/sun3/prom/ |
H A D | console.c | 16 /* Non blocking get character from console input device, returns -1 31 /* Non blocking put character to console device, returns -1 if 46 /* Blocking version of get character routine above. */ 50 int character; in prom_getchar() local 51 while((character = prom_nbgetchar()) == -1) ; in prom_getchar() 52 return (char) character; in prom_getchar() 55 /* Blocking version of put character routine above. */
|
/kernel/linux/linux-5.10/arch/powerpc/platforms/pseries/ |
H A D | setup.c | 501 if (result->character & H_CPU_CHAR_SPEC_BAR_ORI31) in init_cpu_char_feature_flags() 504 if (result->character & H_CPU_CHAR_BCCTRL_SERIALISED) in init_cpu_char_feature_flags() 507 if (result->character & H_CPU_CHAR_L1D_FLUSH_ORI30) in init_cpu_char_feature_flags() 510 if (result->character & H_CPU_CHAR_L1D_FLUSH_TRIG2) in init_cpu_char_feature_flags() 513 if (result->character & H_CPU_CHAR_L1D_THREAD_PRIV) in init_cpu_char_feature_flags() 516 if (result->character & H_CPU_CHAR_COUNT_CACHE_DISABLED) in init_cpu_char_feature_flags() 519 if (result->character & H_CPU_CHAR_BCCTR_FLUSH_ASSIST) in init_cpu_char_feature_flags() 522 if (result->character & H_CPU_CHAR_BCCTR_LINK_FLUSH_ASSIST) in init_cpu_char_feature_flags()
|
/kernel/linux/linux-5.10/arch/alpha/lib/ |
H A D | strrchr.S | 6 * Return the address of the last occurrence of a given character 22 zapnot a1, 1, a1 # e0 : zero extend our test character 24 sll a1, 8, t5 # e0 : replicate our test character 35 or t5, a1, a1 # .. e1 : character replication complete 54 /* Mask out character matches after terminator */ 65 /* Locate the address of the last matched character */
|
H A D | strchr.S | 6 * Return the address of a given character within a null-terminated 22 zapnot a1, 1, a1 # e0 : zero extend the search character 24 sll a1, 8, t5 # e0 : replicate the search character
|
/kernel/linux/linux-6.6/arch/alpha/lib/ |
H A D | strrchr.S | 6 * Return the address of the last occurrence of a given character 22 zapnot a1, 1, a1 # e0 : zero extend our test character 24 sll a1, 8, t5 # e0 : replicate our test character 35 or t5, a1, a1 # .. e1 : character replication complete 54 /* Mask out character matches after terminator */ 65 /* Locate the address of the last matched character */
|
H A D | strchr.S | 6 * Return the address of a given character within a null-terminated 22 zapnot a1, 1, a1 # e0 : zero extend the search character 24 sll a1, 8, t5 # e0 : replicate the search character
|
/kernel/linux/linux-5.10/arch/m68k/include/asm/ |
H A D | oplib.h | 139 /* Non-blocking get character from console. */ 142 /* Non-blocking put character to console. */ 143 extern int prom_nbputchar(char character); 145 /* Blocking get character from console. */ 148 /* Blocking put character to console. */ 149 extern void prom_putchar(char character);
|
/kernel/linux/linux-6.6/arch/m68k/include/asm/ |
H A D | oplib.h | 139 /* Non-blocking get character from console. */ 142 /* Non-blocking put character to console. */ 143 extern int prom_nbputchar(char character); 145 /* Blocking get character from console. */ 148 /* Blocking put character to console. */ 149 extern void prom_putchar(char character);
|
/kernel/linux/linux-6.6/arch/powerpc/platforms/pseries/ |
H A D | setup.c | 538 if (result->character & H_CPU_CHAR_SPEC_BAR_ORI31) in init_cpu_char_feature_flags() 541 if (result->character & H_CPU_CHAR_BCCTRL_SERIALISED) in init_cpu_char_feature_flags() 544 if (result->character & H_CPU_CHAR_L1D_FLUSH_ORI30) in init_cpu_char_feature_flags() 547 if (result->character & H_CPU_CHAR_L1D_FLUSH_TRIG2) in init_cpu_char_feature_flags() 550 if (result->character & H_CPU_CHAR_L1D_THREAD_PRIV) in init_cpu_char_feature_flags() 553 if (result->character & H_CPU_CHAR_COUNT_CACHE_DISABLED) in init_cpu_char_feature_flags() 556 if (result->character & H_CPU_CHAR_BCCTR_FLUSH_ASSIST) in init_cpu_char_feature_flags() 559 if (result->character & H_CPU_CHAR_BCCTR_LINK_FLUSH_ASSIST) in init_cpu_char_feature_flags()
|
/kernel/linux/linux-5.10/arch/powerpc/kvm/ |
H A D | powerpc.c | 2219 cp->character = c.character; in pseries_get_cpu_char() 2276 cp->character |= KVM_PPC_CPU_CHAR_SPEC_BAR_ORI31; in kvmppc_get_cpu_char() 2279 cp->character |= KVM_PPC_CPU_CHAR_BCCTRL_SERIALISED; in kvmppc_get_cpu_char() 2282 cp->character |= KVM_PPC_CPU_CHAR_L1D_FLUSH_ORI30; in kvmppc_get_cpu_char() 2285 cp->character |= KVM_PPC_CPU_CHAR_L1D_FLUSH_TRIG2; in kvmppc_get_cpu_char() 2288 cp->character |= KVM_PPC_CPU_CHAR_L1D_THREAD_PRIV; in kvmppc_get_cpu_char() 2291 cp->character |= KVM_PPC_CPU_CHAR_COUNT_CACHE_DIS; in kvmppc_get_cpu_char() 2294 cp->character |= KVM_PPC_CPU_CHAR_BCCTR_FLUSH_ASSIST; in kvmppc_get_cpu_char()
|
/kernel/linux/linux-6.6/arch/powerpc/kvm/ |
H A D | powerpc.c | 2274 cp->character = c.character; in pseries_get_cpu_char() 2331 cp->character |= KVM_PPC_CPU_CHAR_SPEC_BAR_ORI31; in kvmppc_get_cpu_char() 2334 cp->character |= KVM_PPC_CPU_CHAR_BCCTRL_SERIALISED; in kvmppc_get_cpu_char() 2337 cp->character |= KVM_PPC_CPU_CHAR_L1D_FLUSH_ORI30; in kvmppc_get_cpu_char() 2340 cp->character |= KVM_PPC_CPU_CHAR_L1D_FLUSH_TRIG2; in kvmppc_get_cpu_char() 2343 cp->character |= KVM_PPC_CPU_CHAR_L1D_THREAD_PRIV; in kvmppc_get_cpu_char() 2346 cp->character |= KVM_PPC_CPU_CHAR_COUNT_CACHE_DIS; in kvmppc_get_cpu_char() 2349 cp->character |= KVM_PPC_CPU_CHAR_BCCTR_FLUSH_ASSIST; in kvmppc_get_cpu_char()
|
/kernel/linux/linux-5.10/drivers/s390/char/ |
H A D | tty3270.c | 44 unsigned char character; member 72 unsigned char wcc; /* Write control character. */ 1081 * Insert character into the screen at the current position with the 1093 cell->character = tp->view.ascebc[' ']; in tty3270_put_character() 1101 cell->character = tp->view.ascebc[(unsigned int) ch]; in tty3270_put_character() 1183 *cp++ = cell->character; in tty3270_convert_line() 1266 line->cells[line->len].character = tp->view.ascebc[' ']; in tty3270_insert_characters() 1280 line->cells[tp->cx + n].character = tp->view.ascebc[' ']; in tty3270_insert_characters() 1319 cell->character = ' '; in tty3270_erase_characters() 1346 cell->character in tty3270_erase_line() [all...] |
/kernel/linux/linux-6.6/drivers/s390/char/ |
H A D | con3270.c | 57 unsigned char character; member 85 unsigned char wcc; /* Write control character. */ 436 c = cell->character; in tty3270_add_attributes() 1255 * Insert character into the screen at the current position with the 1267 cell->character = ' '; in tty3270_put_character() 1274 cell->character = ch; in tty3270_put_character() 1317 cell->character = ' '; in tty3270_reset_cell() 1341 line->cells[tp->cx + n].character = ' '; in tty3270_insert_characters() 1537 cell->character = ' '; in tty3270_goto_xy() 1785 default: /* Insert normal character in tty3270_do_write() [all...] |
/kernel/linux/linux-5.10/tools/scripts/ |
H A D | utilities.mak | 1 # This allows us to work with the newline character: 23 # single space each newline character in the output
|
/kernel/linux/linux-6.6/tools/scripts/ |
H A D | utilities.mak | 1 # This allows us to work with the newline character: 23 # single space each newline character in the output
|
/kernel/linux/linux-5.10/arch/powerpc/include/asm/ |
H A D | plpar_wrappers.h | 336 p->character = retbuf[0]; in plpar_get_cpu_characteristics()
|
/kernel/linux/linux-5.10/arch/arm/boot/compressed/ |
H A D | ll_char_wr.S | 38 * calculate offset into character table 56 add r0, r0, r5, lsl #3 @ Move to bottom of character
|
/kernel/linux/linux-6.6/arch/powerpc/include/asm/ |
H A D | plpar_wrappers.h | 339 p->character = retbuf[0]; in plpar_get_cpu_characteristics()
|
/kernel/linux/linux-6.6/arch/arm/boot/compressed/ |
H A D | ll_char_wr.S | 38 * calculate offset into character table 56 add r0, r0, r5, lsl #3 @ Move to bottom of character
|