Home
last modified time | relevance | path

Searched refs:pref (Results 1 - 25 of 65) sorted by relevance

123

/third_party/libdrm/nouveau/
H A Dbufctx.c85 struct nouveau_bufref_priv *pref; in nouveau_bufctx_del() local
89 while ((pref = pctx->free)) { in nouveau_bufctx_del()
90 pctx->free = pref->next; in nouveau_bufctx_del()
91 free(pref); in nouveau_bufctx_del()
103 struct nouveau_bufref_priv *pref; in nouveau_bufctx_reset() local
105 while ((pref = pbin->list)) { in nouveau_bufctx_reset()
106 DRMLISTDELINIT(&pref->base.thead); in nouveau_bufctx_reset()
107 pbin->list = pref->next; in nouveau_bufctx_reset()
108 pref->next = pctx->free; in nouveau_bufctx_reset()
109 pctx->free = pref; in nouveau_bufctx_reset()
122 struct nouveau_bufref_priv *pref = pctx->free; nouveau_bufctx_refn() local
[all...]
/third_party/ffmpeg/libavfilter/x86/
H A Dvf_tinterlace_init.c31 ptrdiff_t pref, int clip_max);
34 ptrdiff_t pref, int clip_max);
37 ptrdiff_t pref, int clip_max);
41 ptrdiff_t pref, int clip_max);
44 ptrdiff_t pref, int clip_max);
47 ptrdiff_t pref, int clip_max);
51 ptrdiff_t pref, int clip_max);
55 ptrdiff_t pref, int clip_max);
H A Dvf_interlace.asm80 cglobal lowpass_line, 5, 5, 7, dst, h, src, mref, pref
83 cglobal lowpass_line_16, 5, 5, 7, dst, h, src, mref, pref
89 cglobal lowpass_line_complex, 5, 5, 8, dst, h, src, mref, pref
151 cglobal lowpass_line_complex_12, 5, 5, 8, 16, dst, h, src, mref, pref, clip_max
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_urllib.py82 pref = import_mod.prefix
88 names.extend([Name(name[0], prefix=pref), Comma()])
89 names.append(Name(MAPPING[import_mod.value][-1][0], prefix=pref))
98 pref = mod_member.prefix
112 mod_member.replace(Name(new_name, prefix=pref))
151 names.extend(handle_name(elt, pref))
153 names.extend(handle_name(elts[-1], pref))
/third_party/ltp/testcases/open_posix_testsuite/include/
H A Dnoatime.h25 int strpref(const char *str, const char *pref) in strpref() argument
29 for (i = 0; pref[i] != '\0'; i++) { in strpref()
35 if (str[i] != pref[i]) in strpref()
/third_party/ffmpeg/libavfilter/
H A Dvf_tinterlace.c105 ptrdiff_t mref, ptrdiff_t pref, int clip_max) in lowpass_line_c()
108 const uint8_t *srcp_below = srcp + pref; in lowpass_line_c()
119 ptrdiff_t mref, ptrdiff_t pref, int clip_max) in lowpass_line_c_16()
124 const uint16_t *srcp_below = srcp + pref / 2; in lowpass_line_c_16()
137 ptrdiff_t mref, ptrdiff_t pref, int clip_max) in lowpass_line_complex_c()
140 const uint8_t *srcp_below = srcp + pref; in lowpass_line_complex_c()
142 const uint8_t *srcp_below2 = srcp + pref * 2; in lowpass_line_complex_c()
164 ptrdiff_t mref, ptrdiff_t pref, int clip_max) in lowpass_line_complex_c_16()
169 const uint16_t *srcp_below = srcp + pref / 2; in lowpass_line_complex_c_16()
171 const uint16_t *srcp_below2 = srcp + pref; in lowpass_line_complex_c_16()
104 lowpass_line_c(uint8_t *dstp, ptrdiff_t width, const uint8_t *srcp, ptrdiff_t mref, ptrdiff_t pref, int clip_max) lowpass_line_c() argument
118 lowpass_line_c_16(uint8_t *dst8, ptrdiff_t width, const uint8_t *src8, ptrdiff_t mref, ptrdiff_t pref, int clip_max) lowpass_line_c_16() argument
136 lowpass_line_complex_c(uint8_t *dstp, ptrdiff_t width, const uint8_t *srcp, ptrdiff_t mref, ptrdiff_t pref, int clip_max) lowpass_line_complex_c() argument
163 lowpass_line_complex_c_16(uint8_t *dst8, ptrdiff_t width, const uint8_t *src8, ptrdiff_t mref, ptrdiff_t pref, int clip_max) lowpass_line_complex_c_16() argument
340 ptrdiff_t pref = src_linesize[plane]; copy_picture_field() local
[all...]
H A Dtinterlace.h79 ptrdiff_t mref, ptrdiff_t pref, int clip_max);
/third_party/curl/scripts/
H A Dchecksrc.pl199 my $pref = (' ' x $col);
200 print "${pref}^\n";
652 my $pref=$1;
654 if($pref =~ / *\#/) {
658 elsif($pref =~ /\/\*/) {
662 elsif($pref =~ /[\"\']/) {
666 if($pref =~ /\"/) {
669 elsif($pref =~ /\'$/) {
677 checkwarn("COMMANOSPACE", $line, length($pref)+1, $file, $l,
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationServiceTest.java499 String[] pref = Collator.getKeywordValuesForLocale("collation", loc, true); in TestGetKeywordValues()
501 if (!arrayContains(pref, expected[j])) { in TestGetKeywordValues()
510 if (pref.length == all.length) { in TestGetKeywordValues()
512 for (int j = 0; j < pref.length; j++) { in TestGetKeywordValues()
515 if (pref[j].equals(all[k])) { in TestGetKeywordValues()
528 + " got:" + Arrays.toString(all) + " expected:" + Arrays.toString(pref)); in TestGetKeywordValues()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
H A DCollationServiceTest.java500 String[] pref = Collator.getKeywordValuesForLocale("collation", loc, true); in TestGetKeywordValues()
502 if (!arrayContains(pref, expected[j])) { in TestGetKeywordValues()
511 if (pref.length == all.length) { in TestGetKeywordValues()
513 for (int j = 0; j < pref.length; j++) { in TestGetKeywordValues()
516 if (pref[j].equals(all[k])) { in TestGetKeywordValues()
529 + " got:" + Arrays.toString(all) + " expected:" + Arrays.toString(pref)); in TestGetKeywordValues()
/third_party/elfutils/libcpu/
H A Di386_disasm.c114 #define prefbit(pref) has_##pref = 1 << idx_##pref
151 #define newpref(pref) [idx_##pref] = prefix_##pref
171 #define newpref(pref) [idx_##pref] = #pref
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dmbo_ap.c49 info->pref = buf[len - 2]; in mbo_ap_parse_non_pref_chan()
77 " non-preferred channel list (op class %u, pref %u, reason code %u, channels %s)", in mbo_ap_parse_non_pref_chan()
78 MAC2STR_SEC(sta->addr), info->op_class, info->pref, in mbo_ap_parse_non_pref_chan()
136 count, info->op_class, info->pref, in mbo_ap_get_info()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dmbo_ap.c49 info->pref = buf[len - 2]; in mbo_ap_parse_non_pref_chan()
77 " non-preferred channel list (op class %u, pref %u, reason code %u, channels %s)", in mbo_ap_parse_non_pref_chan()
78 MAC2STR(sta->addr), info->op_class, info->pref, in mbo_ap_parse_non_pref_chan()
136 count, info->op_class, info->pref, in mbo_ap_get_info()
/third_party/curl/src/
H A Dtool_findfile.c70 const char pref[2] = { '.', '_' }; in checkhome() local
75 c = curl_maprintf("%s" DIR_CHAR "%c%s", home, pref[i], &fname[1]); in checkhome()
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/selectors/
H A Dattribute.js155 var pref = this.preferredQuoteMark(options);
156 if (pref === Attribute.NO_QUOTE) {
165 return pref;
/third_party/curl/tests/
H A Dtest1173.pl255 my ($pref, $symbol) = ($1, $2);
259 elsif($pref !~ /\\fI\z/) {
/third_party/node/deps/npm/lib/commands/
H A Dview.js52 function getFields (d, f, pref) {
54 pref = pref || []
59 const p = pref.concat(k).join('.')
/third_party/icu/icu4c/source/test/cintltst/
H A Dcnmdptst.c841 UEnumeration *pref, *all; in TestGetKeywordValuesForLocale() local
860 pref = NULL; in TestGetKeywordValuesForLocale()
863 pref = ucurr_getKeywordValuesForLocale("currency", loc, true, &status); in TestGetKeywordValuesForLocale()
867 size = uenum_count(pref, &status); in TestGetKeywordValuesForLocale()
872 if ((value = uenum_next(pref, &valueLength, &status)) != NULL && U_SUCCESS(status)) { in TestGetKeywordValuesForLocale()
893 uenum_close(pref); in TestGetKeywordValuesForLocale()
/third_party/backends/japi/
H A DJscanimage.java455 Menu pref = new Menu("Preferences"); in initMenu()
456 mbar.add(pref); in initMenu()
459 pref.add(toolTipsMenuItem); in initMenu()
461 pref.add(units); in initMenu()
828 // be scaled to user's pref.
872 // Show value with user's pref. in setFromControl()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dwnm_sta.c734 " (pref %d) not found in scan results", in compare_scan_neighbor_results()
761 " (pref %d) in different ESS", in compare_scan_neighbor_results()
772 " (pref %d) does not match the current network profile", in compare_scan_neighbor_results()
789 " (pref %d) does not have sufficient signal level (%d)", in compare_scan_neighbor_results()
871 u8 pref) in wnm_add_nei_rep()
896 wpabuf_put_u8(*buf, pref); in wnm_add_nei_rep()
903 u8 pref) in wnm_nei_rep_add_bss()
952 pref); in wnm_nei_rep_add_bss()
958 unsigned int i, pref = 255; in wnm_add_cand_list() local
975 for (i = 0; i < wpa_s->last_scan_res_used && pref; in wnm_add_cand_list()
869 wnm_add_nei_rep(struct wpabuf **buf, const u8 *bssid, u32 bss_info, u8 op_class, u8 chan, u8 phy_type, u8 pref) wnm_add_nei_rep() argument
901 wnm_nei_rep_add_bss(struct wpa_supplicant *wpa_s, struct wpa_bss *bss, struct wpabuf **buf, u8 pref) wnm_nei_rep_add_bss() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dwnm_sta.c751 " (pref %d) not found in scan results", in compare_scan_neighbor_results()
778 " (pref %d) in different ESS", in compare_scan_neighbor_results()
789 " (pref %d) does not match the current network profile", in compare_scan_neighbor_results()
806 " (pref %d) does not have sufficient signal level (%d)", in compare_scan_neighbor_results()
888 u8 pref) in wnm_add_nei_rep()
913 wpabuf_put_u8(*buf, pref); in wnm_add_nei_rep()
920 u8 pref) in wnm_nei_rep_add_bss()
969 pref); in wnm_nei_rep_add_bss()
975 unsigned int i, pref = 255; in wnm_add_cand_list() local
992 for (i = 0; i < wpa_s->last_scan_res_used && pref; in wnm_add_cand_list()
886 wnm_add_nei_rep(struct wpabuf **buf, const u8 *bssid, u32 bss_info, u8 op_class, u8 chan, u8 phy_type, u8 pref) wnm_add_nei_rep() argument
918 wnm_nei_rep_add_bss(struct wpa_supplicant *wpa_s, struct wpa_bss *bss, struct wpabuf **buf, u8 pref) wnm_nei_rep_add_bss() argument
[all...]
/third_party/NuttX/fs/nfs/
H A Dnfs_adapter.c2769 uint32_t pref; in nfs_fsinfo() local
2797 pref = fxdr_unsigned(uint32_t, rep_info->fs_wtpref); in nfs_fsinfo()
2798 if (pref < nmp->nm_wsize) in nfs_fsinfo()
2800 nmp->nm_wsize = (pref + NFS_FABLKSIZE - 1) & ~(NFS_FABLKSIZE - 1); in nfs_fsinfo()
2813 pref = fxdr_unsigned(uint32_t, rep_info->fs_rtpref); in nfs_fsinfo()
2814 if (pref < nmp->nm_rsize) in nfs_fsinfo()
2816 nmp->nm_rsize = (pref + NFS_FABLKSIZE - 1) & ~(NFS_FABLKSIZE - 1); in nfs_fsinfo()
2829 pref = fxdr_unsigned(uint32_t, rep_info->fs_dtpref); in nfs_fsinfo()
2830 if (pref < nmp->nm_readdirsize) in nfs_fsinfo()
2832 nmp->nm_readdirsize = (pref in nfs_fsinfo()
[all...]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/
H A DFeatureTag.java101 pref("Pre-Base Forms"), enum constant
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-shape-complex-indic.cc247 hb_indic_would_substitute_feature_t pref; member
286 indic_plan->pref.init (&plan->map, HB_TAG('p','r','e','f'), zero_context); in data_create_indic()
333 if (indic_plan->pref.would_substitute (glyphs , 2, face) || in consonant_position_from_face()
334 indic_plan->pref.would_substitute (glyphs+1, 2, face)) in consonant_position_from_face()
872 if (indic_plan->pref.would_substitute (glyphs, pref_len, face)) in initial_reordering_consonant_syllable()
1024 /* Ok, this was a 'pref' candidate but didn't form any. in final_reordering_syllable_indic()
1345 * of the <pref> feature. (Note that a font may shape a Ra consonant with in final_reordering_syllable_indic()
1349 * the <pref> feature actually did it... in final_reordering_syllable_indic()
1351 * Reorder pref only if it ligated. */ in final_reordering_syllable_indic()
/third_party/node/deps/openssl/openssl/ssl/
H A Dt1_lib.c601 const uint16_t *pref, *supp; in tls1_shared_group() local
632 tls1_get_supported_groups(s, &pref, &num_pref); in tls1_shared_group()
635 tls1_get_peer_groups(s, &pref, &num_pref); in tls1_shared_group()
640 uint16_t id = pref[i]; in tls1_shared_group()
2206 const uint16_t *pref, size_t preflen, in tls12_shared_sigalgs()
2211 for (i = 0, ptmp = pref; i < preflen; i++, ptmp++) { in tls12_shared_sigalgs()
2233 const uint16_t *pref, *allow, *conf; in tls1_set_shared_sigalgs() local
2253 pref = conf; in tls1_set_shared_sigalgs()
2260 pref = s->s3.tmp.peer_sigalgs; in tls1_set_shared_sigalgs()
2263 nmatch = tls12_shared_sigalgs(s, NULL, pref, prefle in tls1_set_shared_sigalgs()
2205 tls12_shared_sigalgs(SSL *s, const SIGALG_LOOKUP **shsig, const uint16_t *pref, size_t preflen, const uint16_t *allow, size_t allowlen) tls12_shared_sigalgs() argument
[all...]

Completed in 26 milliseconds

123