/third_party/uboot/u-boot-2020.01/board/compulab/common/ |
D | omap3_display.c | 269 static int parse_setting(char *setting) in parse_setting() argument 272 char *setting_start = setting; in parse_setting() 274 if (!strncmp(setting, "mode:", 5)) { in parse_setting() 275 return parse_mode(setting + 5); in parse_setting() 276 } else if (!strncmp(setting, "pixclock:", 9)) { in parse_setting() 277 return parse_pixclock(setting + 9); in parse_setting() 278 } else if (!strncmp(setting, "left:", 5)) { in parse_setting() 279 num_val = simple_strtoul(setting + 5, &setting, 0); in parse_setting() 281 } else if (!strncmp(setting, "right:", 6)) { in parse_setting() 282 num_val = simple_strtoul(setting + 6, &setting, 0); in parse_setting() [all …]
|
/third_party/harfbuzz/src/ |
D | hb-aat-map.hh | 66 hb_aat_layout_feature_selector_t setting; member 76 (a->setting & ~1) != (b->setting & ~1)) return (a->setting < b->setting ? -1 : 1); in cmp() 84 (f.setting != setting) ? (f.setting < setting ? -1 : 1) : 0; in cmp()
|
D | hb-aat-layout-feat-table.hh | 45 { return (int) key - (int) setting; } in cmp() 48 { return (hb_aat_layout_feature_selector_t) (unsigned) setting; } in get_selector() 54 (hb_aat_layout_feature_selector_t) (unsigned int) setting, in get_info() 56 ? (hb_aat_layout_feature_selector_t) (setting + 1) in get_info() 69 HBUINT16 setting; /* The setting. */ member 120 | hb_map ([=] (const SettingName& setting) { return setting.get_info (default_selector); }) in get_selector_infos() argument
|
D | hb-aat-map.cc | 49 info->setting = (hb_aat_layout_feature_selector_t) value; in add_feature() 75 info->setting = value ? mapping->selectorToEnable : mapping->selectorToDisable; in add_feature() 93 (!features[i].is_exclusive && ((features[i].setting & ~1) != (features[j].setting & ~1)))) in compile()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-aat-map.hh | 66 hb_aat_layout_feature_selector_t setting; member 76 (a->setting & ~1) != (b->setting & ~1)) return (a->setting < b->setting ? -1 : 1); in cmp() 84 (f.setting != setting) ? (f.setting < setting ? -1 : 1) : 0; in cmp()
|
D | hb-aat-layout-feat-table.hh | 45 { return (int) key - (int) setting; } in cmp() 48 { return (hb_aat_layout_feature_selector_t) (unsigned) setting; } in get_selector() 54 (hb_aat_layout_feature_selector_t) (unsigned int) setting, in get_info() 56 ? (hb_aat_layout_feature_selector_t) (setting + 1) in get_info() 69 HBUINT16 setting; /* The setting. */ member 120 | hb_map ([=] (const SettingName& setting) { return setting.get_info (default_selector); }) in get_selector_infos() argument
|
D | hb-aat-map.cc | 49 info->setting = (hb_aat_layout_feature_selector_t) value; in add_feature() 75 info->setting = value ? mapping->selectorToEnable : mapping->selectorToDisable; in add_feature() 93 (!features[i].is_exclusive && ((features[i].setting & ~1) != (features[j].setting & ~1)))) in compile()
|
/third_party/musl/src/crypt/ |
D | crypt_des.c | 878 const unsigned char *setting = (const unsigned char *)_setting; in _crypt_extended_r_uut() local 897 if (*setting == _PASSWORD_EFMT1) { in _crypt_extended_r_uut() 904 uint32_t value = ascii_to_bin(setting[i]); in _crypt_extended_r_uut() 905 if (ascii64[value] != setting[i]) in _crypt_extended_r_uut() 913 uint32_t value = ascii_to_bin(setting[i]); in _crypt_extended_r_uut() 914 if (ascii64[value] != setting[i]) in _crypt_extended_r_uut() 933 memcpy(output, setting, 9); in _crypt_extended_r_uut() 944 if (ascii_is_unsafe(setting[0]) || ascii_is_unsafe(setting[1])) in _crypt_extended_r_uut() 947 salt = (ascii_to_bin(setting[1]) << 6) in _crypt_extended_r_uut() 948 | ascii_to_bin(setting[0]); in _crypt_extended_r_uut() [all …]
|
D | crypt_blowfish.c | 599 static char *BF_crypt(const char *key, const char *setting, in BF_crypt() argument 616 if (setting[0] != '$' || in BF_crypt() 617 setting[1] != '2' || in BF_crypt() 618 setting[2] - 'a' > 25U || in BF_crypt() 619 !flags_by_subtype[setting[2] - 'a'] || in BF_crypt() 620 setting[3] != '$' || in BF_crypt() 621 setting[4] - '0' > 1U || in BF_crypt() 622 setting[5] - '0' > 9U || in BF_crypt() 623 setting[6] != '$') { in BF_crypt() 627 count = (BF_word)1 << ((setting[4] - '0') * 10 + (setting[5] - '0')); in BF_crypt() [all …]
|
/third_party/grpc/tools/codegen/core/ |
D | gen_settings_ids.py | 110 DecoratedSetting(hash(setting.id), name, setting) 111 for name, setting in _SETTINGS.iteritems() 118 decorated_setting.setting.id) 179 decorated_setting.setting.default, 180 decorated_setting.setting.min, 181 decorated_setting.setting.max, 182 decorated_setting.setting.on_error.behavior, 183 decorated_setting.setting.on_error.code,
|
/third_party/protobuf/conformance/ |
D | conformance_test.cc | 225 const ConformanceRequestSetting& setting, in RunValidInputTest() argument 227 std::unique_ptr<Message> reference_message(setting.NewTestMessage()); in RunValidInputTest() 230 << "Failed to parse data for test case: " << setting.GetTestName() in RunValidInputTest() 233 RunValidBinaryInputTest(setting, equivalent_wire_format); in RunValidInputTest() 237 const ConformanceRequestSetting& setting, in RunValidBinaryInputTest() argument 239 const ConformanceRequest& request = setting.GetRequest(); in RunValidBinaryInputTest() 241 RunTest(setting.GetTestName(), request, &response); in RunValidBinaryInputTest() 242 VerifyResponse(setting, equivalent_wire_format, response, true, in RunValidBinaryInputTest() 247 const ConformanceRequestSetting& setting, in VerifyResponse() argument 250 std::unique_ptr<Message> test_message(setting.NewTestMessage()); in VerifyResponse() [all …]
|
D | text_format_conformance_suite.cc | 60 const ConformanceRequestSetting& setting, Message* test_message) { in ParseTextFormatResponse() argument 62 const ConformanceRequest& request = setting.GetRequest(); in ParseTextFormatResponse() 78 const ConformanceRequestSetting& setting, Message* test_message) { in ParseResponse() argument 79 const ConformanceRequest& request = setting.GetRequest(); in ParseResponse() 81 const string& test_name = setting.GetTestName(); in ParseResponse() 82 ConformanceLevel level = setting.GetLevel(); in ParseResponse() 114 if (!ParseTextFormatResponse(response, setting, test_message)) { in ParseResponse() 138 ConformanceRequestSetting setting( in ExpectParseFailure() local 141 const ConformanceRequest& request = setting.GetRequest(); in ExpectParseFailure() 144 StrCat(setting.ConformanceLevelToString(level), in ExpectParseFailure()
|
/third_party/freetype/src/gxvalid/ |
D | gxvfeat.c | 55 FT_UShort setting; member 169 FT_UShort setting; in gxv_feat_setting_validate() local 176 setting = FT_NEXT_USHORT( p ); in gxv_feat_setting_validate() 179 if ( exclusive && ( setting & 1 ) == 0 ) in gxv_feat_setting_validate() 184 GXV_FEAT_DATA( setting ) = setting; in gxv_feat_setting_validate() 252 if ( (FT_Int)GXV_FEAT_DATA( setting ) <= last_setting ) in gxv_feat_name_validate() 255 last_setting = (FT_Int)GXV_FEAT_DATA( setting ); in gxv_feat_name_validate()
|
/third_party/skia/third_party/externals/freetype/src/gxvalid/ |
D | gxvfeat.c | 55 FT_UShort setting; member 169 FT_UShort setting; in gxv_feat_setting_validate() local 176 setting = FT_NEXT_USHORT( p ); in gxv_feat_setting_validate() 179 if ( exclusive && ( setting & 1 ) == 0 ) in gxv_feat_setting_validate() 184 GXV_FEAT_DATA( setting ) = setting; in gxv_feat_setting_validate() 252 if ( (FT_Int)GXV_FEAT_DATA( setting ) <= last_setting ) in gxv_feat_name_validate() 255 last_setting = (FT_Int)GXV_FEAT_DATA( setting ); in gxv_feat_name_validate()
|
/third_party/flutter/skia/third_party/externals/freetype/src/gxvalid/ |
D | gxvfeat.c | 55 FT_UShort setting; member 169 FT_UShort setting; in gxv_feat_setting_validate() local 176 setting = FT_NEXT_USHORT( p ); in gxv_feat_setting_validate() 179 if ( exclusive && ( setting & 1 ) == 0 ) in gxv_feat_setting_validate() 184 GXV_FEAT_DATA( setting ) = setting; in gxv_feat_setting_validate() 252 if ( (FT_Int)GXV_FEAT_DATA( setting ) <= last_setting ) in gxv_feat_name_validate() 255 last_setting = (FT_Int)GXV_FEAT_DATA( setting ); in gxv_feat_name_validate()
|
/third_party/uboot/u-boot-2020.01/drivers/pinctrl/ |
D | pinctrl-at91.c | 226 u32 pin, u32 setting) in at91_mux_sama5d3_set_drivestrength() argument 235 if (!setting) in at91_mux_sama5d3_set_drivestrength() 239 set_drive_strength(reg, pin, setting); in at91_mux_sama5d3_set_drivestrength() 243 u32 pin, u32 setting) in at91_mux_sam9x5_set_drivestrength() argument 252 if (!setting) in at91_mux_sam9x5_set_drivestrength() 257 setting = DRIVE_STRENGTH_BIT_MSK(HI) - setting; in at91_mux_sam9x5_set_drivestrength() 259 set_drive_strength(reg, pin, setting); in at91_mux_sam9x5_set_drivestrength() 263 u32 setting) in at91_mux_sam9x60_set_drivestrength() argument 268 if (setting <= DRIVE_STRENGTH_BIT_DEF || in at91_mux_sam9x60_set_drivestrength() 269 setting == DRIVE_STRENGTH_BIT_MED || in at91_mux_sam9x60_set_drivestrength() [all …]
|
/third_party/weston/clients/ |
D | ivi-shell-user-interface.c | 1077 struct hmi_homescreen_setting *setting = xzalloc(sizeof(*setting)); in hmi_homescreen_setting_create() local 1084 wl_list_init(&setting->workspace_list); in hmi_homescreen_setting_create() 1085 wl_list_init(&setting->launcher_list); in hmi_homescreen_setting_create() 1094 shellSection, "cursor-theme", &setting->cursor_theme, NULL); in hmi_homescreen_setting_create() 1097 shellSection, "cursor-size", &setting->cursor_size, 32); in hmi_homescreen_setting_create() 1104 shellSection, "background-image", &setting->background.filePath, in hmi_homescreen_setting_create() 1109 shellSection, "background-id", &setting->background.id, 1001); in hmi_homescreen_setting_create() 1113 shellSection, "panel-image", &setting->panel.filePath, in hmi_homescreen_setting_create() 1118 shellSection, "panel-id", &setting->panel.id, 1002); in hmi_homescreen_setting_create() 1122 shellSection, "tiling-image", &setting->tiling.filePath, in hmi_homescreen_setting_create() [all …]
|
/third_party/uboot/u-boot-2020.01/board/siemens/smartweb/ |
D | smartweb.c | 242 struct sdramc_reg setting; in mem_init() local 244 setting.cr = SDRAM_BASE_CONF; in mem_init() 245 setting.mdr = AT91_SDRAMC_MD_SDRAM; in mem_init() 246 setting.tr = (CONFIG_SYS_MASTER_CLOCK * 7) / 1000000; in mem_init() 256 sdramc_initialize(ATMEL_BASE_CS1, &setting); in mem_init()
|
/third_party/harfbuzz/test/api/ |
D | test-ot-face.c | 84 hb_aat_layout_feature_selector_info_t setting = {0}; in test_font() local 87 …fos (face, HB_AAT_LAYOUT_FEATURE_TYPE_DESIGN_COMPLEXITY_TYPE, 0, &count, &setting, &default_index); in test_font() 88 …result += count + feature + setting.disable + setting.disable + setting.name_id + setting.reserved… in test_font()
|
/third_party/skia/third_party/externals/harfbuzz/test/api/ |
D | test-ot-face.c | 84 hb_aat_layout_feature_selector_info_t setting = {0}; in test_font() local 87 …fos (face, HB_AAT_LAYOUT_FEATURE_TYPE_DESIGN_COMPLEXITY_TYPE, 0, &count, &setting, &default_index); in test_font() 88 …result += count + feature + setting.disable + setting.disable + setting.name_id + setting.reserved… in test_font()
|
/third_party/openssl/doc/man3/ |
D | SSL_CTX_set_quiet_shutdown.pod | 23 SSL_CTX_get_quiet_shutdown() returns the "quiet shutdown" setting of B<ctx>. 26 B<mode>. The setting stays valid until B<ssl> is removed with 31 SSL_get_quiet_shutdown() returns the "quiet shutdown" setting of B<ssl>. 39 When setting the "quiet shutdown" flag to 1, L<SSL_shutdown(3)> 55 setting.
|
/third_party/openssl/doc/man1/ |
D | version.pod | 35 All information, this is the same as setting all the other flags. 55 Platform setting. 59 OPENSSLDIR setting. 63 ENGINESDIR setting.
|
/third_party/flutter/skia/third_party/externals/libpng/scripts/ |
D | pnglibconf.dfa | 31 # setting <name> [requires ...] [default] 32 # #define PNG_<name> <value> /* value comes from current setting */ 44 # doesn't change the meaning of the line. (NOT setting, where "," becomes 45 # part of the setting!) A comma at the end of an option line causes a 54 # The following setting, option and chunk values can all be changed 57 # setting: change 'setting' lines to fine tune library performance; 96 # provide override values for setting entries and turn option or 99 # setting FOO default VALUE 178 setting USER_CONFIG 179 setting USER_PRIVATEBUILD [all …]
|
/third_party/skia/third_party/externals/libpng/scripts/ |
D | pnglibconf.dfa | 31 # setting <name> [requires ...] [default] 32 # #define PNG_<name> <value> /* value comes from current setting */ 44 # doesn't change the meaning of the line. (NOT setting, where "," becomes 45 # part of the setting!) A comma at the end of an option line causes a 54 # The following setting, option and chunk values can all be changed 57 # setting: change 'setting' lines to fine tune library performance; 96 # provide override values for setting entries and turn option or 99 # setting FOO default VALUE 178 setting USER_CONFIG 179 setting USER_PRIVATEBUILD [all …]
|
/third_party/libpng/scripts/ |
D | pnglibconf.dfa | 31 # setting <name> [requires ...] [default] 32 # #define PNG_<name> <value> /* value comes from current setting */ 44 # doesn't change the meaning of the line. (NOT setting, where "," becomes 45 # part of the setting!) A comma at the end of an option line causes a 54 # The following setting, option and chunk values can all be changed 57 # setting: change 'setting' lines to fine tune library performance; 96 # provide override values for setting entries and turn option or 99 # setting FOO default VALUE 178 setting USER_CONFIG 179 setting USER_PRIVATEBUILD [all …]
|