| /OK3568_Linux_fs/kernel/arch/powerpc/crypto/ |
| H A D | crc32c-vpmsum_asm.S | 17 /* x^261120 mod p(x)` << 1, x^261184 mod p(x)` << 1 */ 20 /* x^260096 mod p(x)` << 1, x^260160 mod p(x)` << 1 */ 23 /* x^259072 mod p(x)` << 1, x^259136 mod p(x)` << 1 */ 26 /* x^258048 mod p(x)` << 1, x^258112 mod p(x)` << 1 */ 29 /* x^257024 mod p(x)` << 1, x^257088 mod p(x)` << 1 */ 32 /* x^256000 mod p(x)` << 1, x^256064 mod p(x)` << 1 */ 35 /* x^254976 mod p(x)` << 1, x^255040 mod p(x)` << 1 */ 38 /* x^253952 mod p(x)` << 1, x^254016 mod p(x)` << 1 */ 41 /* x^252928 mod p(x)` << 1, x^252992 mod p(x)` << 1 */ 44 /* x^251904 mod p(x)` << 1, x^251968 mod p(x)` << 1 */ [all …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/pysh/ |
| H A D | pyshyacc.py | 32 def make_io_redirect(p): argument 34 name, io_number, io_target = p 127 def p_multiple_commands(p): argument 131 if len(p)==2: 132 if p[1] is not None: 133 p[0] = [p[1]] 135 p[0] = [] 137 p[0] = p[1] + [p[2]] 139 def p_complete_command(p): argument 142 if len(p)==3 and p[2] and p[2][1] == '&': [all …]
|
| /OK3568_Linux_fs/buildroot/dl/sox/git/src/ |
| H A D | biquads.c | 21 * 1-pole filters based on code (c) 2000 Chris Bagwell <cbagwell@sprynet.com> 25 * low-pass: output[N] = input[N] * A + output[N-1] * B 27 * A = 1 - X 41 * high-pass: output[N] = A0 * input[N] + A1 * input[N-1] + B1 * output[N-1] 43 * A0 = (1 + X) / 2 44 * A1 = -(1 + X) / 2 69 return lsx_biquad_getopts(effp, argc, argv, 1, 1, 0, 1, 2, "", in hilo1_getopts() 75 priv_t * p = (priv_t *)effp->priv; in hilo2_getopts() local 76 if (argc > 1 && strcmp(argv[1], "-1") == 0) in hilo2_getopts() 77 return hilo1_getopts(effp, argc - 1, argv + 1); in hilo2_getopts() [all …]
|
| H A D | vad.c | 44 case c: p->name = lsx_parse_frequency(optstate.arg, &parseIndex); \ 45 if (p->name < min || *parseIndex) return lsx_usage(effp); \ 50 priv_t * p = (priv_t *)effp->priv; in create() local 51 #define opt_str "+b:N:n:r:f:m:M:h:l:H:L:T:t:s:g:p:" in create() 54 lsx_getopt_init(argc, argv, opt_str, NULL, lsx_getopt_flag_none, 1, &optstate); in create() 56 p->bootTime = .35; in create() 57 p->noiseTcUp = .1; in create() 58 p->noiseTcDown = .01; in create() 59 p->noiseReductionAmount = 1.35; in create() 61 p->measureFreq = 20; in create() [all …]
|
| H A D | spectrogram.c | 39 #define is_p2(x) !(x & (x - 1)) 117 double *window; /* [dft_size + 1] */ 120 double *magnitudes; /* [dft_size / 2 + 1] */ 125 ((double)(cols) * p->step_size * p->block_steps / effp->in_signal.rate) 189 priv_t *p = effp->priv; in getopts() local 195 lsx_getopt_init(argc, argv, "+S:d:x:X:y:Y:z:Z:q:p:W:w:st:c:AarmnlhTo:", in getopts() 196 NULL, lsx_getopt_flag_none, 1, &optstate); in getopts() 198 p->dB_range = 120; in getopts() 199 p->spectrum_points = 249; in getopts() 200 p->perm = 1; in getopts() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/pci/ttpci/ |
| H A D | av7110_ipack.c | 8 void av7110_ipack_reset(struct ipack *p) in av7110_ipack_reset() argument 10 p->found = 0; in av7110_ipack_reset() 11 p->cid = 0; in av7110_ipack_reset() 12 p->plength = 0; in av7110_ipack_reset() 13 p->flag1 = 0; in av7110_ipack_reset() 14 p->flag2 = 0; in av7110_ipack_reset() 15 p->hlength = 0; in av7110_ipack_reset() 16 p->mpeg = 0; in av7110_ipack_reset() 17 p->check = 0; in av7110_ipack_reset() 18 p->which = 0; in av7110_ipack_reset() [all …]
|
| /OK3568_Linux_fs/u-boot/lib/lzma/ |
| H A D | LzmaDec.c | 12 #define kTopValue ((UInt32)1 << kNumTopBits) 15 #define kBitModelTotal (1 << kNumBitModelTotalBits) 22 #define IF_BIT_0(p) ttt = *(p); NORMALIZE; bound = (range >> kNumBitModelTotalBits) * ttt; if (code… argument 23 #define UPDATE_0(p) range = bound; *(p) = (CLzmaProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits… argument 24 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CLzmaProb)(ttt - (ttt >> kNumMoveBits)); argument 25 #define GET_BIT2(p, i, A0, A1) IF_BIT_0(p) \ argument 26 { UPDATE_0(p); i = (i + i); A0; } else \ 27 { UPDATE_1(p); i = (i + i) + 1; A1; } 28 #define GET_BIT(p, i) GET_BIT2(p, i, ; , ;) argument 32 { i = 1; do { TREE_GET_BIT(probs, i); } while (i < limit); i -= limit; } [all …]
|
| /OK3568_Linux_fs/external/mpp/mpp/codec/dec/vp8/ |
| H A D | vp8d_parser.c | 46 bit_ctx->value = (bit_ctx->buffer[0] << 24) + (bit_ctx->buffer[1] << 16) in vp8hwdBoolStart() 67 split = 1 + (((range - 1) * probability) >> 8); in vp8hwdDecodeBool() 74 bit = 1; in vp8hwdDecodeBool() 89 bit_ctx->strmError = 1; in vp8hwdDecodeBool() 119 split = (range + 1) >> 1; in vp8hwdDecodeBool128() 126 bit = 1; in vp8hwdDecodeBool128() 136 range <<= 1; in vp8hwdDecodeBool128() 137 value <<= 1; in vp8hwdDecodeBool128() 142 bit_ctx->strmError = 1; in vp8hwdDecodeBool128() 166 for (bit = bits - 1; bit >= 0; bit--) { in vp8hwdReadBits() [all …]
|
| /OK3568_Linux_fs/external/mpp/mpp/codec/rc/ |
| H A D | rc_model_v2_smt.c | 79 RK_S32 codec_type; // 264: 0 ; 265: 1 135 RK_U16 flag; // 1 - valid 0 - unvaild 136 RK_U16 up_left[2]; // 0 - y idx 1 - x idx 137 RK_U16 down_right[2]; // 0 - y idx 1 - x idx 141 RK_U16 flag; // 1 - valid 0 - unvaild 142 RK_U16 is_move; // 1 - is motion 0 - is motionless 143 RK_U16 up_left[2]; // 0 - y idx 1 - x idx 144 RK_U16 down_right[2]; // 0 - y idx 1 - x idx 162 mb_sta_x = info[k].up_left[1] / 16; in cal_mv_info() 164 mb_end_x = info[k].down_right[1] / 16; in cal_mv_info() [all …]
|
| /OK3568_Linux_fs/kernel/include/trace/hooks/ |
| H A D | sched.h | 33 TP_PROTO(struct task_struct *p, int prev_cpu, int sd_flag, int wake_flags, int *new_cpu), 34 TP_ARGS(p, prev_cpu, sd_flag, wake_flags, new_cpu), 1); 37 TP_PROTO(struct task_struct *p, int prev_cpu, int sd_flag, int wake_flags, int *new_cpu), 38 TP_ARGS(p, prev_cpu, sd_flag, wake_flags, new_cpu), 1); 41 TP_PROTO(int cpu, struct task_struct *p, int *new_cpu), 42 TP_ARGS(cpu, p, new_cpu), 1); 50 TP_PROTO(struct rq *rq, struct task_struct *p, int flags), 51 TP_ARGS(rq, p, flags), 1); 54 TP_PROTO(struct rq *rq, struct task_struct *p, int flags), 55 TP_ARGS(rq, p, flags), 1); [all …]
|
| /OK3568_Linux_fs/external/common_algorithm/misc/lib/arm-rockchip830-linux-uclibcgnueabihf/ |
| HD | librkaudio.so | ... MPEG version2.5 reserved MPEG Version 2 MPEG Version 1 play_mp3_process_impl play_mp3_init_impl [W]%s-%d ... |
| /OK3568_Linux_fs/external/common_algorithm/misc/lib/arm-rockchip830-linux-gnueabihf/ |
| HD | librkaudio.so | ... MPEG version2.5 reserved MPEG Version 2 MPEG Version 1 play_mp3_process_impl play_mp3_init_impl [W]%s-%d ... |
| /OK3568_Linux_fs/external/rockit/mpi/example/common/ |
| H A D | test_comm_imgproc.cpp | 39 static void fill_MPP_FMT_RGB565(RK_U8 *p, RK_U32 R, RK_U32 G, RK_U32 B, RK_U32 be) { in fill_MPP_FMT_RGB565() argument 43 // big endian | byte 0 | byte 1 | in fill_MPP_FMT_RGB565() 44 // little endian | byte 1 | byte 0 | in fill_MPP_FMT_RGB565() 49 p[0] = (val >> 8) & 0xff; in fill_MPP_FMT_RGB565() 50 p[1] = (val >> 0) & 0xff; in fill_MPP_FMT_RGB565() 52 p[0] = (val >> 0) & 0xff; in fill_MPP_FMT_RGB565() 53 p[1] = (val >> 8) & 0xff; in fill_MPP_FMT_RGB565() 57 static void fill_MPP_FMT_BGR565(RK_U8 *p, RK_U32 R, RK_U32 G, RK_U32 B, RK_U32 be) { in fill_MPP_FMT_BGR565() argument 61 // big endian | byte 0 | byte 1 | in fill_MPP_FMT_BGR565() 62 // little endian | byte 1 | byte 0 | in fill_MPP_FMT_BGR565() [all …]
|
| /OK3568_Linux_fs/kernel/net/x25/ |
| H A D | x25_facilities.c | 36 * -1 - Parsing error, caller should drop call and clean up 44 unsigned char *p; in x25_parse_facilities() local 60 if (!pskb_may_pull(skb, 1)) in x25_parse_facilities() 65 if (!pskb_may_pull(skb, 1 + len)) in x25_parse_facilities() 66 return -1; in x25_parse_facilities() 68 p = skb->data + 1; in x25_parse_facilities() 71 switch (*p & X25_FAC_CLASS_MASK) { in x25_parse_facilities() 74 return -1; in x25_parse_facilities() 75 switch (*p) { in x25_parse_facilities() 77 if((p[1] & 0x81) == 0x81) { in x25_parse_facilities() [all …]
|
| /OK3568_Linux_fs/external/libmali/lib/arm-linux-gnueabihf/ |
| HD | libmali-bifrost-g31-g13p0-wayland-gbm.so | ... a ` d t u x y v w p r q s GL_EXT_texture_filter_anisotropic GL_EXT_texture_storage_compression GL_EXT_EGL_image_storage_compression GL_EXT_protected_textures GL_EXT_disjoint_timer_query GL_EXT_texture_compression_astc_decode_mode GL_EXT_texture_compression_astc_decode_mode_rgb9e5 ... |
| HD | libmali-bifrost-g31-g13p0-x11-gbm.so | ... a ` d t u x y v w p r q s GL_EXT_texture_filter_anisotropic GL_EXT_texture_storage_compression GL_EXT_EGL_image_storage_compression GL_EXT_protected_textures GL_EXT_disjoint_timer_query GL_EXT_texture_compression_astc_decode_mode GL_EXT_texture_compression_astc_decode_mode_rgb9e5 ... |
| HD | libmali-bifrost-g31-g13p0-only-cl.so | ... a ` d t u x y v w p r q s GL_EXT_texture_filter_anisotropic GL_EXT_texture_storage_compression GL_EXT_EGL_image_storage_compression GL_EXT_protected_textures GL_EXT_disjoint_timer_query GL_EXT_texture_compression_astc_decode_mode GL_EXT_texture_compression_astc_decode_mode_rgb9e5 ... |
| HD | libmali-bifrost-g52-g13p0-wayland-gbm.so | ... a ` d t u x y v w p r q s GL_EXT_texture_filter_anisotropic GL_EXT_texture_storage_compression GL_EXT_EGL_image_storage_compression GL_EXT_protected_textures GL_EXT_disjoint_timer_query GL_EXT_texture_compression_astc_decode_mode GL_EXT_texture_compression_astc_decode_mode_rgb9e5 ... |
| HD | libmali-bifrost-g52-g13p0-dummy.so | ... a ` d t u x y v w p r q s GL_EXT_texture_filter_anisotropic GL_EXT_texture_storage_compression GL_EXT_EGL_image_storage_compression GL_EXT_protected_textures GL_EXT_disjoint_timer_query GL_EXT_texture_compression_astc_decode_mode GL_EXT_texture_compression_astc_decode_mode_rgb9e5 ... |
| HD | libmali-bifrost-g52-g13p0-x11-gbm.so | ... a ` d t u x y v w p r q s GL_EXT_texture_filter_anisotropic GL_EXT_texture_storage_compression GL_EXT_EGL_image_storage_compression GL_EXT_protected_textures GL_EXT_disjoint_timer_query GL_EXT_texture_compression_astc_decode_mode GL_EXT_texture_compression_astc_decode_mode_rgb9e5 ... |
| HD | libmali-bifrost-g52-g13p0-dummy-gbm.so | ... a ` d t u x y v w p r q s GL_EXT_texture_filter_anisotropic GL_EXT_texture_storage_compression GL_EXT_EGL_image_storage_compression GL_EXT_protected_textures GL_EXT_disjoint_timer_query GL_EXT_texture_compression_astc_decode_mode GL_EXT_texture_compression_astc_decode_mode_rgb9e5 ... |
| HD | libmali-bifrost-g31-g13p0-gbm.so | ... a ` d t u x y v w p r q s GL_EXT_texture_filter_anisotropic GL_EXT_texture_storage_compression GL_EXT_EGL_image_storage_compression GL_EXT_protected_textures GL_EXT_disjoint_timer_query GL_EXT_texture_compression_astc_decode_mode GL_EXT_texture_compression_astc_decode_mode_rgb9e5 ... |
| HD | libmali-bifrost-g52-g13p0-gbm.so | ... a ` d t u x y v w p r q s GL_EXT_texture_filter_anisotropic GL_EXT_texture_storage_compression GL_EXT_EGL_image_storage_compression GL_EXT_protected_textures GL_EXT_disjoint_timer_query GL_EXT_texture_compression_astc_decode_mode GL_EXT_texture_compression_astc_decode_mode_rgb9e5 ... |
| /OK3568_Linux_fs/kernel/drivers/pnp/pnpbios/ |
| H A D | rsparser.c | 60 int end = start + len - 1; in pnpbios_parse_allocated_ioresource() 72 int end = start + len - 1; in pnpbios_parse_allocated_memresource() 81 unsigned char *p, in pnpbios_parse_allocated_resource_data() 87 if (!p) in pnpbios_parse_allocated_resource_data() 94 while ((char *)p < (char *)end) { in pnpbios_parse_allocated_resource_data() 97 if (p[0] & LARGE_TAG) { /* large tag */ in pnpbios_parse_allocated_resource_data() 98 len = (p[2] << 8) | p[1]; in pnpbios_parse_allocated_resource_data() 99 tag = p[0]; in pnpbios_parse_allocated_resource_data() 101 len = p[0] & 0x07; in pnpbios_parse_allocated_resource_data() 102 tag = ((p[0] >> 3) & 0x0f); in pnpbios_parse_allocated_resource_data() [all …]
|
| /OK3568_Linux_fs/external/xserver/hw/dmx/config/ |
| H A D | dmxprint.c | 165 dmxConfigPrintComment(DMXConfigCommentPtr p) in dmxConfigPrintComment() argument 167 dmxConfigOutput(1, 1, p->comment, NULL); in dmxConfigPrintComment() 171 dmxConfigPrintTokenFlag(DMXConfigTokenPtr p, int flag) in dmxConfigPrintTokenFlag() argument 173 if (!p) in dmxConfigPrintTokenFlag() 175 switch (p->token) { in dmxConfigPrintTokenFlag() 178 dmxConfigOutput(0, 0, p->comment, "virtual"); in dmxConfigPrintTokenFlag() 182 dmxConfigOutput(0, 0, p->comment, "display"); in dmxConfigPrintTokenFlag() 186 dmxConfigOutput(0, 0, p->comment, "wall"); in dmxConfigPrintTokenFlag() 190 dmxConfigOutput(0, 0, p->comment, "option"); in dmxConfigPrintTokenFlag() 194 dmxConfigOutput(0, 0, p->comment, "param"); in dmxConfigPrintTokenFlag() [all …]
|