/third_party/libwebsockets/lib/misc/lwsac/ |
D | lwsac.cxx | 60 lssAc::get(lssbuf_t *lb) in get() argument 65 lb->buf = (uint8_t *)iter + lwsac_sizeof(iter == ac); in get() 66 lb->len = lwsac_get_tail_pos(iter) - lwsac_sizeof(iter == ac); in get() 73 lssAc::append(lssbuf_t *lb) in append() argument 75 uint8_t *p = (uint8_t *)lwsac_use(&ac, lb->len, lb->len); in append() 79 memcpy(p, lb->buf, lb->len); in append()
|
/third_party/libwebsockets/lib/cose/ |
D | cose_sign.c | 107 uint8_t lbuf[MAX_BLOBBED_PARAMS], lb[9]; in lws_cose_sign_payload_chunk() local 218 lws_lec_init(&lec1, lb, sizeof(lb)); in lws_cose_sign_payload_chunk() 274 lws_lec_init(&lec1, lb, sizeof(lb)); in lws_cose_sign_payload_chunk() 300 lws_lec_init(&lec1, lb, sizeof(lb)); in lws_cose_sign_payload_chunk() 315 lws_lec_init(&lec1, lb, sizeof(lb)); in lws_cose_sign_payload_chunk() 336 lws_lec_init(&lec1, lb, sizeof(lb)); in lws_cose_sign_payload_chunk() 390 lws_lec_init(&lec1, lb, sizeof(lb)); in lws_cose_sign_payload_chunk() 421 lws_lec_init(&lec1, lb, sizeof(lb)); in lws_cose_sign_payload_chunk() 443 lws_lec_init(&lec1, lb, sizeof(lb)); in lws_cose_sign_payload_chunk() 454 lws_lec_init(&lec1, lb, sizeof(lb)); in lws_cose_sign_payload_chunk()
|
/third_party/node/deps/cares/src/lib/ |
D | bitncmp.c | 38 unsigned int lb, rb; in ares__bitncmp() local 46 lb = ((const unsigned char *)l)[b]; in ares__bitncmp() 49 if ((lb & 0x80) != (rb & 0x80)) { in ares__bitncmp() 50 if (lb & 0x80) in ares__bitncmp() 54 lb <<= 1; in ares__bitncmp()
|
/third_party/openssl/crypto/bn/ |
D | bn_shift.c | 107 unsigned int lb, rb; in bn_lshift_fixed_top() local 121 lb = (unsigned int)n % BN_BITS2; in bn_lshift_fixed_top() 122 rb = BN_BITS2 - lb; in bn_lshift_fixed_top() 131 m = l << lb; in bn_lshift_fixed_top() 135 t[0] = (l << lb) & BN_MASK2; in bn_lshift_fixed_top() 176 unsigned int lb, rb; in bn_rshift_fixed_top() local 193 lb = BN_BITS2 - rb; in bn_rshift_fixed_top() 194 lb %= BN_BITS2; /* say no to undefined behaviour */ in bn_rshift_fixed_top() 195 mask = (BN_ULONG)0 - lb; /* mask = 0 - (lb != 0) */ in bn_rshift_fixed_top() 206 t[i] = (l >> rb) | ((m << lb) & mask); in bn_rshift_fixed_top()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-bit-page.hh | 57 elt_t *lb = &elt (b); in add_range() local 58 if (la == lb) in add_range() 65 memset (la, 0xff, (char *) lb - (char *) la); in add_range() 67 *lb |= ((mask (b) << 1) - 1); in add_range() 73 elt_t *lb = &elt (b); in del_range() local 74 if (la == lb) in del_range() 81 memset (la, 0, (char *) lb - (char *) la); in del_range() 83 *lb &= ~((mask (b) << 1) - 1); in del_range()
|
/third_party/iowow/src/utils/ |
D | iwarr.c | 21 lb = 0, in iwarr_sorted_insert() local 30 idx = (ub + lb) / 2; in iwarr_sorted_insert() 38 lb = idx + 1; in iwarr_sorted_insert() 39 if (lb > ub) { in iwarr_sorted_insert() 40 idx = lb; in iwarr_sorted_insert() 45 if (lb > ub) { in iwarr_sorted_insert() 66 lb = 0, in iwarr_sorted_remove() local 74 idx = (ub + lb) / 2; in iwarr_sorted_remove() 82 lb = idx + 1; in iwarr_sorted_remove() 83 if (lb > ub) { in iwarr_sorted_remove() [all …]
|
/third_party/node/deps/npm/node_modules/byte-size/ |
D | README.hbs | 3 [![Build Status](https://travis-ci.org/75lb/byte-size.svg?branch=master)](https://travis-ci.org/75l… 4 …tus](https://coveralls.io/repos/github/75lb/byte-size/badge.svg?branch=master)](https://coveralls.… 5 [![Dependency Status](https://david-dm.org/75lb/byte-size.svg)](https://david-dm.org/75lb/byte-size)
|
/third_party/ffmpeg/libavformat/ |
D | oggparseogm.c | 176 int lb; in ogm_packet() local 181 lb = ((*p & 2) << 1) | ((*p >> 6) & 3); in ogm_packet() 182 if (os->psize < lb + 1) in ogm_packet() 185 os->pstart += lb + 1; in ogm_packet() 186 os->psize -= lb + 1; in ogm_packet() 188 while (lb--) in ogm_packet() 189 os->pduration += (uint64_t)p[lb+1] << (lb*8); in ogm_packet()
|
/third_party/flutter/skia/third_party/externals/icu/source/data/unidata/ |
D | ppucd.txt | 67 property;Enumerated;lb;Line_Break 802 value;lb;AI;Ambiguous 803 value;lb;AL;Alphabetic 804 value;lb;B2;Break_Both 805 value;lb;BA;Break_After 806 value;lb;BB;Break_Before 807 value;lb;BK;Mandatory_Break 808 value;lb;CB;Contingent_Break 809 value;lb;CJ;Conditional_Japanese_Starter 810 value;lb;CL;Close_Punctuation [all …]
|
/third_party/python/Lib/tkinter/test/test_tkinter/ |
D | test_widgets.py | 876 lb = self.create() 877 lb.insert(0, *('el%d' % i for i in range(8))) 878 lb.pack() 879 self.assertIsBoundingBox(lb.bbox(0)) 880 self.assertIsNone(lb.bbox(-1)) 881 self.assertIsNone(lb.bbox(10)) 882 self.assertRaises(TclError, lb.bbox, 'noindex') 883 self.assertRaises(TclError, lb.bbox, None) 884 self.assertRaises(TypeError, lb.bbox) 885 self.assertRaises(TypeError, lb.bbox, 0, 1) [all …]
|
/third_party/flutter/skia/third_party/externals/wuffs/lang/check/ |
D | assert.go | 245 func proveBinaryOpConstValues(op t.ID, lb bounds, rb bounds) (ok bool) { 248 return lb[1].Cmp(rb[0]) < 0 || lb[0].Cmp(rb[1]) > 0 250 return lb[1].Cmp(rb[0]) < 0 252 return lb[1].Cmp(rb[0]) <= 0 254 return lb[0].Cmp(rb[1]) == 0 && lb[1].Cmp(rb[0]) == 0 256 return lb[0].Cmp(rb[1]) >= 0 258 return lb[0].Cmp(rb[1]) > 0 276 lb, err := q.bcheckExpr(lhs, 0) 280 if proveBinaryOpConstValues(op, lb, bounds{rcv, rcv}) {
|
D | bounds.go | 473 lb, err := q.bcheckTypeExpr(lhs.MType()) 477 if lb[0].Cmp(nb[0]) < 0 { 484 if lb[1].Cmp(nb[1]) > 0 { 501 lb, err := bounds{}, (error)(nil) 503 lb, err = q.bcheckTypeExpr(lTyp) 519 if (lTyp != nil) && ((rb[0].Cmp(lb[0]) < 0) || (rb[1].Cmp(lb[1]) > 0)) { 522 rhs.Str(q.tm), rb, lb) 525 lhs.Str(q.tm)+" "+op.Str(q.tm)+" "+rhs.Str(q.tm), rb, lb) 1019 lb, err := q.bcheckExpr(lhs.LHS().AsExpr(), depth) 1029 min(lb[0], ab[0]), [all …]
|
/third_party/skia/third_party/externals/icu/source/data/unidata/ |
D | ppucd.txt | 67 property;Enumerated;lb;Line_Break 824 value;lb;AI;Ambiguous 825 value;lb;AL;Alphabetic 826 value;lb;B2;Break_Both 827 value;lb;BA;Break_After 828 value;lb;BB;Break_Before 829 value;lb;BK;Mandatory_Break 830 value;lb;CB;Contingent_Break 831 value;lb;CJ;Conditional_Japanese_Starter 832 value;lb;CL;Close_Punctuation [all …]
|
/third_party/icu/icu4c/source/data/unidata/ |
D | ppucd.txt | 67 property;Enumerated;lb;Line_Break 824 value;lb;AI;Ambiguous 825 value;lb;AL;Alphabetic 826 value;lb;B2;Break_Both 827 value;lb;BA;Break_After 828 value;lb;BB;Break_Before 829 value;lb;BK;Mandatory_Break 830 value;lb;CB;Contingent_Break 831 value;lb;CJ;Conditional_Japanese_Starter 832 value;lb;CL;Close_Punctuation [all …]
|
/third_party/openssl/crypto/cmac/ |
D | cmac.c | 208 int i, bl, lb; in CMAC_Final() local 218 lb = ctx->nlast_block; in CMAC_Final() 220 if (lb == bl) { in CMAC_Final() 224 ctx->last_block[lb] = 0x80; in CMAC_Final() 225 if (bl - lb > 1) in CMAC_Final() 226 memset(ctx->last_block + lb + 1, 0, bl - lb - 1); in CMAC_Final()
|
/third_party/elfutils/tests/ |
D | nvidia_extended_linemap_libdw.c | 52 Dwarf_Lines *lb; in main() local 56 NULL, NULL, &lb, &nlb)) == 0) in main() 63 Dwarf_Line *l = dwarf_onesrcline (lb, i); in main() 131 Dwarf_Line* caller_context = dwarf_linecontext (lb, l); in main() 150 caller_context = dwarf_linecontext (lb, callee_context); in main()
|
/third_party/pcre2/pcre2/maint/Unicode.tables/ |
D | PropertyValueAliases.txt | 1068 # Line_Break (lb) 1070 lb ; AI ; Ambiguous 1071 lb ; AL ; Alphabetic 1072 lb ; B2 ; Break_Both 1073 lb ; BA ; Break_After 1074 lb ; BB ; Break_Before 1075 lb ; BK ; Mandatory_Break 1076 lb ; CB ; Contingent_Break 1077 lb ; CJ ; Conditional_Japanese_Starter 1078 lb ; CL ; Close_Punctuation [all …]
|
/third_party/ffmpeg/tests/ref/vsynth/ |
D | vsynth2-dnxhd-hr-lb-mov | 1 6a514f231b36542a3bc6af90bbc04dcd *tests/data/fate/vsynth2-dnxhd-hr-lb-mov.mov 2 3748599 tests/data/fate/vsynth2-dnxhd-hr-lb-mov.mov 3 6d4cdd8822ead300690af9ce52db037c *tests/data/fate/vsynth2-dnxhd-hr-lb-mov.out.rawvideo
|
D | vsynth_lena-dnxhd-720p-hr-lb | 1 2cc387afd3e5a244dca45add1e0742bb *tests/data/fate/vsynth_lena-dnxhd-720p-hr-lb.dnxhd 2 409600 tests/data/fate/vsynth_lena-dnxhd-720p-hr-lb.dnxhd 3 8a7fe93d1fb2971d82dd8c8f14498567 *tests/data/fate/vsynth_lena-dnxhd-720p-hr-lb.out.rawvideo
|
D | vsynth_lena-dnxhd-hr-lb-mov | 1 f27068c1444d2e11e094fab37eceb9d5 *tests/data/fate/vsynth_lena-dnxhd-hr-lb-mov.mov 2 3748599 tests/data/fate/vsynth_lena-dnxhd-hr-lb-mov.mov 3 0951de00b90d1bf34d2ff10a51db705d *tests/data/fate/vsynth_lena-dnxhd-hr-lb-mov.out.rawvideo
|
D | vsynth3-dnxhd-4k-hr-lb | 1 1dc788461df79c2a1e7b64309cd9f131 *tests/data/fate/vsynth3-dnxhd-4k-hr-lb.dnxhd 2 3993600 tests/data/fate/vsynth3-dnxhd-4k-hr-lb.dnxhd 3 2d70a847288c6b194e7c38f42ed3c840 *tests/data/fate/vsynth3-dnxhd-4k-hr-lb.out.rawvideo
|
D | vsynth2-dnxhd-4k-hr-lb | 1 90a59e7600362d156922be89aa966199 *tests/data/fate/vsynth2-dnxhd-4k-hr-lb.dnxhd 2 3993600 tests/data/fate/vsynth2-dnxhd-4k-hr-lb.dnxhd 3 ed9d27aa5a9686cf0055085c5157ff7a *tests/data/fate/vsynth2-dnxhd-4k-hr-lb.out.rawvideo
|
D | vsynth1-dnxhd-hr-lb-mov | 1 ee2f1559d2cf82930d893ca4d0937c01 *tests/data/fate/vsynth1-dnxhd-hr-lb-mov.mov 2 3748599 tests/data/fate/vsynth1-dnxhd-hr-lb-mov.mov 3 21c68252f500bada13ccce232e1ecfca *tests/data/fate/vsynth1-dnxhd-hr-lb-mov.out.rawvideo
|
D | vsynth2-dnxhd-720p-hr-lb | 1 cefe318822be828a03c9eab92f4b2187 *tests/data/fate/vsynth2-dnxhd-720p-hr-lb.dnxhd 2 409600 tests/data/fate/vsynth2-dnxhd-720p-hr-lb.dnxhd 3 d7a6f4bdb30f2b24bc6d4df890e03957 *tests/data/fate/vsynth2-dnxhd-720p-hr-lb.out.rawvideo
|
D | vsynth_lena-dnxhd-4k-hr-lb | 1 c166f5e1355784eae8b82bbaeef79273 *tests/data/fate/vsynth_lena-dnxhd-4k-hr-lb.dnxhd 2 3993600 tests/data/fate/vsynth_lena-dnxhd-4k-hr-lb.dnxhd 3 49c22d3eb9de0194b572f75491444772 *tests/data/fate/vsynth_lena-dnxhd-4k-hr-lb.out.rawvideo
|