HomeSort by relevance Sort by last modified time
    Searched defs:dec (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
nomem64.asm 28 dec ecx label
  /external/clang/test/SemaCXX/
increment-decrement.cpp 6 const int &dec = i--; variable
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_sqrtl.c 54 dec(long double x) function
146 xn = dec(xn); /* xn = xn - ulp. */
  /external/chromium_org/remoting/host/win/
com_security.cc 60 << std::hex << result << std::dec << "."; member in class:remoting::std
rdp_desktop_session.cc 53 << std::hex << result << std::dec << "."; member in class:remoting::std
59 << std::dec << "."; member in class:remoting::std
chromoting_module.cc 130 << std::hex << result << std::dec << "."; member in class:remoting::std
144 << std::hex << result << std::dec << "."; member in class:remoting::std
155 << std::hex << result << std::dec << "."; member in class:remoting::std
  /external/chromium_org/third_party/libsrtp/srtp/crypto/include/
cryptoalg.h 105 cryptoalg_inv_t dec; member in struct:cryptoalg_ctx_t
xfm.h 151 cryptoalg_inv_t dec; member in struct:cryptoalg_ctx_t
  /external/chromium_org/third_party/opus/src/celt/tests/
test_unit_laplace.c 57 ec_dec dec; local
78 ec_dec_init(&dec,ec_get_buffer(&enc),ec_range_bytes(&enc));
82 int d = ec_laplace_decode(&dec,
test_unit_entropy.c 54 ec_dec dec; local
109 ec_dec_init(&dec,ptr,DATA_SIZE);
112 sym=ec_dec_uint(&dec,ft);
121 sym=ec_dec_bits(&dec,ftb);
128 nbits2=ec_tell_frac(&dec);
152 ec_dec_init(&dec,ptr,2);
155 ||ec_dec_bits(&dec,7)!=0x05
157 ||ec_dec_uint(&dec,2)!=1
158 ||ec_dec_uint(&dec,3)!=1
159 ||ec_dec_uint(&dec,4)!=
    [all...]
  /external/javassist/src/main/javassist/runtime/
Cflow.java 31 void dec() { --depth; } method in class:Cflow.Depth
46 public void exit() { ((Depth)get()).dec(); }
  /external/libopus/celt/tests/
test_unit_laplace.c 57 ec_dec dec; local
78 ec_dec_init(&dec,ec_get_buffer(&enc),ec_range_bytes(&enc));
82 int d = ec_laplace_decode(&dec,
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
decode_api_test.cc 31 vpx_codec_ctx_t dec; local
34 EXPECT_EQ(VPX_CODEC_INVALID_PARAM, vpx_codec_dec_init(&dec, NULL, NULL, 0));
48 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_dec_init(&dec, kCodecs[i], NULL, 0));
50 vpx_codec_decode(&dec, buf, NELEMENTS(buf), NULL, 0));
52 vpx_codec_decode(&dec, NULL, NELEMENTS(buf), NULL, 0));
54 vpx_codec_decode(&dec, buf, 0, NULL, 0));
56 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_destroy(&dec));
63 void TestVp9Controls(vpx_codec_ctx_t *dec) {
72 const vpx_codec_err_t res = vpx_codec_control_(dec, kControls[i], val);
82 vpx_codec_control_(dec, kControls[i], NULL))
113 vpx_codec_ctx_t dec; local
    [all...]
  /external/chromium_org/third_party/libwebp/dec/
