/third_party/backends/backend/genesys/ |
H A D | tables_motor.cpp | 38 motor.profiles.push_back({MotorSlope::create_from_steps(11000, 3000, 128), StepType::FULL, 0}); in genesys_init_motor_tables() 39 motor.profiles.push_back({MotorSlope::create_from_steps(11000, 3000, 128), StepType::HALF, 0}); in genesys_init_motor_tables() 46 motor.profiles.push_back({MotorSlope::create_from_steps(2000, 1375, 128), StepType::FULL, 0}); in genesys_init_motor_tables() 47 motor.profiles.push_back({MotorSlope::create_from_steps(2000, 1375, 128), StepType::HALF, 0}); in genesys_init_motor_tables() 54 motor.profiles.push_back({MotorSlope::create_from_steps(2289, 2100, 128), StepType::FULL, 0}); in genesys_init_motor_tables() 55 motor.profiles.push_back({MotorSlope::create_from_steps(2289, 2100, 128), StepType::HALF, 0}); in genesys_init_motor_tables() 62 motor.profiles.push_back({MotorSlope::create_from_steps(11000, 3000, 128), StepType::FULL, 0}); in genesys_init_motor_tables() 63 motor.profiles.push_back({MotorSlope::create_from_steps(11000, 3000, 128), StepType::HALF, 0}); in genesys_init_motor_tables() 70 motor.profiles.push_back({MotorSlope::create_from_steps(11000, 3000, 128), StepType::FULL, 0}); in genesys_init_motor_tables() 71 motor.profiles in genesys_init_motor_tables() [all...] |
H A D | motor.h | 157 std::vector<MotorProfile> profiles; member 163 for (auto& p : profiles) { in get_slope_with_step_type() 172 for (const auto& p : profiles) { in get_slope_with_step_type() 181 if (profiles.empty()) { in max_step_type() 185 for (const auto& p : profiles) { in max_step_type()
|
/third_party/ltp/testcases/lib/ |
H A D | tst_security.sh | 16 local profiles 22 profiles= 24 tst_apparmor_used_profile $cmd && profiles="$cmd $profiles" 26 [ -z "$profiles" ] && profiles="none" 27 tst_res TINFO "loaded AppArmor profiles: $profiles" 35 profiles= 37 tst_selinux_used_profile $cmd && profiles [all...] |
/third_party/node/deps/openssl/openssl/ssl/ |
H A D | d1_srtp.c | 64 STACK_OF(SRTP_PROTECTION_PROFILE) *profiles; in ssl_ctx_make_profiles() 70 if ((profiles = sk_SRTP_PROTECTION_PROFILE_new_null()) == NULL) { in ssl_ctx_make_profiles() 80 if (sk_SRTP_PROTECTION_PROFILE_find(profiles, p) >= 0) { in ssl_ctx_make_profiles() 85 if (!sk_SRTP_PROTECTION_PROFILE_push(profiles, p)) { in ssl_ctx_make_profiles() 100 *out = profiles; in ssl_ctx_make_profiles() 104 sk_SRTP_PROTECTION_PROFILE_free(profiles); in ssl_ctx_make_profiles() 108 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles) in SSL_CTX_set_tlsext_use_srtp() argument 110 return ssl_ctx_make_profiles(profiles, &ctx->srtp_profiles); in SSL_CTX_set_tlsext_use_srtp() 113 int SSL_set_tlsext_use_srtp(SSL *s, const char *profiles) in SSL_set_tlsext_use_srtp() argument 115 return ssl_ctx_make_profiles(profiles, in SSL_set_tlsext_use_srtp() [all...] |
/third_party/openssl/ssl/ |
H A D | d1_srtp.c | 64 STACK_OF(SRTP_PROTECTION_PROFILE) *profiles; in ssl_ctx_make_profiles() 70 if ((profiles = sk_SRTP_PROTECTION_PROFILE_new_null()) == NULL) { in ssl_ctx_make_profiles() 80 if (sk_SRTP_PROTECTION_PROFILE_find(profiles, p) >= 0) { in ssl_ctx_make_profiles() 85 if (!sk_SRTP_PROTECTION_PROFILE_push(profiles, p)) { in ssl_ctx_make_profiles() 100 *out = profiles; in ssl_ctx_make_profiles() 104 sk_SRTP_PROTECTION_PROFILE_free(profiles); in ssl_ctx_make_profiles() 108 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles) in SSL_CTX_set_tlsext_use_srtp() argument 110 return ssl_ctx_make_profiles(profiles, &ctx->srtp_profiles); in SSL_CTX_set_tlsext_use_srtp() 113 int SSL_set_tlsext_use_srtp(SSL *s, const char *profiles) in SSL_set_tlsext_use_srtp() argument 115 return ssl_ctx_make_profiles(profiles, in SSL_set_tlsext_use_srtp() [all...] |
/third_party/pulseaudio/src/modules/dbus/ |
H A D | iface-card.c | 56 pa_hashmap *profiles; member 275 const char **profiles; in get_profiles() local 283 *n = pa_hashmap_size(c->profiles); in get_profiles() 288 profiles = pa_xnew(const char *, *n); in get_profiles() 290 PA_HASHMAP_FOREACH(profile, c->profiles, state) in get_profiles() 291 profiles[i++] = pa_dbusiface_card_profile_get_path(profile); in get_profiles() 293 return profiles; in get_profiles() 298 const char **profiles; in handle_get_profiles() local 305 profiles = get_profiles(c, &n_profiles); in handle_get_profiles() 307 pa_dbus_send_basic_array_variant_reply(conn, msg, DBUS_TYPE_OBJECT_PATH, profiles, n_profile in handle_get_profiles() 381 const char **profiles = NULL; handle_get_all() local [all...] |
/third_party/node/test/sequential/ |
H A D | test-diagnostic-dir-heap-prof.js | 86 const profiles = getHeapProfiles(dir); 87 assert.strictEqual(profiles.length, 1); 88 verifyFrames(output, profiles[0], 'runAllocation'); 114 const profiles = getHeapProfiles(dir2); 115 assert.strictEqual(profiles.length, 1); 116 verifyFrames(output, profiles[0], 'runAllocation');
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | card.c | 109 data->profiles = pa_hashmap_new_full(pa_idxset_string_hash_func, pa_idxset_string_compare_func, NULL, (pa_free_cb_t) pa_card_profile_free); in pa_card_new_data_init() 136 if (data->profiles) in pa_card_new_data_done() 137 pa_hashmap_free(data->profiles); in pa_card_new_data_done() 156 pa_assert(data->profiles); in pa_card_new() 157 pa_assert(!pa_hashmap_isempty(data->profiles)); in pa_card_new() 180 pa_assert_se(c->profiles = data->profiles); in pa_card_new() 181 data->profiles = NULL; in pa_card_new() 185 PA_HASHMAP_FOREACH(profile, c->profiles, state) in pa_card_new() 217 * or if all profiles ar in pa_card_choose_initial_profile() [all...] |
H A D | card.h | 42 /* Identifiers for the profile's input and output parts, i e, if two different profiles 78 pa_hashmap *profiles; member 104 pa_hashmap *profiles; member
|
H A D | device-port.c | 167 if (p->profiles) in device_port_free() 168 pa_hashmap_free(p->profiles); in device_port_free() 198 p->profiles = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func); in pa_device_port_new()
|
/third_party/libinput/tools/ |
H A D | libinput-list-devices.c | 191 uint32_t profiles; in accel_profiles() local 200 profiles = libinput_device_config_accel_get_profiles(device); in accel_profiles() 201 if (profiles == LIBINPUT_CONFIG_ACCEL_PROFILE_NONE) { in accel_profiles() 210 (profiles & LIBINPUT_CONFIG_ACCEL_PROFILE_FLAT) ? "flat" : "", in accel_profiles() 212 (profiles & LIBINPUT_CONFIG_ACCEL_PROFILE_ADAPTIVE) ? "adaptive" : "", in accel_profiles() 214 (profiles & LIBINPUT_CONFIG_ACCEL_PROFILE_CUSTOM) ? "custom" : ""); in accel_profiles() 364 printf("Accel profiles: %s\n", str); in print_device_notify()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | srtp.rs | 5 pub fn SSL_CTX_set_tlsext_use_srtp(ctx: *mut SSL_CTX, profiles: *const c_char) -> c_int; in SSL_CTX_set_tlsext_use_srtp() 6 pub fn SSL_set_tlsext_use_srtp(ssl: *mut SSL, profiles: *const c_char) -> c_int; in SSL_set_tlsext_use_srtp()
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | srtp.h | 38 /* AEAD SRTP protection profiles from RFC 7714 */ 44 __owur int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles); 45 __owur int SSL_set_tlsext_use_srtp(SSL *ssl, const char *profiles);
|
/third_party/openssl/include/openssl/ |
H A D | srtp.h | 38 /* AEAD SRTP protection profiles from RFC 7714 */ 44 __owur int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles); 45 __owur int SSL_set_tlsext_use_srtp(SSL *ssl, const char *profiles);
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | srtp.h | 32 /* AEAD SRTP protection profiles from RFC 7714 */ 38 __owur int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles); 39 __owur int SSL_set_tlsext_use_srtp(SSL *ssl, const char *profiles);
|
/third_party/skia/third_party/externals/harfbuzz/test/subset/ |
H A D | subset_test_suite.py | 54 self.profiles = [] 73 for profile in self.profiles: 74 profile = os.path.join(self._base_path(), "profiles", profile) 84 "PROFILES:": self.profiles,
|
/third_party/astc-encoder/Test/testlib/ |
H A D | testset.py | 50 def __init__(self, name, rootDir, profiles, formats, imageFilter=None): 57 profiles (list(str)): The ASTC profiles to allow. 83 if image.colorProfile not in profiles:
|
/third_party/node/deps/v8/src/profiler/ |
H A D | cpu-profiler.cc | 109 ProfilerCodeObserver* code_observer, CpuProfilesCollection* profiles) in ProfilerEventsProcessor() 113 profiles_(profiles), in ProfilerEventsProcessor() 123 ProfilerCodeObserver* code_observer, CpuProfilesCollection* profiles, in SamplingEventsProcessor() 125 : ProfilerEventsProcessor(isolate, symbolizer, code_observer, profiles), in SamplingEventsProcessor() 424 // The count of profiles doesn't depend on a security token. in GetProfilesCount() 425 return static_cast<int>(profiles_->profiles()->size()); in GetProfilesCount() 430 return profiles_->profiles()->at(index).get(); in GetProfile() 442 if (profiles_->profiles()->empty() && !is_profiling_) { in DeleteProfile() 531 // maintained with zero profiles after the code map is cleared. in ~CpuProfiler() 107 ProfilerEventsProcessor( Isolate* isolate, Symbolizer* symbolizer, ProfilerCodeObserver* code_observer, CpuProfilesCollection* profiles) ProfilerEventsProcessor() argument 121 SamplingEventsProcessor( Isolate* isolate, Symbolizer* symbolizer, ProfilerCodeObserver* code_observer, CpuProfilesCollection* profiles, base::TimeDelta period, bool use_precise_sampling) SamplingEventsProcessor() argument
|
H A D | cpu-profiler.h | 189 CpuProfilesCollection* profiles); 219 CpuProfilesCollection* profiles, 327 CpuProfilesCollection* profiles, Symbolizer* test_symbolizer, 388 // Computes a sampling interval sufficient to accomodate attached profiles. 391 // child profiles.
|
/third_party/astc-encoder/Test/ |
H A D | astc_test_image.py | 310 parser.add_argument("--color-profile", dest="profiles", default="all", 376 args.profiles = astcProfile[:-1] if args.profiles == "all" \ 377 else [args.profiles] 416 args.profiles, args.formats, args.testImage)
|
/third_party/pulseaudio/src/modules/bluetooth/ |
H A D | module-bluez5-device.c | 2048 pa_hashmap_put(output_port->profiles, cp->name, cp); in create_card_profile() 2060 pa_hashmap_put(input_port->profiles, cp->name, cp); in create_card_profile() 2072 pa_hashmap_put(input_port->profiles, cp->name, cp); in create_card_profile() 2073 pa_hashmap_put(output_port->profiles, cp->name, cp); in create_card_profile() 2085 pa_hashmap_put(input_port->profiles, cp->name, cp); in create_card_profile() 2086 pa_hashmap_put(output_port->profiles, cp->name, cp); in create_card_profile() 2098 pa_hashmap_put(input_port->profiles, cp->name, cp); in create_card_profile() 2099 pa_hashmap_put(output_port->profiles, cp->name, cp); in create_card_profile() 2111 pa_hashmap_put(input_port->profiles, cp->name, cp); in create_card_profile() 2112 pa_hashmap_put(output_port->profiles, c in create_card_profile() [all...] |
/third_party/noto-cjk/google-fonts/ |
H A D | hotfix.py | 24 from fontbakery.profiles.googlefonts import com_google_fonts_check_font_names 25 from fontbakery.profiles.googlefonts_conditions import expected_font_names
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
H A D | vktApiBufferMemoryRequirementsTests.cpp | 757 static VkVideoProfileListInfoKHR profiles; in chainVkStructure() local 758 profiles.sType = VK_STRUCTURE_TYPE_VIDEO_PROFILE_LIST_INFO_KHR; in chainVkStructure() 759 profiles.pNext = pNext; in chainVkStructure() 762 profiles.profileCount = 2u; in chainVkStructure() 763 profiles.pProfiles = videoProfiles; in chainVkStructure() 767 profiles.profileCount = 1u; in chainVkStructure() 768 profiles.pProfiles = &videoProfiles[0]; in chainVkStructure() 772 profiles.profileCount = 1u; in chainVkStructure() 773 profiles.pProfiles = &videoProfiles[1]; in chainVkStructure() 775 return &profiles; in chainVkStructure() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/ |
H A D | vktApiBufferMemoryRequirementsTests.cpp | 755 static VkVideoProfileListInfoKHR profiles; in chainVkStructure() local 756 profiles.sType = VK_STRUCTURE_TYPE_VIDEO_PROFILE_LIST_INFO_KHR; in chainVkStructure() 757 profiles.pNext = pNext; in chainVkStructure() 760 profiles.profileCount = 2u; in chainVkStructure() 761 profiles.pProfiles = videoProfiles; in chainVkStructure() 765 profiles.profileCount = 1u; in chainVkStructure() 766 profiles.pProfiles = &videoProfiles[0]; in chainVkStructure() 770 profiles.profileCount = 1u; in chainVkStructure() 771 profiles.pProfiles = &videoProfiles[1]; in chainVkStructure() 773 return &profiles; in chainVkStructure() [all...] |
/third_party/pulseaudio/src/modules/alsa/ |
H A D | module-alsa-card.c | 109 /* dynamic profile priority bonus, for all alsa profiles, the original priority 111 bonus. So far there are 2 kinds of alsa profiles, one is from alsa ucm, the 149 PA_HASHMAP_FOREACH(ap, u->profile_set->profiles, state) { in add_profiles() 193 static void add_disabled_profile(pa_hashmap *profiles) { in add_disabled_profile() argument 202 pa_hashmap_put(profiles, p->name, p); in add_disabled_profile() 458 /* Update profile availabilities. Ideally we would mark all profiles in report_jack_state() 482 * The rest profiles will not be marked unavailable and will not be in report_jack_state() 489 PA_HASHMAP_FOREACH(profile, u->card->profiles, state) { in report_jack_state() 500 if (!pa_hashmap_get(port->profiles, profile->name)) in report_jack_state() 528 * has an updated view of all profiles' availabilitie in report_jack_state() [all...] |