/third_party/ffmpeg/libavcodec/ |
D | aacps_common.c | 72 * @param ps pointer to the Parametric Stereo context \ 77 static int read_ ## PAR ## _data(AVCodecContext *avctx, GetBitContext *gb, PSCommonContext *ps, \ 80 int b, num = ps->nr_ ## PAR ## _par; \ 83 int e_prev = e ? e - 1 : ps->num_env_old - 1; \ 108 READ_PAR_DATA(iid, huff_offset[table_idx], 0, FFABS(ps->iid_par[e][b]) > 7 + 8 * ps->iid_quan… 109 READ_PAR_DATA(icc, huff_offset[table_idx], 0, ps->icc_par[e][b] > 7U, 9, 2) 112 static int ps_read_extension_data(GetBitContext *gb, PSCommonContext *ps, in ps_read_extension_data() argument 121 ps->enable_ipdopd = get_bits1(gb); in ps_read_extension_data() 122 if (ps->enable_ipdopd) { in ps_read_extension_data() 123 for (e = 0; e < ps->num_env; e++) { in ps_read_extension_data() [all …]
|
D | hevc_parser.c | 43 HEVCParamSets ps; member 58 HEVCParamSets *ps = &ctx->ps; in hevc_parse_slice_header() local 77 if (pps_id >= HEVC_MAX_PPS_COUNT || !ps->pps_list[pps_id]) { in hevc_parse_slice_header() 81 ps->pps = (HEVCPPS*)ps->pps_list[pps_id]->data; in hevc_parse_slice_header() 83 if (ps->pps->sps_id >= HEVC_MAX_SPS_COUNT || !ps->sps_list[ps->pps->sps_id]) { in hevc_parse_slice_header() 84 av_log(avctx, AV_LOG_ERROR, "SPS id out of range: %d\n", ps->pps->sps_id); in hevc_parse_slice_header() 87 if (ps->sps != (HEVCSPS*)ps->sps_list[ps->pps->sps_id]->data) { in hevc_parse_slice_header() 88 ps->sps = (HEVCSPS*)ps->sps_list[ps->pps->sps_id]->data; in hevc_parse_slice_header() 89 ps->vps = (HEVCVPS*)ps->vps_list[ps->sps->vps_id]->data; in hevc_parse_slice_header() 91 ow = &ps->sps->output_window; in hevc_parse_slice_header() [all …]
|
D | hevc_filter.c | 58 offset = s->ps.pps->cb_qp_offset; in chroma_tc() 60 offset = s->ps.pps->cr_qp_offset; in chroma_tc() 63 if (s->ps.sps->chroma_format_idc == 1) { in chroma_tc() 81 int ctb_size_mask = (1 << s->ps.sps->log2_ctb_size) - 1; in get_qPy_pred() 82 int MinCuQpDeltaSizeMask = (1 << (s->ps.sps->log2_ctb_size - in get_qPy_pred() 83 s->ps.pps->diff_cu_qp_delta_depth)) - 1; in get_qPy_pred() 86 int min_cb_width = s->ps.sps->min_cb_width; in get_qPy_pred() 87 int x_cb = xQgBase >> s->ps.sps->log2_min_cb_size; in get_qPy_pred() 88 int y_cb = yQgBase >> s->ps.sps->log2_min_cb_size; in get_qPy_pred() 115 av_assert2(qPy_a >= -s->ps.sps->qp_bd_offset && qPy_a < 52); in get_qPy_pred() [all …]
|
D | hevcdec.c | 160 if (s->ps.sps->chroma_format_idc != 0) { in pred_weight_table() 176 if (s->ps.sps->chroma_format_idc != 0) { in pred_weight_table() 220 if (s->ps.sps->chroma_format_idc != 0) { in pred_weight_table() 262 const HEVCSPS *sps = s->ps.sps; in decode_lt_rps() 320 const HEVCParamSets *ps = &s->ps; in export_stream_params() local 321 const HEVCVPS *vps = (const HEVCVPS*)ps->vps_list[sps->vps_id]->data; in export_stream_params() 482 s->ps.sps = NULL; in set_sps() 483 s->ps.vps = NULL; in set_sps() 524 s->ps.sps = sps; in set_sps() 525 s->ps.vps = (HEVCVPS*) s->ps.vps_list[s->ps.sps->vps_id]->data; in set_sps() [all …]
|
D | aacenc_pred.c | 64 static inline void predict(PredictorState *ps, float *coef, float *rcoef, int set) in predict() argument 69 const float k1 = ps->k1; in predict() 70 const float r0 = ps->r0, r1 = ps->r1; in predict() 71 const float cor0 = ps->cor0, cor1 = ps->cor1; in predict() 72 const float var0 = ps->var0, var1 = ps->var1; in predict() 73 const float e0 = *coef - ps->x_est; in predict() 79 ps->cor1 = flt16_trunc(alpha * cor1 + r1 * e1); in predict() 80 ps->var1 = flt16_trunc(alpha * var1 + 0.5f * (r1 * r1 + e1 * e1)); in predict() 81 ps->cor0 = flt16_trunc(alpha * cor0 + r0 * e0); in predict() 82 ps->var0 = flt16_trunc(alpha * var0 + 0.5f * (r0 * r0 + e0 * e0)); in predict() [all …]
|
D | hevc_mvs.c | 46 int x0b = av_mod_uintp2(x0, s->ps.sps->log2_ctb_size); in ff_hevc_set_neighbour_available() 47 int y0b = av_mod_uintp2(y0, s->ps.sps->log2_ctb_size); in ff_hevc_set_neighbour_available() 53 (x0b + nPbW == 1 << s->ps.sps->log2_ctb_size) ? in ff_hevc_set_neighbour_available() 68 s->ps.pps->min_tb_addr_zs[(y) * (s->ps.sps->tb_mask+2) + (x)] in z_scan_block_avail() 70 int xCurr_ctb = xCurr >> s->ps.sps->log2_ctb_size; in z_scan_block_avail() 71 int yCurr_ctb = yCurr >> s->ps.sps->log2_ctb_size; in z_scan_block_avail() 72 int xN_ctb = xN >> s->ps.sps->log2_ctb_size; in z_scan_block_avail() 73 int yN_ctb = yN >> s->ps.sps->log2_ctb_size; in z_scan_block_avail() 77 int Curr = MIN_TB_ADDR_ZS((xCurr >> s->ps.sps->log2_min_tb_size) & s->ps.sps->tb_mask, in z_scan_block_avail() 78 (yCurr >> s->ps.sps->log2_min_tb_size) & s->ps.sps->tb_mask); in z_scan_block_avail() [all …]
|
/third_party/glslang/Test/baseResults/ |
D | hlsl.PointSize.geom.out | 10 0:8 'ps' ( in 3-element array of uint) 11 0:8 'OutputStream' ( out structure{ temp float ps}) 16 0:? 'OutputStream.ps' ( out float PointSize) 17 0:10 ps: direct index for structure ( temp float) 18 0:10 's' ( temp structure{ temp float ps}) 26 0:? 'ps' ( temp 3-element array of uint) 27 0:? 'ps' ( in 3-element array of uint PointSize) 29 0:? 'ps' ( temp 3-element array of uint) 30 0:? 'OutputStream' ( temp structure{ temp float ps}) 32 0:? 'ps' ( in 3-element array of uint PointSize) [all …]
|
/third_party/flutter/skia/third_party/externals/freetype/docs/ |
D | formats.txt | 13 PS a text header, followed by binary or text data 21 formats. `PS' indicates third-order, `TT' second-order Bézier 33 transformation matrix, and `TYPE_0' for PS fonts which are to be 80 SFNT PS TYPE_1 --- type1 Type 1 GX Font Format 82 SFNT PS TYPE_1 CID cid 5180.sfnt.pdf (for the Mac) 84 SFNT PS CFF --- cff OT spec, 5176.CFF.pdf 86 SFNT PS CFF CID cff OT spec, 5176.CFF.pdf 87 SFNT PS CFF SYNTHETIC --- OT spec, 5176.CFF.pdf 88 SFNT PS CFF2 --- cff OT spec 1.8 100 --- PS TYPE_1 --- type1 T1_SPEC.pdf [all …]
|
/third_party/pcre2/pcre2/testdata/ |
D | testinput5 | 355 X\=ps 356 Xa\=ps 357 Xaa\=ps 358 Xaaa\=ps 359 Xaaaa\=ps 362 X\=ps 363 Xa\=ps 364 Xaa\=ps 365 Xaaa\=ps 366 Xaaaa\=ps [all …]
|
/third_party/freetype/docs/ |
D | formats.txt | 13 PS a text header, followed by binary or text data 21 formats. `PS' indicates third-order, `TT' second-order Bézier 33 transformation matrix, and `TYPE_0' for PS fonts which are to be 80 SFNT PS TYPE_1 --- type1 Type 1 GX Font Format 82 SFNT PS TYPE_1 CID cid 5180.sfnt.pdf (for the Mac) [3] 83 SFNT PS CFF --- cff OT spec, 5176.CFF.pdf 85 SFNT PS CFF CID cff OT spec, 5176.CFF.pdf 86 SFNT PS CFF SYNTHETIC --- OT spec, 5176.CFF.pdf 87 SFNT PS CFF2 --- cff OT spec 1.8 105 --- PS TYPE_1 --- type1 T1_SPEC.pdf [all …]
|
/third_party/skia/third_party/externals/freetype/docs/ |
D | formats.txt | 13 PS a text header, followed by binary or text data 21 formats. `PS' indicates third-order, `TT' second-order Bézier 33 transformation matrix, and `TYPE_0' for PS fonts which are to be 80 SFNT PS TYPE_1 --- type1 Type 1 GX Font Format 82 SFNT PS TYPE_1 CID cid 5180.sfnt.pdf (for the Mac) [3] 83 SFNT PS CFF --- cff OT spec, 5176.CFF.pdf 85 SFNT PS CFF CID cff OT spec, 5176.CFF.pdf 86 SFNT PS CFF SYNTHETIC --- OT spec, 5176.CFF.pdf 87 SFNT PS CFF2 --- cff OT spec 1.8 105 --- PS TYPE_1 --- type1 T1_SPEC.pdf [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | VOPInstructions.td | 137 class VOP3_Real <VOP_Pseudo ps, int EncodingFamily> : 138 InstSI <ps.OutOperandList, ps.InOperandList, ps.Mnemonic # ps.AsmOperands, []>, 139 SIMCInstr <ps.PseudoInstr, EncodingFamily> { 145 let Constraints = ps.Constraints; 146 let DisableEncoding = ps.DisableEncoding; 149 let SubtargetPredicate = ps.SubtargetPredicate; 150 let OtherPredicates = ps.OtherPredicates; 151 let AsmMatchConverter = ps.AsmMatchConverter; 152 let AsmVariantName = ps.AsmVariantName; 153 let Constraints = ps.Constraints; [all …]
|
D | SMInstructions.td | 48 class SM_Real <SM_Pseudo ps> 49 : InstSI<ps.OutOperandList, ps.InOperandList, ps.Mnemonic # ps.AsmOperands, []> { 55 let SubtargetPredicate = ps.SubtargetPredicate; 56 let AsmMatchConverter = ps.AsmMatchConverter; 62 bits<1> imm = !if(ps.has_offset, ps.offset_is_imm, 0); 415 class SMRD_Real_si <bits<5> op, SM_Pseudo ps> 416 : SM_Real<ps> 417 , SIMCInstr<ps.PseudoInstr, SIEncodingFamily.SI> 423 let Inst{7-0} = !if(ps.has_offset, offset{7-0}, ?); 425 let Inst{14-9} = !if(ps.has_sbase, sbase{6-1}, ?); [all …]
|
D | VOP2Instructions.td | 79 class VOP2_Real <VOP2_Pseudo ps, int EncodingFamily> : 80 InstSI <ps.OutOperandList, ps.InOperandList, ps.Mnemonic # ps.AsmOperands, []>, 81 SIMCInstr <ps.PseudoInstr, EncodingFamily> { 86 let Constraints = ps.Constraints; 87 let DisableEncoding = ps.DisableEncoding; 90 let SubtargetPredicate = ps.SubtargetPredicate; 91 let AsmMatchConverter = ps.AsmMatchConverter; 92 let AsmVariantName = ps.AsmVariantName; 93 let Constraints = ps.Constraints; 94 let DisableEncoding = ps.DisableEncoding; [all …]
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
D | pixelshader9.h | 75 NinePixelShader9_UpdateKey( struct NinePixelShader9 *ps, in NinePixelShader9_UpdateKey() argument 87 key = samplers_shadow & ps->sampler_mask; in NinePixelShader9_UpdateKey() 88 samplers_fetch4 &= ps->sampler_mask; in NinePixelShader9_UpdateKey() 90 if (unlikely(ps->byte_code.version < 0x20)) { in NinePixelShader9_UpdateKey() 92 uint32_t m = ps->sampler_mask; in NinePixelShader9_UpdateKey() 99 …/* Note: For ps 1.X, only samplers 0 1 2 and 3 are available (except 1.4 where 4 and 5 are availab… in NinePixelShader9_UpdateKey() 100 * ps < 1.4: samplers_shadow 4b, samplers_ps1_types 8b, projected 8b in NinePixelShader9_UpdateKey() 101 * ps 1.4: samplers_shadow 6b, samplers_ps1_types 12b in NinePixelShader9_UpdateKey() 102 * Tot ps X.X samplers_shadow + extra: 20b */ in NinePixelShader9_UpdateKey() 103 …assert((ps->byte_code.version < 0x14 && !(ps->sampler_mask & 0xFFF0)) || !(ps->sampler_mask & 0xFF… in NinePixelShader9_UpdateKey() [all …]
|
/third_party/ltp/testcases/kernel/mce-test/tsrc/ |
D | tsimpleinj.c | 27 int PS; variable 44 if (madvise(page, PS, MADV_POISON) != 0) { in testmem() 80 PS = getpagesize(); in main() 90 page = mmap(NULL, PS, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_POPULATE, 0, 0); in main() 93 page = mmap(NULL, PS, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_LOCKED, 0, 0); in main() 98 page = mmap(NULL, PS, PROT_READ, MAP_SHARED|MAP_POPULATE, fd, 0); in main() 105 char *tmp = malloc(PS); in main() 107 memset(tmp, 0xff, PS); in main() 108 write(fd, tmp, PS); in main() 110 page = mmap(NULL, PS, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0); in main() [all …]
|
/third_party/ltp/testcases/kernel/mem/thp/ |
D | thp02.c | 44 static int ps; variable 49 * mremap(p, size-ps, size-ps, flag, p2); 50 * mremap(p, size-ps, size-ps, flag, p2+ps); 51 * mremap(p+ps, size-ps, size-ps, flag, p2); 52 * mremap(p+ps, size-ps, size-ps, flag, p2+ps); 65 old_addr = p1 + ps * (i >> 1); in do_child() 66 new_addr = p2 + ps * (i & 1); in do_child() 67 remap_size = size - ps; in do_child() 107 ps = sysconf(_SC_PAGESIZE); in setup()
|
/third_party/flutter/skia/third_party/externals/sdl/visualtest/src/linux/ |
D | linux_process.c | 73 SDL_GetProcessExitStatus(SDL_ProcessInfo* pinfo, SDL_ProcessExitStatus* ps) in SDL_GetProcessExitStatus() argument 81 if(!ps) in SDL_GetProcessExitStatus() 83 SDLTest_LogError("ps argument cannot be NULL"); in SDL_GetProcessExitStatus() 94 ps->exit_status = -1; in SDL_GetProcessExitStatus() 95 ps->exit_success = 1; in SDL_GetProcessExitStatus() 99 ps->exit_success = WIFEXITED(status); in SDL_GetProcessExitStatus() 100 ps->exit_status = WEXITSTATUS(status); in SDL_GetProcessExitStatus() 131 SDL_QuitProcess(SDL_ProcessInfo* pinfo, SDL_ProcessExitStatus* ps) in SDL_QuitProcess() argument 140 if(!ps) in SDL_QuitProcess() 142 SDLTest_LogError("ps argument cannot be NULL"); in SDL_QuitProcess() [all …]
|
/third_party/openssl/crypto/property/ |
D | property_string.c | 55 static void property_free(PROPERTY_STRING *ps) in property_free() argument 57 OPENSSL_free(ps); in property_free() 123 PROPERTY_STRING *ps = OPENSSL_malloc(sizeof(*ps) + l); in new_property_string() local 125 if (ps != NULL) { in new_property_string() 126 memcpy(ps->body, s, l + 1); in new_property_string() 127 ps->s = ps->body; in new_property_string() 128 ps->idx = ++*pidx; in new_property_string() 129 if (ps->idx == 0) { in new_property_string() 130 OPENSSL_free(ps); in new_property_string() 134 return ps; in new_property_string() [all …]
|
/third_party/ltp/testcases/kernel/mem/vma/ |
D | vma01.c | 14 * an unpatched kernel, there is a single 6*ps VMA for the child 19 * On a patched kernel, there are two 3*ps VMAs like this: 68 static unsigned long ps; variable 77 ps = sysconf(_SC_PAGE_SIZE); in main() 96 t = mmap(p, 3 * ps, PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, -1, 0); in check_vma() 99 memset(t, 1, ps); in check_vma() 105 memset(t, 2, ps); in check_vma() 106 u = mmap(t + 3 * ps, 3 * ps, PROT_WRITE, in check_vma() 115 memset(u, 2, ps); in check_vma() 120 if (x == t + 3 * ps) in check_vma() [all …]
|
/third_party/mesa3d/src/amd/vulkan/ |
D | radv_shader_info.c | 124 info->ps.reads_persp_center = true; in gather_intrinsic_info() 126 info->ps.reads_persp_centroid = true; in gather_intrinsic_info() 128 info->ps.reads_persp_sample = true; in gather_intrinsic_info() 134 info->ps.reads_linear_center = true; in gather_intrinsic_info() 136 info->ps.reads_linear_centroid = true; in gather_intrinsic_info() 138 info->ps.reads_linear_sample = true; in gather_intrinsic_info() 144 info->ps.needs_sample_positions = true; in gather_intrinsic_info() 161 info->ps.reads_frag_coord_mask |= nir_ssa_def_components_read(&instr->dest.ssa); in gather_intrinsic_info() 164 info->ps.reads_sample_pos_mask |= nir_ssa_def_components_read(&instr->dest.ssa); in gather_intrinsic_info() 272 info->ps.float16_shaded_mask |= ((1ull << attrib_count) - 1) << location; in mark_16bit_ps_input() [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/visualtest/src/windows/ |
D | windows_process.c | 110 SDL_GetProcessExitStatus(SDL_ProcessInfo* pinfo, SDL_ProcessExitStatus* ps) in SDL_GetProcessExitStatus() argument 120 if(!ps) in SDL_GetProcessExitStatus() 122 SDLTest_LogError("ps cannot be NULL"); in SDL_GetProcessExitStatus() 135 ps->exit_status = -1; in SDL_GetProcessExitStatus() 137 ps->exit_status = exit_status; in SDL_GetProcessExitStatus() 138 ps->exit_success = 1; in SDL_GetProcessExitStatus() 193 SDL_QuitProcess(SDL_ProcessInfo* pinfo, SDL_ProcessExitStatus* ps) in SDL_QuitProcess() argument 201 if(!ps) in SDL_QuitProcess() 203 SDLTest_LogError("ps argument cannot be NULL"); in SDL_QuitProcess() 228 if(!SDL_GetProcessExitStatus(pinfo, ps)) in SDL_QuitProcess() [all …]
|
/third_party/ffmpeg/libavcodec/mips/ |
D | hevcpred_msa.c | 1911 int hshift = s->ps.sps->hshift[c_idx]; in ff_intra_pred_8_16x16_msa() 1912 int vshift = s->ps.sps->vshift[c_idx]; in ff_intra_pred_8_16x16_msa() 1914 int size_in_tbs_h = size_in_luma_h >> s->ps.sps->log2_min_tb_size; in ff_intra_pred_8_16x16_msa() 1916 int size_in_tbs_v = size_in_luma_v >> s->ps.sps->log2_min_tb_size; in ff_intra_pred_8_16x16_msa() 1919 int x_tb = (x0 >> s->ps.sps->log2_min_tb_size) & s->ps.sps->tb_mask; in ff_intra_pred_8_16x16_msa() 1920 int y_tb = (y0 >> s->ps.sps->log2_min_tb_size) & s->ps.sps->tb_mask; in ff_intra_pred_8_16x16_msa() 1923 s->ps.pps->min_tb_addr_zs[(y_tb) * (s->ps.sps->tb_mask + 2) + (x_tb)]; in ff_intra_pred_8_16x16_msa() 1928 int min_pu_width = s->ps.sps->min_pu_width; in ff_intra_pred_8_16x16_msa() 1944 s->ps.pps->min_tb_addr_zs[((y_tb + size_in_tbs_v) & s->ps.sps->tb_mask) * in ff_intra_pred_8_16x16_msa() 1945 (s->ps.sps->tb_mask + 2) + (x_tb - 1)]; in ff_intra_pred_8_16x16_msa() [all …]
|
/third_party/skia/third_party/externals/icu/patches/ |
D | locale_google.patch | 1453 - PS{"Palestynse Grondgebiede"} 1454 + PS{"Palestina"} 1464 - PS{"Palestina"} 1510 - PS{"የፍልስጤም ግዛት"} 1511 + PS{"ፍልስጥኤም"} 1521 - PS{"ፍልስጥኤም"} 1568 - PS{"الأراضي الفلسطينية"} 1569 + PS{"فلسطين"} 1580 - PS{"فلسطين"} 1645 - PS{"ফিলিস্তিন অঞ্চল"} [all …]
|
/third_party/ltp/testcases/kernel/syscalls/mmap/ |
D | mmap10.c | 74 static long ps; variable 126 x = mmap(NULL, SIZE + SIZE - ps, PROT_READ | PROT_WRITE, in mmapzero() 131 x = mmap(NULL, SIZE + SIZE - ps, PROT_READ | PROT_WRITE, in mmapzero() 138 if (madvise(x, SIZE + SIZE - ps, MADV_MERGEABLE) == -1) in mmapzero() 148 if (munmap(x + SIZE + ps, SIZE - ps - ps) == -1) in mmapzero() 159 if (munmap(x + SIZE + ps, SIZE - ps - ps) == -1) in mmapzero() 168 if (munmap(x + SIZE + ps, SIZE - ps - ps) == -1) in mmapzero() 178 if (munmap(x, SIZE + SIZE - ps) == -1) in mmapzero() 198 if ((ps = sysconf(_SC_PAGESIZE)) == -1) in setup()
|