alpha.c 26 ALPHDecoder* const dec = (ALPHDecoder*)WebPSafeCalloc(1ULL, sizeof(*dec)); local
27 return dec;
30 void ALPHDelete(ALPHDecoder* const dec) {
31 if (dec != NULL) {
32 VP8LDelete(dec->vp8l_dec_);
33 dec->vp8l_dec_ = NULL;
34 WebPSafeFree(dec);
45 static int ALPHInit(ALPHDecoder* const dec, const uint8_t* data,
55 dec->width_ = width
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
decoder_database_unittest.cc 76 AudioDecoder* dec = db.GetDecoder(kPayloadType); local
77 ASSERT_TRUE(dec != NULL);
  /external/chromium_org/v8/src/
ostreams.cc 95 OStream& OStream::dec() { function in class:v8::internal::OStream
122 OStream& dec(OStream& os) { // NOLINT(runtime/references) function in namespace:v8::internal
123 return os.dec();
  /external/chromium_org/v8/test/cctest/
test-ostreams.cc 120 os << 123 << hex << 123 << endl << 123 << dec << 123 << 123; local
  /external/eigen/Eigen/src/misc/
Kernel.h 44 kernel_retval_base(const DecompositionType& dec)
45 : m_dec(dec),
46 m_rank(dec.rank()),
47 m_cols(m_rank==dec.cols() ? 1 : dec.cols() - m_rank)
53 inline const DecompositionType& dec() const { return m_dec; } function in struct:Eigen::internal::kernel_retval_base
73 using Base::dec; \
77 kernel_retval(const DecompositionType& dec) : Base(dec) {}
Solve.h 40 solve_retval_base(const DecompositionType& dec, const Rhs& rhs)
41 : m_dec(dec), m_rhs(rhs)
46 inline const DecompositionType& dec() const { return m_dec; } function in struct:Eigen::internal::solve_retval_base
67 using Base::dec; \
71 solve_retval(const DecompositionType& dec, const Rhs& rhs) \
72 : Base(dec, rhs) {}
Image.h 43 image_retval_base(const DecompositionType& dec, const MatrixType& originalMatrix)
44 : m_dec(dec), m_rank(dec.rank()),
52 inline const DecompositionType& dec() const { return m_dec; } function in struct:Eigen::internal::image_retval_base
74 using Base::dec; \
79 image_retval(const DecompositionType& dec, const MatrixType& originalMatrix) \
80 : Base(dec, originalMatrix) {}
  /external/chromium_org/remoting/host/
audio_capturer_win.cc 273 << std::hex << hr << std::dec << "."; member in class:remoting::std
  /external/chromium_org/third_party/opus/src/celt/
opus_custom_demo.c 49 OpusCustomDecoder *dec; local
112 dec = opus_custom_decoder_create(mode, channels, &err);
120 opus_custom_decoder_ctl(dec, OPUS_GET_LOOKAHEAD(&skip));
168 ret = opus_custom_decode(dec, NULL, len, out, frame_size);
170 ret = opus_custom_decode(dec, data, len, out, frame_size);
191 opus_custom_decoder_destroy(dec);
  /external/chromium_org/third_party/simplejson/
__init__.py 472 import simplejson.decoder as dec namespace
477 dec.scanstring = dec.c_scanstring or dec.py_scanstring
483 dec.scanstring = dec.py_scanstring
487 dec.make_scanner = scan.make_scanner
  /external/chromium_org/tools/gn/
standard_out.cc 70 void OutputString(const std::string& output, TextDecoration dec) {
73 switch (dec) {
108 void OutputString(const std::string& output, TextDecoration dec) {
111 switch (dec) {
134 if (is_console && dec != DECORATION_NONE)
185 TextDecoration dec = DECORATION_NONE; local
189 dec = DECORATION_DIM;
196 OutputString(line + "\n", dec);
  /external/chromium_org/v8/test/mjsunit/
array-reduce.js 102 function dec(a, b, i, arr) { return a + b * Math.pow(10, arr.length - i - 1); } function
125 simpleArray, dec, 0);
136 testReduce("reduce", "EmptyReduceDec", 0, [], [], dec, 0);
141 testReduce("reduce", "EmptyReduceDecNoInit", 0, [], [0], dec);
162 simpleSparseArray, dec, 0);
173 testReduce("reduce", "EmptySparseReduceDecNoInit", 0, [], [,,0,,], dec);
203 verySparseArray, dec, 0);
226 verySparseArray, dec);
253 simpleArray, dec, 0);
264 testReduce("reduceRight", "EmptyReduceRightDec", 0, [], [], dec, 0)
    [all...]

Completed in 515 milliseconds

1 2 3 4 5