/third_party/ntfs-3g/libntfs-3g/ |
H A D | index.c | 207 static INDEX_ENTRY *ntfs_ie_get_first(INDEX_HEADER *ih) in ntfs_ie_get_first() argument 209 return (INDEX_ENTRY *)((u8 *)ih + le32_to_cpu(ih->entries_offset)); in ntfs_ie_get_first() 217 static u8 *ntfs_ie_get_end(INDEX_HEADER *ih) in ntfs_ie_get_end() argument 220 return (u8 *)ih + le32_to_cpu(ih->index_length); in ntfs_ie_get_end() 241 static INDEX_ENTRY *ntfs_ie_get_by_pos(INDEX_HEADER *ih, int pos) in ntfs_ie_get_by_pos() argument 247 ie = ntfs_ie_get_first(ih); in ntfs_ie_get_by_pos() 255 static INDEX_ENTRY *ntfs_ie_prev(INDEX_HEADER *ih, INDEX_ENTRY *ie) in ntfs_ie_prev() argument 262 tmp = ntfs_ie_get_first(ih); in ntfs_ie_prev() 289 ntfs_ih_filename_dump(INDEX_HEADER *ih) ntfs_ih_filename_dump() argument 302 ntfs_ih_numof_entries(INDEX_HEADER *ih) ntfs_ih_numof_entries() argument 317 ntfs_ih_one_entry(INDEX_HEADER *ih) ntfs_ih_one_entry() argument 322 ntfs_ih_zero_entry(INDEX_HEADER *ih) ntfs_ih_zero_entry() argument 327 ntfs_ie_delete(INDEX_HEADER *ih, INDEX_ENTRY *ie) ntfs_ie_delete() argument 347 ntfs_ie_insert(INDEX_HEADER *ih, INDEX_ENTRY *ie, INDEX_ENTRY *pos) ntfs_ie_insert() argument 575 ntfs_ie_lookup(const void *key, const int key_len, ntfs_index_context *icx, INDEX_HEADER *ih, VCN *vcn, INDEX_ENTRY **ie_out) ntfs_ie_lookup() argument 938 ntfs_ie_get_median(INDEX_HEADER *ih) ntfs_ie_get_median() argument 1394 ntfs_ih_insert(INDEX_HEADER *ih, INDEX_ENTRY *orig_ie, VCN new_vcn, int pos) ntfs_ih_insert() argument 1555 INDEX_HEADER *ih; ntfs_ie_add() local 1663 ntfs_ih_takeout(ntfs_index_context *icx, INDEX_HEADER *ih, INDEX_ENTRY *ie, INDEX_BLOCK *ib) ntfs_ih_takeout() argument 1708 ntfs_ir_leafify(ntfs_index_context *icx, INDEX_HEADER *ih) ntfs_ir_leafify() argument 1729 ntfs_ih_reparent_end(ntfs_index_context *icx, INDEX_HEADER *ih, INDEX_BLOCK *ib) ntfs_ih_reparent_end() argument 1804 INDEX_HEADER *ih; ntfs_index_rm_node() local 1919 INDEX_HEADER *ih; ntfs_index_rm() local [all...] |
H A D | security.c | 413 static INDEX_ENTRY *ntfs_ie_get_first(INDEX_HEADER *ih) in ntfs_ie_get_first() argument 415 return (INDEX_ENTRY*)((u8*)ih + le32_to_cpu(ih->entries_offset)); in ntfs_ie_get_first()
|
/third_party/toybox/toys/net/ |
H A D | ping.c | 114 struct icmphdr *ih = (void *)toybuf; in ping_main() local 248 memset(ih, 0, sizeof(*ih)); in ping_main() 249 ih->type = (ai->ai_family == AF_INET) ? 8 : 128; in ping_main() 250 ih->un.echo.id = getpid(); in ping_main() 251 ih->un.echo.sequence = ++seq; in ping_main() 252 if (TT.s >= 4) *(unsigned *)(ih+1) = tnow; in ping_main() 254 ih->checksum = pingchksum((void *)toybuf, TT.s+sizeof(*ih)); in ping_main() 255 xsendto(TT.sock, toybuf, TT.s+sizeof(*ih), T in ping_main() [all...] |
/third_party/backends/sanei/ |
H A D | sanei_ir.c | 317 int ih, it; in sanei_ir_threshold_maxentropy() local 338 for ( ih = 0; ih < HISTOGRAM_SIZE; ih++ ) in sanei_ir_threshold_maxentropy() 339 P2[ih] = 1.0 - P1[ih]; in sanei_ir_threshold_maxentropy() 342 for ( ih = 0; ih < HISTOGRAM_SIZE; ih++ ) in sanei_ir_threshold_maxentropy() 343 if (P1[ih] ! in sanei_ir_threshold_maxentropy() [all...] |
/third_party/toybox/porting/liteos_a/toys/net/ |
H A D | ping.c | 93 struct icmphdr *ih = (void *)toybuf; in ping_main() local 214 memset(ih, 0, sizeof(*ih)); in ping_main() 215 ih->type = (ai->ai_family == AF_INET) ? 8 : 128; in ping_main() 216 ih->un.echo.id = getpid(); in ping_main() 217 ih->un.echo.sequence = ++seq; in ping_main() 220 ih->checksum = 0; in ping_main() 221 ih->checksum = pingchksum((void *)toybuf, TT.s+sizeof(*ih)); in ping_main() 222 xsendto(TT.sock, toybuf, TT.s+sizeof(*ih), T in ping_main() [all...] |
/third_party/ltp/testcases/kernel/syscalls/utils/ |
H A D | inotify.h | 74 * h_list is protected by ih->mutex of the associated inotify_handle. 76 * ih, inode, and wd are never written to once the watch is created. 86 struct inotify_handle *ih; /* associated inotify handle */ member 176 static inline void inotify_destroy(struct inotify_handle *ih) in inotify_destroy() argument 180 static inline __s32 inotify_find_watch(struct inotify_handle *ih, struct inode *inode, in inotify_find_watch() argument 186 static inline __s32 inotify_find_update_watch(struct inotify_handle *ih, in inotify_find_update_watch() argument 192 static inline __s32 inotify_add_watch(struct inotify_handle *ih, in inotify_add_watch() argument 199 static inline int inotify_rm_watch(struct inotify_handle *ih, in inotify_rm_watch() argument 205 static inline int inotify_rm_wd(struct inotify_handle *ih, __u32 wd) in inotify_rm_wd() argument 210 static inline void inotify_remove_watch_locked(struct inotify_handle *ih, in inotify_remove_watch_locked() argument [all...] |
/third_party/lwip/test/unit/udp/ |
H A D | test_udp.c | 177 struct ip_hdr *ih; in test_udp_create_test_packet() local 200 ih = (struct ip_hdr *)p->payload; in test_udp_create_test_packet() 201 memset(ih, 0, sizeof(*ih)); in test_udp_create_test_packet() 202 ih->dest.addr = dst_addr; in test_udp_create_test_packet() 203 ih->_len = lwip_htons(p->tot_len); in test_udp_create_test_packet() 204 ih->_ttl = 32; in test_udp_create_test_packet() 205 ih->_proto = IP_PROTO_UDP; in test_udp_create_test_packet() 206 IPH_VHL_SET(ih, 4, sizeof(struct ip_hdr) / 4); in test_udp_create_test_packet() 207 IPH_CHKSUM_SET(ih, inet_chksu in test_udp_create_test_packet() [all...] |
/third_party/jerryscript/jerry-libm/ |
H A D | trig.c | 141 * ih integer. If >0 it indicates q[] is >= 0.5, hence 192 int jz, jx, jv, jp, jk, carry, n, iq[20], i, j, k, m, q0, ih; in __kernel_rem_pio2() local 241 ih = 0; in __kernel_rem_pio2() 247 ih = iq[jz - 1] >> (23 - q0); in __kernel_rem_pio2() 251 ih = iq[jz - 1] >> 23; in __kernel_rem_pio2() 255 ih = 2; in __kernel_rem_pio2() 258 if (ih > 0) /* q > 0.5 */ in __kernel_rem_pio2() 294 if (ih == 2) in __kernel_rem_pio2() 388 y[0] = (ih == 0) ? fw : -fw; in __kernel_rem_pio2() 399 y[0] = (ih in __kernel_rem_pio2() [all...] |
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | __rem_pio2_large.c | 113 * ih integer. If >0 it indicates q[] is >= 0.5, hence 275 int32_t jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; in __rem_pio2_large() local 313 ih = 0; in __rem_pio2_large() 317 ih = iq[jz-1]>>(23-q0); in __rem_pio2_large() 319 else if (q0 == 0) ih = iq[jz-1]>>23; in __rem_pio2_large() 320 else if (z >= 0.5) ih = 2; in __rem_pio2_large() 322 if (ih > 0) { /* q > 0.5 */ in __rem_pio2_large() 342 if (ih == 2) { in __rem_pio2_large() 407 y[0] = ih==0 ? fw : -fw; in __rem_pio2_large() 416 y[0] = ih in __rem_pio2_large() [all...] |
/third_party/musl/src/math/ |
H A D | __rem_pio2_large.c | 113 * ih integer. If >0 it indicates q[] is >= 0.5, hence 275 int32_t jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; in __rem_pio2_large() local 313 ih = 0; in __rem_pio2_large() 317 ih = iq[jz-1]>>(23-q0); in __rem_pio2_large() 319 else if (q0 == 0) ih = iq[jz-1]>>23; in __rem_pio2_large() 320 else if (z >= 0.5) ih = 2; in __rem_pio2_large() 322 if (ih > 0) { /* q > 0.5 */ in __rem_pio2_large() 342 if (ih == 2) { in __rem_pio2_large() 407 y[0] = ih==0 ? fw : -fw; in __rem_pio2_large() 416 y[0] = ih in __rem_pio2_large() [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_convolve.c | 300 const int iw = (n - w) / 2, ih = (n - h) / 2; in get_input() local 308 fft_hdata[(y + ih) * n + iw + x].re = src[x] * scale; in get_input() 309 fft_hdata[(y + ih) * n + iw + x].im = 0; in get_input() 313 fft_hdata[(y + ih) * n + x].re = fft_hdata[(y + ih) * n + iw].re; in get_input() 314 fft_hdata[(y + ih) * n + x].im = 0; in get_input() 318 fft_hdata[(y + ih) * n + x].re = fft_hdata[(y + ih) * n + n - iw - 1].re; in get_input() 319 fft_hdata[(y + ih) * n + x].im = 0; in get_input() 323 for (y = 0; y < ih; in get_input() [all...] |
H A D | vf_transpose_npp.c | 297 int ih = stage->planes_in[i].height; in npptranspose_rotate() local 308 err = nppiRotate_8u_C1R(in->data[i], (NppiSize){ iw, ih }, in npptranspose_rotate() 309 in->linesize[i], (NppiRect){ 0, 0, iw, ih }, in npptranspose_rotate() 330 int ih = stage->planes_in[i].height; in npptranspose_transpose() local 334 (NppiSize){ iw, ih }); in npptranspose_transpose()
|
H A D | vf_cover_rect.c | 92 int ih = AV_CEIL_RSHIFT(in->height, !!p); in blur() local 112 if (oy + h < ih) { in blur()
|
H A D | vf_scale_npp.c | 79 "in_h", "ih", 333 ret = av_opt_set(scale, "h", "ih", 0); in nppscale_init() 719 int ih = stage->planes_in[i].height; in nppscale_resize() local 723 err = nppiResizeSqrPixel_8u_C1R(in->data[i], (NppiSize){ iw, ih }, in nppscale_resize() 724 in->linesize[i], (NppiRect){ 0, 0, iw, ih }, in nppscale_resize() 727 (double)ow / iw, (double)oh / ih, in nppscale_resize()
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_ra_init.cpp | 123 unsigned ih = index >> bt_index_shift; 125 dta[ih] |= ((basetype)1u << il); 129 unsigned ih = index >> bt_index_shift; 131 assert(ih < size); 132 dta[ih] &= ~((basetype)1u << il); 136 unsigned ih = index >> bt_index_shift; 138 return dta[ih] & ((basetype)1u << il); 142 unsigned ih = index >> bt_index_shift; 145 dta[ih] = (dta[ih] [all...] |
/third_party/python/Lib/test/ |
H A D | test_pow.py | 36 il, ih = -20, 20 47 for i in range(il, ih+1):
|
/third_party/node/deps/v8/src/base/ |
H A D | ieee754.cc | 439 * ih integer. If >0 it indicates q[] is >= 0.5, hence 470 int32_t jz, jx, jv, jp, jk, carry, n, iq[20], i, j, k, m, q0, ih; in __kernel_rem_pio2() local 510 ih = 0; in __kernel_rem_pio2() 515 ih = iq[jz - 1] >> (23 - q0); in __kernel_rem_pio2() 517 ih = iq[jz - 1] >> 23; in __kernel_rem_pio2() 519 ih = 2; in __kernel_rem_pio2() 522 if (ih > 0) { /* q > 0.5 */ in __kernel_rem_pio2() 546 if (ih == 2) { in __kernel_rem_pio2() 610 y[0] = (ih == 0) ? fw : -fw; in __kernel_rem_pio2() 616 y[0] = (ih in __kernel_rem_pio2() [all...] |
/third_party/ntfs-3g/include/ntfs-3g/ |
H A D | index.h | 165 extern void ntfs_ih_filename_dump(INDEX_HEADER *ih);
|
/third_party/ffmpeg/tests/fate/ |
H A D | filter-video.mak | 392 fate-filter-crop: CMD = video_filter "crop=iw-100:ih-100:100:100" 395 fate-filter-crop_scale: CMD = video_filter "crop=iw-100:ih-100:100:100,scale=w=400:h=-1" 398 fate-filter-crop_scale_vflip: CMD = video_filter "null,null,crop=iw-200:ih-200:200:200,crop=iw-20:ih-20:20:20,scale=w=200:h=200,scale=w=250:h=250,vflip,vflip,null,scale=w=200:h=200,crop=iw-100:ih-100:100:100,vflip,scale=w=200:h=200,null,vflip,crop=iw-100:ih-100:100:100,null" 401 fate-filter-crop_vflip: CMD = video_filter "crop=iw-100:ih-100:100:100,vflip" 438 fate-filter-vflip_crop: CMD = video_filter "vflip,crop=iw-100:ih-100:100:100" 459 fate-filter-pad: CMD = video_filter "pad=iw*1.5:ih*1.5:iw*0.3:ih*0. [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | cavs.c | 286 int ih = 0; in intra_pred_plane() local 291 ih += (x + 1) * (top[5 + x] - top[3 - x]); in intra_pred_plane() 295 ih = (17 * ih + 16) >> 5; in intra_pred_plane() 299 d[y * stride + x] = cm[(ia + (x - 3) * ih + (y - 3) * iv + 16) >> 5]; in intra_pred_plane()
|
/third_party/skia/src/gpu/ops/ |
H A D | TextureOp.cpp | 101 // Describes function for normalizing src coords: [x * iw, y * ih + yOffset] can represent 113 float iw, ih, h; in proxy_normalization_params() local 115 iw = ih = 1.f; in proxy_normalization_params() 119 ih = 1.f / dimensions.height(); in proxy_normalization_params() 124 return {iw, -ih, h}; in proxy_normalization_params() 126 return {iw, ih, 0.0f}; in proxy_normalization_params()
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | turbojpeg.c | 1026 int ih; in tjCompressFromYUVPlanes() local 1029 ih = compptr->height_in_blocks * DCTSIZE; in tjCompressFromYUVPlanes() 1034 if (iw[i] != pw[i] || ih != ph[i]) usetmpbuf = 1; in tjCompressFromYUVPlanes() 1699 int ih; in tjDecompressToYUVPlanes() local 1702 ih = compptr->height_in_blocks * dctsize; in tjDecompressToYUVPlanes() 1705 if (iw[i] != pw[i] || ih != ph[i]) usetmpbuf = 1; in tjDecompressToYUVPlanes()
|
/third_party/optimized-routines/math/test/rtest/ |
H A D | dotest.c | 113 static void set_mpc_d(mpc_t z, uint32 rh, uint32 rl, uint32 ih, uint32 il) in set_mpc_d() argument 119 set_mpfr_d(y, ih, il); in set_mpc_d() 257 uint32 *ih, uint32 *il, uint32 *iextra) in get_mpc_d() 265 get_mpfr_d(y, ih, il, iextra); in get_mpc_d() 255 get_mpc_d(const mpc_t z, uint32 *rh, uint32 *rl, uint32 *rextra, uint32 *ih, uint32 *il, uint32 *iextra) get_mpc_d() argument
|
/third_party/skia/src/shaders/ |
H A D | SkImageShader.cpp | 738 h, ih, i2h; in makeProgram() member 793 case SkTileMode::kRepeat: sy = repeat(sy, u.h, u.ih); break; in makeProgram()
|