HomeSort by relevance Sort by last modified time
    Searched defs:raw (Results 26 - 50 of 1077) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
StringDataItem.java 32 package org.jf.dexlib2.dexbacked.raw;
35 import org.jf.dexlib2.dexbacked.raw.util.DexAnnotator;
StringIdItem.java 32 package org.jf.dexlib2.dexbacked.raw;
35 import org.jf.dexlib2.dexbacked.raw.util.DexAnnotator;
TypeListItem.java 32 package org.jf.dexlib2.dexbacked.raw;
35 import org.jf.dexlib2.dexbacked.raw.util.DexAnnotator;
  /external/vboot_reference/firmware/2lib/include/
2guid.h 25 uint8_t raw[GUID_SIZE]; member in union:vb2_guid::__anon38203
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
Nat384.java 1 package org.bouncycastle.math.raw;
Nat512.java 1 package org.bouncycastle.math.raw;
  /external/deqp/framework/common/
tcuBilinearImageCompare.cpp 63 deUint32 raw = readRGBA8Raw(src, x, y); local
66 res |= getChannel<0>(raw) << RGBA::RED_SHIFT;
67 res |= getChannel<1>(raw) << RGBA::GREEN_SHIFT;
68 res |= getChannel<2>(raw) << RGBA::BLUE_SHIFT;
69 res |= getChannel<3>(raw) << RGBA::ALPHA_SHIFT;
  /external/deqp/framework/delibs/decpp/
deUniquePtr.cpp 176 Object* raw = DE_NULL; local
179 raw = ptr1.release();
180 DE_TEST_ASSERT(raw != DE_NULL);
185 delete raw;
  /external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.decompose/
path.decompose.pass.cpp 66 std::string raw; member in struct:PathDecomposeTestcase
123 path p(TC.raw);
124 assert(p == TC.raw);
158 std::string raw; member in struct:FilenameDecompTestcase
180 path p(TC.raw);
181 assert(p == TC.raw);
  /external/libvpx/libvpx/examples/
vp9_lossless_encoder.c 27 "encoding feature. Supports raw input only.\n");
64 vpx_image_t raw; local
91 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
119 while (vpx_img_read(&raw, infile)) {
120 encode_frame(&codec, &raw, frame_count++, 0, writer);
131 vpx_img_free(&raw);
set_maps.c 158 vpx_image_t raw; local
187 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
215 while (vpx_img_read(&raw, infile)) {
226 encode_frame(&codec, &raw, frame_count, writer);
237 vpx_img_free(&raw);
vp8cx_set_ref.c 100 vpx_image_t raw; local
135 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
161 while (vpx_img_read(&raw, infile)) {
165 ref.img = raw;
170 encode_frame(&codec, &raw, frame_count++, writer);
181 vpx_img_free(&raw);
  /external/python/cpython2/Modules/_ctypes/libffi/src/
java_raw_api.c 32 /* This defines a Java- and 64-bit specific variant of the raw API. */
33 /* It assumes that "raw" argument blocks look like Java stacks on a */
73 ffi_java_raw_to_ptrarray (ffi_cif *cif, ffi_java_raw *raw, void **args)
86 *args = (void*) ((char*)(raw++) + 3);
91 *args = (void*) ((char*)(raw++) + 2);
98 *args = (void *)raw;
99 raw += 2;
104 *args = (void*) &(raw++)->ptr;
108 *args = raw;
109 raw +
310 ffi_java_raw *raw = (ffi_java_raw*)alloca (ffi_java_raw_size (cif)); local
    [all...]
  /external/selinux/libselinux/utils/
selabel_lookup_best_match.c 16 "-r Use \"raw\" function.\n\t"
56 int raw = 0, mode = 0, rc, opt, i, num_links, string_len; local
78 raw = 1;
125 if (raw)
  /external/v8/src/arm64/
utils-arm64.h 89 uint64_t raw = double_to_rawbits(num); local
90 if (std::isnan(num) && ((raw & kDQuietNanMask) == 0)) {
98 uint32_t raw = float_to_rawbits(num); local
99 if (std::isnan(num) && ((raw & kSQuietNanMask) == 0)) {
  /external/zlib/src/examples/
fitblk.c 8 Use fixed-size, stack-allocated raw buffers
76 unsigned char raw[RAWLEN]; local
80 def->avail_in = fread(raw, 1, RAWLEN, in);
83 def->next_in = raw;
99 unsigned char raw[RAWLEN]; local
105 inf->next_out = raw;
114 def->next_in = raw;
  /frameworks/av/media/libstagefright/rtsp/
rtp_test.cpp 82 static const char *raw =
100 static const char *raw = local
115 static const char *raw = local
129 static const char *raw = local
145 static const char *raw = local
162 CHECK(desc->setTo(raw, strlen(raw)));
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
AbstractContentHandler.java 109 * @see org.apache.james.mime4j.ContentHandler#raw(java.io.InputStream)
111 public void raw(InputStream is) throws IOException { method in class:AbstractContentHandler
ContentHandler.java 110 * @param fieldData the raw contents of the field
160 * @param is the contents of the body. NOTE: this is the raw body contents
170 * parser is in <code>raw</code> mode.
172 * @param is the raw contents of the entity.
176 void raw(InputStream is) throws IOException; method in interface:ContentHandler
  /system/media/audio_utils/include/audio_utils/
resampler.h 34 void* raw; member in union:resampler_buffer::__anon114559
48 * buffer->raw points to data returned
55 * buffer->raw points to data released
  /bootable/recovery/tests/component/
imgdiff_test.cpp 45 size_t raw = 0; local
63 raw++;
74 if (num_raw != nullptr) *num_raw = raw;
576 // Expect one CHUNK_NORMAL entry, since it's exceeding the 160-byte limit for RAW.
  /external/boringssl/src/crypto/pem/
pem_info.c 103 unsigned int i, raw, ptype; local
117 raw = 0;
177 raw = 1;
197 raw = 1;
217 raw = 1;
224 if (!raw) {
  /external/boringssl/src/fipstools/
cavp_test_util.cc 163 BIGNUM *raw = NULL; local
164 int ret = BN_hex2bn(&raw, in);
165 out->reset(raw);
  /external/clang/test/CodeGenCXX/
copy-assign-volatile-synthesis.cpp 27 volatile u32_t raw[2]; member in union:ioapic_redir_t::__anon15132
  /external/google-breakpad/src/processor/
fast_source_line_resolver_types.h 58 const char *raw = reinterpret_cast<const char*>(line_ptr); local
59 CopyFrom(raw);
63 void CopyFrom(const char *raw) {
64 address = *(reinterpret_cast<const MemAddr*>(raw));
65 size = *(reinterpret_cast<const MemAddr*>(raw + sizeof(address)));
67 raw + 2 * sizeof(address)));
69 raw + 2 * sizeof(address) + sizeof(source_file_id)));
76 const char *raw = reinterpret_cast<const char*>(func_ptr); local
77 CopyFrom(raw);
81 void CopyFrom(const char *raw) {
99 const char *raw = reinterpret_cast<const char*>(public_symbol_ptr); local
    [all...]

Completed in 7809 milliseconds

12 3 4 5 6 7 8 91011>>