/external/iproute2/tc/ |
D | q_atm.c | 56 __u32 excess = 0; in atm_parse_class_opt() local 135 if (!strcmp(*argv,"clp")) excess = 0; in atm_parse_class_opt() 136 else if (get_tc_classid(&excess,*argv)) { in atm_parse_class_opt() 183 if (excess) addattr_l(n,1024,TCA_ATM_EXCESS,&excess,sizeof(excess)); in atm_parse_class_opt() 222 __u32 excess; in atm_print_opt() local 224 if (RTA_PAYLOAD(tb[TCA_ATM_EXCESS]) < sizeof(excess)) in atm_print_opt() 227 excess = rta_getattr_u32(tb[TCA_ATM_EXCESS]); in atm_print_opt() 228 if (!excess) fprintf(f,"excess clp "); in atm_print_opt() 232 print_tc_classid(buf,sizeof(buf),excess); in atm_print_opt()
|
/external/boringssl/src/crypto/poly1305/ |
D | poly1305_test.cc | 29 static void TestSIMD(unsigned excess, const std::vector<uint8_t> &key, in TestSIMD() argument 48 if (done + 128 + excess > in.size()) { in TestSIMD() 51 CRYPTO_poly1305_update(&state, in.data() + done, 128 + excess); in TestSIMD() 52 done += 128 + excess; in TestSIMD() 55 if (done + excess > in.size()) { in TestSIMD() 58 CRYPTO_poly1305_update(&state, in.data() + done, excess); in TestSIMD() 59 done += excess; in TestSIMD() 68 EXPECT_EQ(Bytes(out), Bytes(mac)) << "SIMD pattern " << excess << " failed."; in TestSIMD()
|
/external/python/cpython2/Lib/ |
D | sunaudio.py | 28 excess = hdr_size - 24 29 if excess < 0: 31 if excess > 0: 32 info = fp.read(excess)
|
/external/libopus/celt/ |
D | rate.c | 435 opus_int32 excess, bit; in interp_bits2pulses() local 444 excess = MAX32(bit-cap[j],0); in interp_bits2pulses() 445 bits[j] = bit-excess; in interp_bits2pulses() 487 excess = MAX32(0,bit-(C<<BITRES)); in interp_bits2pulses() 488 bits[j] = bit-excess; in interp_bits2pulses() 496 if(excess > 0) in interp_bits2pulses() 500 extra_fine = IMIN(excess>>(stereo+BITRES),MAX_FINE_BITS-ebits[j]); in interp_bits2pulses() 503 fine_priority[j] = extra_bits >= excess-balance; in interp_bits2pulses() 504 excess -= extra_bits; in interp_bits2pulses() 506 balance = excess; in interp_bits2pulses()
|
/external/curl/lib/ |
D | transfer.c | 397 size_t excess = 0; /* excess bytes read */ in readwrite_data() local 681 excess = (size_t)(k->bytecount + nread - k->maxdownload); in readwrite_data() 682 if(excess > 0 && !k->ignorebody) { in readwrite_data() 691 excess, data->state.path, in readwrite_data() 693 read_rewind(conn, excess); in readwrite_data() 702 excess, k->size, k->maxdownload, k->bytecount); in readwrite_data() 795 (excess > 0 && !conn->bits.stream_was_rewound)) { in readwrite_data() 798 nread = (ssize_t)excess; in readwrite_data()
|
/external/clang/test/SemaOpenCL/ |
D | vector_literals_invalid.cl | 10 int4 b = (int4)(1,2,3,4,5); // expected-error{{excess elements in vector}}
|
/external/harfbuzz_ng/src/ |
D | hb-ot-shape-complex-arabic.cc | 546 hb_position_t excess = (n_copies + 1) * sign * w_repeating - sign * w_remaining; in apply_stch() local 547 if (excess > 0) in apply_stch() 548 extra_repeat_overlap = excess / (n_copies * n_repeating); in apply_stch()
|
/external/deqp/modules/gles3/functional/ |
D | es3fNegativeStateApiTests.cpp | 552 for (int excess = 0; excess <= 2; excess++) in init() 556 invalidUniformIndices.push_back(numActiveUniforms-1+excess); in init() 561 expectError(excess == 0 ? GL_NO_ERROR : GL_INVALID_VALUE); in init()
|
/external/swiftshader/third_party/LLVM/docs/CommandGuide/ |
D | llc.pod | 81 =item B<--disable-excess-fp-precision> 83 Disable optimizations that may produce excess precision for floating point.
|
D | lli.pod | 101 =item B<-disable-excess-fp-precision>
|
/external/llvm/docs/CommandGuide/ |
D | llc.rst | 94 .. option:: --disable-excess-fp-precision 96 Disable optimizations that may produce excess precision for floating point.
|
D | lli.rst | 96 .. option:: -disable-excess-fp-precision
|
/external/python/cpython2/Objects/ |
D | obmalloc.c | 560 uint excess; /* number of bytes above pool alignment */ in new_arena() local 645 excess = (uint)(arenaobj->address & POOL_SIZE_MASK); in new_arena() 646 if (excess != 0) { in new_arena() 648 arenaobj->pool_address += POOL_SIZE - excess; in new_arena()
|
/external/fmtlib/doc/bootstrap/ |
D | normalize.less | 64 // Remove excess height in iOS 5 devices. 331 // 2. Remove excess padding in IE 8/9/10.
|
/external/deqp/modules/gles31/functional/ |
D | es31fNegativeStateApiTests.cpp | 838 for (int excess = 0; excess <= 2; excess++) in get_active_uniformsiv() local 842 invalidUniformIndices.push_back(numActiveUniforms-1+excess); in get_active_uniformsiv() 847 ctx.expectError(excess == 0 ? GL_NO_ERROR : GL_INVALID_VALUE); in get_active_uniformsiv()
|
/external/python/cpython2/Misc/ |
D | SpecialBuilds.txt | 113 requesting a larger memory block, the new excess bytes are also filled with 116 is called requesting a smaller memory block, the excess old bytes are also
|
/external/python/cpython2/Modules/_ctypes/libffi/ |
D | ChangeLog | 686 testsuite/libffi.call/many.c: Avoid spurious failure due to excess precision 698 testsuite/libffi.call/many_win32.c: Avoid spurious failure due to excess precision 701 to excess floating-point precision. Instrumenting it with some printf 708 to avoid excess precision, just simplify the floating-point computation 709 to avoid a dependency on potential excess precision. 715 testsuite/libffi.call/many.c: Avoid spurious failure due to excess precision 718 excess floating-point precision. Instrumenting it with some printf 725 to avoid excess precision, just simplify the floating-point computation 726 to avoid a dependency on potential excess precision. 3995 * testsuite/libffi.call/float2.c: Fix dg-excess-errors.
|
D | ChangeLog.libffi | 21 * testsuite/libffi.call/float2.c: Fix dg-excess-errors.
|
/external/python/cpython2/Doc/reference/ |
D | compound_stmts.rst | 524 receiving any excess positional parameters, defaulting to the empty tuple. If 526 receiving any excess keyword arguments, defaulting to a new empty dictionary.
|
D | expressions.rst | 739 containing the excess positional arguments (or an empty tuple if there were no 740 excess positional arguments). 745 dictionary containing the excess keyword arguments (using the keywords as keys 747 there were no excess keyword arguments.
|
/external/libchrome/ |
D | SConstruct | 20 # the required order). The split between them is purely to reduce excess
|
/external/python/cpython2/Doc/library/ |
D | 2to3.rst | 420 Removes excess whitespace from comma separated items. This fixer is
|
D | time.rst | 373 *format*, or if it has excess data after parsing, :exc:`ValueError` is raised.
|
/external/tagsoup/ |
D | CHANGES | 19 Allow link elements in the body as well as the head, to avoid excess bodies
|
/external/syslinux/doc/ |
D | CodingStyle.txt | 444 ugly), but try to avoid excess. Instead, put the comments at the head
|