Home
last modified time | relevance | path

Searched refs:eb (Results 1 - 25 of 37) sorted by relevance

12

/third_party/libexif/test/
H A Dtest-mem.c35 unsigned char *eb, size[2]; in main() local
64 exif_data_save_data (ed, &eb, &ebs); in main()
71 free (eb); in main()
77 for (i = 0; i < ebs && exif_loader_write (loader, eb + i, 1); i++); in main()
79 free (eb); in main()
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
H A Dexponential_biased_test.cc118 ExponentialBiased eb; in TEST() local
120 for (int flips = eb.GetSkipCount(1); flips > 0; --flips) { in TEST()
126 for (int i = 0; i < 10000000; i += 1 + eb.GetSkipCount(1)) { in TEST()
133 ExponentialBiased eb; in TEST() local
134 int stride = eb.GetStride(10); in TEST()
139 stride = eb.GetStride(10); in TEST()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/
H A Dpkcs5.c571 u8 *eb, pad; in pkcs5_decrypt() local
594 eb = os_malloc(enc_data_len); in pkcs5_decrypt()
595 if (eb == NULL) { in pkcs5_decrypt()
600 if (crypto_cipher_decrypt(ctx, enc_data, eb, enc_data_len) < 0) { in pkcs5_decrypt()
603 os_free(eb); in pkcs5_decrypt()
608 pad = eb[enc_data_len - 1]; in pkcs5_decrypt()
611 os_free(eb); in pkcs5_decrypt()
615 if (eb[i] != pad) { in pkcs5_decrypt()
617 eb + enc_data_len - pad, pad); in pkcs5_decrypt()
618 os_free(eb); in pkcs5_decrypt()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/
H A Dpkcs5.c593 u8 *eb, pad; in pkcs5_decrypt() local
616 eb = os_malloc(enc_data_len); in pkcs5_decrypt()
617 if (eb == NULL) { in pkcs5_decrypt()
622 if (crypto_cipher_decrypt(ctx, enc_data, eb, enc_data_len) < 0) { in pkcs5_decrypt()
625 os_free(eb); in pkcs5_decrypt()
630 pad = eb[enc_data_len - 1]; in pkcs5_decrypt()
633 os_free(eb); in pkcs5_decrypt()
637 if (eb[i] != pad) { in pkcs5_decrypt()
639 eb + enc_data_len - pad, pad); in pkcs5_decrypt()
640 os_free(eb); in pkcs5_decrypt()
[all...]
/third_party/lame/libmp3lame/
H A Dpsymodel.c361 convert_partition2scalefac(PsyConst_CB2SB_t const *const gd, FLOAT const *eb, FLOAT const *thr, in convert_partition2scalefac() argument
372 assert(eb[b] >= 0); /* iff failed, it may indicate some index error elsewhere */ in convert_partition2scalefac()
374 enn += eb[b]; in convert_partition2scalefac()
384 assert(eb[b] >= 0); /* iff failed, it may indicate some index error elsewhere */ in convert_partition2scalefac()
390 enn += w_curr * eb[b]; in convert_partition2scalefac()
394 enn = w_next * eb[b]; in convert_partition2scalefac()
406 convert_partition2scalefac_s(lame_internal_flags * gfc, FLOAT const *eb, FLOAT const *thr, int chn, in convert_partition2scalefac_s() argument
413 convert_partition2scalefac(gds, eb, thr, enn, thm); in convert_partition2scalefac_s()
422 convert_partition2scalefac_l(lame_internal_flags * gfc, FLOAT const *eb, FLOAT const *thr, int chn) in convert_partition2scalefac_l() argument
428 convert_partition2scalefac(gdl, eb, th in convert_partition2scalefac_l()
432 convert_partition2scalefac_l_to_s(lame_internal_flags * gfc, FLOAT const *eb, FLOAT const *thr, int chn) convert_partition2scalefac_l_to_s() argument
567 calc_energy(PsyConst_CB2SB_t const *l, FLOAT const *fftenergy, FLOAT * eb, FLOAT * max, FLOAT * avg) calc_energy() argument
1042 vbrpsy_compute_masking_s(lame_internal_flags * gfc, const FLOAT(*fftenergy_s)[HBLKSIZE_s], FLOAT * eb, FLOAT * thr, int chn, int sblock) vbrpsy_compute_masking_s() argument
1337 vbrpsy_compute_MS_thresholds(const FLOAT eb[4][CBANDS], FLOAT thr[4][CBANDS], const FLOAT cb_mld[CBANDS], const FLOAT ath_cb[CBANDS], FLOAT athlower, FLOAT msfix, int n) vbrpsy_compute_MS_thresholds() argument
1430 FLOAT eb[4][CBANDS], thr[4][CBANDS]; L3psycho_anal_vbr() local
[all...]
/third_party/libwebsockets/lib/roles/http/client/
H A Dclient-http.c403 struct lws_tokens eb; in lws_http_client_socket_service() local
406 eb.token = NULL; in lws_http_client_socket_service()
407 eb.len = 0; in lws_http_client_socket_service()
408 buffered = lws_buflist_aware_read(pt, wsi, &eb, 0, __func__); in lws_http_client_socket_service()
410 buffered, eb.len); in lws_http_client_socket_service()
411 if (eb.len == LWS_SSL_CAPABLE_MORE_SERVICE) in lws_http_client_socket_service()
413 if (buffered < 0 || eb.len < 0) { in lws_http_client_socket_service()
417 if (!eb.len) in lws_http_client_socket_service()
420 n = eb.len; in lws_http_client_socket_service()
421 if (lws_parse(wsi, eb in lws_http_client_socket_service()
1329 struct lws_tokens eb; lws_http_client_read() local
[all...]
/third_party/mesa3d/src/gallium/winsys/virgl/drm/
H A Dvirgl_drm_winsys.c583 struct drm_virtgpu_execbuffer eb; in virgl_drm_winsys_resource_set_type() local
610 memset(&eb, 0, sizeof(eb)); in virgl_drm_winsys_resource_set_type()
611 eb.command = (uintptr_t)cmd; in virgl_drm_winsys_resource_set_type()
612 eb.size = (1 + VIRGL_PIPE_RES_SET_TYPE_SIZE(plane_count)) * 4; in virgl_drm_winsys_resource_set_type()
613 eb.num_bo_handles = 1; in virgl_drm_winsys_resource_set_type()
614 eb.bo_handles = (uintptr_t)&res->bo_handle; in virgl_drm_winsys_resource_set_type()
616 ret = drmIoctl(qdws->fd, DRM_IOCTL_VIRTGPU_EXECBUFFER, &eb); in virgl_drm_winsys_resource_set_type()
942 struct drm_virtgpu_execbuffer eb; in virgl_drm_winsys_submit_cmd() local
948 memset(&eb, in virgl_drm_winsys_submit_cmd()
[all...]
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Denum-mismatch.c2 enum eb { B = 1, }; enum
5 static enum eb foo(enum ea a) in foo()
17 enum-mismatch.c:7:16: unsigned int enum eb
/third_party/ffmpeg/libavfilter/
H A Dvf_paletteuse.c157 int eb, int scale, int shift) in dither_color()
162 | av_clip_uint8((px & 0xff) + ((eb * scale) / (1<<shift))); in dither_color()
376 uint32_t c, int *ea, int *er, int *eg, int *eb, in get_dst_color_err()
389 *ea =*er = *eg = *eb = 0; in get_dst_color_err()
394 *eb = (int)b - (int)(dstc & 0xff); in get_dst_color_err()
415 int ea, er, eg, eb; in set_frame() local
435 const int color = get_dst_color_err(s, src[x], &ea, &er, &eg, &eb, search_method); in set_frame()
441 if (right) src[ x + 1] = dither_color(src[ x + 1], er, eg, eb, 3, 3); in set_frame()
442 if ( down) src[src_linesize + x ] = dither_color(src[src_linesize + x ], er, eg, eb, 3, 3); in set_frame()
443 if (right && down) src[src_linesize + x + 1] = dither_color(src[src_linesize + x + 1], er, eg, eb, in set_frame()
156 dither_color(uint32_t px, int er, int eg, int eb, int scale, int shift) dither_color() argument
375 get_dst_color_err(PaletteUseContext *s, uint32_t c, int *ea, int *er, int *eg, int *eb, const enum color_search_method search_method) get_dst_color_err() argument
[all...]
/third_party/libunwind/libunwind/src/
H A Dos-freebsd.c97 char *buf, *bp, *eb; in tdep_get_elf_image() local
128 for (bp = buf, eb = buf + len; bp < eb; bp += kv->kve_structsize) { in tdep_get_elf_image()
/third_party/libunwind/libunwind/tests/
H A Dcrasher.c48 char *buf, *bp, *eb; in write_maps() local
73 for (bp = buf, eb = buf + len; bp < eb; bp += kv->kve_structsize) { in write_maps()
/third_party/FreeBSD/sbin/newfs_msdos/
H A Dnewfs_msdos.c55 char *eb; in get_tstamp() local
62 l = strtoll(b, &eb, 0); in get_tstamp()
63 if (b == eb || *eb || errno) in get_tstamp()
/third_party/typescript/tests/baselines/reference/
H A DcommentsAfterSpread.js33 const [ea, eb] = [.../* comment eab */args];
107 const [ea, eb] = [... /* comment eab */args];
H A DtemplateStringBinaryOperationsInvalid.js96 var eb = `${ 3 * 4 }` & 6;
196 var eb = "".concat(3 * 4) & 6; variable
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/serializable/
H A DExceptionHandler.java36 Exception eb = (Exception) b; in hasSameBehavior()
38 return ea.toString().equals(eb.toString()); in hasSameBehavior()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
H A DExceptionHandler.java35 Exception eb = (Exception) b; in hasSameBehavior()
37 return ea.toString().equals(eb.toString()); in hasSameBehavior()
/third_party/mesa3d/src/freedreno/drm/virtio/
H A Dvirtio_device.c249 struct drm_virtgpu_execbuffer eb = { in execbuf_locked() local
261 int ret = drmIoctl(dev->fd, DRM_IOCTL_VIRTGPU_EXECBUFFER, &eb); in execbuf_locked()
268 *out_fence_fd = eb.fence_fd; in execbuf_locked()
/third_party/skia/third_party/externals/icu/scripts/
H A Dsjis_gen.sh32 <icu:state> 0-80, 81-9f:1, a1-df, e0-fc:1, 82:3, 84:4, 85-86:2, 87:5, 88:2, 98:6, eb-ec:2, ef:2, f9:2, fc:7
/third_party/alsa-utils/aplay/
H A Daplay.c2405 VocExtBlock *eb; local
2578 eb = (VocExtBlock *) data;
2580 hwparams.rate = (int) (eb->tc);
2582 hwparams.channels = eb->mode == VOC_MODE_STEREO ? 2 : 1;
2585 if (eb->pack) { /* /dev/dsp can't it */
2591 (eb->mode ? "Stereo" : "Mono"), dsp_speed);
2655 VocExtBlock eb; local
2675 eb.tc = LE_SHORT(65536 - 256000000L / (hwparams.rate << 1));
2676 eb.pack = 0;
2677 eb
[all...]
/third_party/libbpf/src/
H A DMakefile84 ifeq ($(filter-out %64 %64be %64eb %64le %64el s390x, $(HOSTARCH)),)
/third_party/ffmpeg/libavcodec/
H A Dintrax8.c125 #define extra_bits(eb) (eb) // 3 bits
/third_party/musl/
H A Dconfigure654 trycppif __ARMEB__ "$t" && SUBARCH=${SUBARCH}eb
738 trycppif __BIG_ENDIAN__ "$t" && SUBARCH=${SUBARCH}eb
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
H A DBigDecimal.java1022 int eb = 0; in add()
1165 eb = user.length - 1; in add()
1171 if (ib > eb) {/* identical */ in add()
1179 if (ib <= eb) in add()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/math/
H A DBigDecimal.java998 int eb = 0; in add()
1141 eb = user.length - 1; in add()
1147 if (ib > eb) {/* identical */ in add()
1155 if (ib <= eb) in add()
/third_party/node/deps/npm/node_modules/lru-cache/dist/commonjs/
H A Dindex.js1101 const eb = (er) => {
1160 const p = new Promise(pcall).then(cb, eb);

Completed in 37 milliseconds

12