Searched refs:raw (Results 1 - 25 of 432) sorted by relevance

1234567891011>>

/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Draw.c52 opj_raw_t *raw = (opj_raw_t*)opj_malloc(sizeof(opj_raw_t)); local
53 return raw;
56 void opj_raw_destroy(opj_raw_t *raw) { argument
57 if(raw) {
58 opj_free(raw);
62 OPJ_UINT32 opj_raw_numbytes(opj_raw_t *raw) { argument
63 const ptrdiff_t diff = raw->bp - raw->start;
68 void opj_raw_init_dec(opj_raw_t *raw, OPJ_BYTE *bp, OPJ_UINT32 len) { argument
69 raw
76 opj_raw_decode(opj_raw_t *raw) argument
[all...]
H A Draw.h39 @file raw.h
40 @brief Implementation of operations for raw encoding (RAW)
42 The functions in RAW.C have for goal to realize the operation of raw encoding linked
46 /** @defgroup RAW RAW - Implementation of operations for raw encoding */
79 @param raw RAW handle to destroy
81 void opj_raw_destroy(opj_raw_t *raw);
84 @param raw RAW handle to destroy
87 OPJ_UINT32 opj_raw_numbytes(opj_raw_t *raw);
90 @param raw RAW handle
94 void opj_raw_init_dec(opj_raw_t *raw, OPJ_BYT
[all...]
/external/srec/config/en.us/
H A Drun-bothtags5-from-saved.sh5 # mv a1__VCE_Pete_Gonzalez.raw linux_ship_a1__VCE_Pete_Gonzalez_from_saved.raw
6 # mv a2__VCE_Andrew_Evans.raw linux_ship_a2__VCE_Andrew_Evans_from_saved.raw
7 # mv a3__VCE_Peter_Wilson.raw linux_ship_a3__VCE_Peter_Wilson_from_saved.raw
8 # mv a4__VCE_Edgar_Young.raw linux_ship_a4__VCE_Edgar_Young_from_saved.raw
9 # mv a5__VCE_John_Martinez.raw linux_ship_a5__VCE_John_Martinez_from_saved.raw
[all...]
H A Drun-bothtags5.sh5 # mv a1__VCE_Pete_Gonzalez.raw linux_ship_a1__VCE_Pete_Gonzalez.raw
6 # mv a2__VCE_Andrew_Evans.raw linux_ship_a2__VCE_Andrew_Evans.raw
7 # mv a3__VCE_Peter_Wilson.raw linux_ship_a3__VCE_Peter_Wilson.raw
8 # mv a4__VCE_Edgar_Young.raw linux_ship_a4__VCE_Edgar_Young.raw
9 # mv a5__VCE_John_Martinez.raw linux_ship_a5__VCE_John_Martinez.raw
[all...]
H A Dadb_pull_system_usr_srec_bothtags5.sh8 adb pull $TESTDIR/config/en.us/linux_ship_a1__VCE_Pete_Gonzalez.raw linux_ship_a1__VCE_Pete_Gonzalez.raw
9 adb pull $TESTDIR/config/en.us/linux_ship_a2__VCE_Andrew_Evans.raw linux_ship_a2__VCE_Andrew_Evans.raw
10 adb pull $TESTDIR/config/en.us/linux_ship_a3__VCE_Peter_Wilson.raw linux_ship_a3__VCE_Peter_Wilson.raw
11 adb pull $TESTDIR/config/en.us/linux_ship_a4__VCE_Edgar_Young.raw linux_ship_a4__VCE_Edgar_Young.raw
12 adb pull $TESTDIR/config/en.us/linux_ship_a5__VCE_John_Martinez.raw linux_ship_a5__VCE_John_Martinez.raw
[all...]
H A Dadb_pull_system_usr_srec_bothtags5_from_saved.sh8 adb pull $TESTDIR/config/en.us/linux_ship_a1__VCE_Pete_Gonzalez_from_saved.raw linux_ship_a1__VCE_Pete_Gonzalez_from_saved.raw
9 adb pull $TESTDIR/config/en.us/linux_ship_a2__VCE_Andrew_Evans_from_saved.raw linux_ship_a2__VCE_Andrew_Evans_from_saved.raw
10 adb pull $TESTDIR/config/en.us/linux_ship_a3__VCE_Peter_Wilson_from_saved.raw linux_ship_a3__VCE_Peter_Wilson_from_saved.raw
11 adb pull $TESTDIR/config/en.us/linux_ship_a4__VCE_Edgar_Young_from_saved.raw linux_ship_a4__VCE_Edgar_Young_from_saved.raw
12 adb pull $TESTDIR/config/en.us/linux_ship_a5__VCE_John_Martinez_from_saved.raw linux_ship_a5__VCE_John_Martinez_from_saved.raw
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/messages/
H A Dspoken_message.js23 * A message that has been already localized and should be sent to tts raw.
26 this.raw = null;
/external/clang/bindings/python/tests/cindex/
H A Dtest_comment.py23 raw = test1.raw_comment
25 assert raw == """/// Aaa."""
29 raw = test2.raw_comment
31 assert raw == """/// Bbb.\n/// x"""
35 raw = f.raw_comment
37 assert raw is None
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/raw/tests/
H A Drawpp_test.sh2 ${srcdir}/out_test.sh rawpp_test modules/preprocs/raw/tests "raw preproc" "-f bin -r raw" ""
/external/chromium_org/net/proxy/
H A Dproxy_bypass_rules.cc190 void ProxyBypassRules::ParseFromString(const std::string& raw) { argument
191 ParseFromStringInternal(raw, false);
195 const std::string& raw) {
196 ParseFromStringInternal(raw, true);
215 bool ProxyBypassRules::AddRuleFromString(const std::string& raw) { argument
216 return AddRuleFromStringInternalWithLogging(raw, false);
220 const std::string& raw) {
221 return AddRuleFromStringInternalWithLogging(raw, true);
250 const std::string& raw,
254 base::StringTokenizer entries(raw, ",;");
194 ParseFromStringUsingSuffixMatching( const std::string& raw) argument
219 AddRuleFromStringUsingSuffixMatching( const std::string& raw) argument
249 ParseFromStringInternal( const std::string& raw, bool use_hostname_suffix_matching) argument
264 std::string raw; local
341 AddRuleFromStringInternalWithLogging( const std::string& raw, bool use_hostname_suffix_matching) argument
[all...]
H A Dproxy_bypass_rules.h63 // Initializes the list of rules by parsing the string |raw|. |raw| is a
66 void ParseFromString(const std::string& raw);
74 void ParseFromStringUsingSuffixMatching(const std::string& raw);
94 // Adds a rule given by the string |raw|. The format of |raw| can be any of
143 bool AddRuleFromString(const std::string& raw);
154 bool AddRuleFromStringUsingSuffixMatching(const std::string& raw);
170 void ParseFromStringInternal(const std::string& raw,
172 bool AddRuleFromStringInternal(const std::string& raw,
[all...]
/external/apache-http/src/org/apache/commons/codec/binary/
H A DBinaryCodec.java73 * Converts an array of raw binary data into an array of ascii 0 and 1 characters.
75 * @param raw
76 * the raw binary data to convert
80 public byte[] encode(byte[] raw) { argument
81 return toAsciiBytes(raw);
85 * Converts an array of raw binary data into an array of ascii 0 and 1 chars.
87 * @param raw
88 * the raw binary data to convert
94 public Object encode(Object raw) throws EncoderException { argument
95 if (!(raw instanceo
222 toAsciiBytes(byte[] raw) argument
252 toAsciiChars(byte[] raw) argument
282 toAsciiString(byte[] raw) argument
[all...]
/external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
H A Ddequant.c42 dequant = 2^(scale_factor+1) * ((raw * 2.0 + 1.0) / ((2^bits) - 1) - 1)
45 0 <= raw < (2^bits)-1 (the -1 is because quantized values with all 1's are forbidden)
73 d = 2 * raw + 1 1 <= d <= 2^bits - 2
85 d' =~ 2^31 * (raw * 2.0 + 1.0) / (2^bits - 1) / 1.38...
87 result = d' - 2^31/1.38... =~ 2^31 * ((raw * 2.0 + 1.0) / (2^bits - 1) - 1) / 1.38...
125 INLINE float dequant_float(OI_UINT32 raw, OI_UINT scale_factor, OI_UINT bits) argument
127 float result = (1 << (scale_factor+1)) * ((raw * 2.0f + 1.0f) / ((1 << bits) - 1.0f) - 1.0f);
144 INLINE OI_INT32 OI_SBC_Dequant(OI_UINT32 raw, OI_UINT scale_factor, OI_UINT bits) argument
156 d = (raw * 2) + 1;
165 float_result = dequant_float(raw, scale_facto
183 OI_SBC_Dequant_Unscaled(OI_UINT32 raw, OI_UINT scale_factor, OI_UINT bits) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DRawResourceTest.cpp135 ResourcePtr<Resource> raw = new RawResource(ResourceRequest("data:text/html,"), Resource::Raw); local
136 raw->setLoading(false);
139 ResourceResponse response = raw->response();
141 raw->setResponse(response);
142 EXPECT_FALSE(raw->response().isNull());
145 OwnPtr<AddingClient> addingClient = adoptPtr(new AddingClient(dummyClient.get(), raw.get()));
146 raw->addClient(addingClient.get());
148 raw->removeClient(addingClient.get());
150 EXPECT_FALSE(raw->hasClients());
173 ResourcePtr<Resource> raw local
[all...]
/external/libpng/contrib/pngminus/
H A Dpng2pnm.sh23 ./png2pnm -raw ../pngsuite/basn0g01.png rawn0g01.pgm
24 ./png2pnm -raw ../pngsuite/basn0g02.png rawn0g02.pgm
25 ./png2pnm -raw ../pngsuite/basn0g04.png rawn0g04.pgm
26 ./png2pnm -raw ../pngsuite/basn0g08.png rawn0g08.pgm
27 ./png2pnm -raw ../pngsuite/basn0g16.png rawn0g16.pgm
29 ./png2pnm -raw ../pngsuite/basn2c08.png rawn2c08.ppm
30 ./png2pnm -raw ../pngsuite/basn2c16.png rawn2c16.ppm
32 ./png2pnm -raw ../pngsuite/basn3p01.png rawn3p01.ppm
33 ./png2pnm -raw ../pngsuite/basn3p02.png rawn3p02.ppm
34 ./png2pnm -raw
[all...]
/external/chromium_org/net/http/
H A Ddes.h18 // Build a 64-bit DES key from a 56-bit raw key.
19 NET_EXPORT_PRIVATE void DESMakeKey(const uint8* raw, uint8* key);
H A Ddes.cc79 void DESMakeKey(const uint8* raw, uint8* key) { argument
80 key[0] = DESSetKeyParity(raw[0]);
81 key[1] = DESSetKeyParity((raw[0] << 7) | (raw[1] >> 1));
82 key[2] = DESSetKeyParity((raw[1] << 6) | (raw[2] >> 2));
83 key[3] = DESSetKeyParity((raw[2] << 5) | (raw[3] >> 3));
84 key[4] = DESSetKeyParity((raw[3] << 4) | (raw[
[all...]
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dtestutil.cc36 int raw = static_cast<int>(len * compressed_fraction); local
37 if (raw < 1) raw = 1;
39 RandomString(rnd, raw, &raw_data);
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DNormalizeAlgorithm.cpp270 bool getOptionalCryptoOperationData(const Dictionary& raw, const char* propertyName, bool& hasProperty, RefPtr<ArrayBufferView>& buffer, const ErrorContext& context, AlgorithmError* error) argument
272 if (!raw.get(propertyName, buffer)) {
292 bool getCryptoOperationData(const Dictionary& raw, const char* propertyName, RefPtr<ArrayBufferView>& buffer, const ErrorContext& context, AlgorithmError* error) argument
295 bool ok = getOptionalCryptoOperationData(raw, propertyName, hasProperty, buffer, context, error);
303 bool getUint8Array(const Dictionary& raw, const char* propertyName, RefPtr<Uint8Array>& array, const ErrorContext& context, AlgorithmError* error) argument
305 if (!raw.get(propertyName, array) || !array) {
315 bool getBigInteger(const Dictionary& raw, const char* propertyName, RefPtr<Uint8Array>& array, const ErrorContext& context, AlgorithmError* error) argument
317 if (!getUint8Array(raw, propertyName, array, context, error))
325 if (!raw.get(propertyName, array) || !array) {
333 bool getOptionalInteger(const Dictionary& raw, cons argument
357 getInteger(const Dictionary& raw, const char* propertyName, double& value, double minValue, double maxValue, const ErrorContext& context, AlgorithmError* error) argument
371 getUint32(const Dictionary& raw, const char* propertyName, uint32_t& value, const ErrorContext& context, AlgorithmError* error) argument
380 getUint16(const Dictionary& raw, const char* propertyName, uint16_t& value, const ErrorContext& context, AlgorithmError* error) argument
389 getUint8(const Dictionary& raw, const char* propertyName, uint8_t& value, const ErrorContext& context, AlgorithmError* error) argument
398 getOptionalUint32(const Dictionary& raw, const char* propertyName, bool& hasValue, uint32_t& value, const ErrorContext& context, AlgorithmError* error) argument
413 parseAesCbcParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, AlgorithmError* error) argument
433 parseAesKeyGenParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, AlgorithmError* error) argument
445 parseHash(const Dictionary& raw, blink::WebCryptoAlgorithm& hash, ErrorContext context, AlgorithmError* error) argument
462 parseHmacImportParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, AlgorithmError* error) argument
481 parseHmacKeyGenParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, AlgorithmError* error) argument
501 parseRsaHashedImportParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, AlgorithmError* error) argument
521 parseRsaHashedKeyGenParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, AlgorithmError* error) argument
545 parseAesCtrParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, AlgorithmError* error) argument
566 parseAesGcmParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, AlgorithmError* error) argument
597 parseRsaOaepParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, AlgorithmError* error) argument
611 parseAlgorithmParams(const Dictionary& raw, blink::WebCryptoAlgorithmParamsType type, OwnPtr<blink::WebCryptoAlgorithmParams>& params, ErrorContext& context, AlgorithmError* error) argument
678 parseAlgorithm(const Dictionary& raw, blink::WebCryptoOperation op, blink::WebCryptoAlgorithm& algorithm, ErrorContext context, AlgorithmError* error) argument
724 normalizeAlgorithm(const Dictionary& raw, blink::WebCryptoOperation op, blink::WebCryptoAlgorithm& algorithm, AlgorithmError* error) argument
[all...]
/external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/shell/
H A DAwShellResourceProvider.java24 AwResource.setErrorPageResources(R.raw.error, R.raw.blank_html);
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_ports/
H A Dmem_ops_aligned.h30 #define swap_endian_16(val,raw) do {\
31 val = ((raw>>8) & 0x00ff) \
32 | ((raw<<8) & 0xff00);\
34 #define swap_endian_32(val,raw) do {\
35 val = ((raw>>24) & 0x000000ff) \
36 | ((raw>>8) & 0x0000ff00) \
37 | ((raw<<8) & 0x00ff0000) \
38 | ((raw<<24) & 0xff000000); \
40 #define swap_endian_16_se(val,raw) do {\
41 swap_endian_16(val,raw);\
[all...]
/external/libvpx/libvpx/vpx_ports/
H A Dmem_ops_aligned.h30 #define swap_endian_16(val,raw) do {\
31 val = ((raw>>8) & 0x00ff) \
32 | ((raw<<8) & 0xff00);\
34 #define swap_endian_32(val,raw) do {\
35 val = ((raw>>24) & 0x000000ff) \
36 | ((raw>>8) & 0x0000ff00) \
37 | ((raw<<8) & 0x00ff0000) \
38 | ((raw<<24) & 0xff000000); \
40 #define swap_endian_16_se(val,raw) do {\
41 swap_endian_16(val,raw);\
[all...]
/external/deqp/framework/referencerenderer/
H A DrrMultisamplePixelBufferAccess.cpp82 : m_access(msAccess.raw())
119 return MultisamplePixelBufferAccess::fromMultisampleAccess(tcu::getSubregion(access.raw(), 0, x, y, access.getNumSamples(), width, height));
124 return MultisampleConstPixelBufferAccess::fromMultisampleAccess(tcu::getSubregion(access.raw(), 0, x, y, access.getNumSamples(), width, height));
129 DE_ASSERT(dst.getWidth() == src.raw().getHeight());
130 DE_ASSERT(dst.getHeight() == src.raw().getDepth());
139 for (int s = 0; s < src.raw().getWidth(); s++)
140 sum += src.raw().getPixel(s, x, y);
151 sum += access.raw().getPixel(s, x, y);
158 tcu::clear(access.raw(), color);
163 tcu::clear(access.raw(), colo
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DContentType.h42 const String& raw() const { return m_type; } function in class:WebCore::ContentType
/external/clang/test/CodeGen/
H A D2008-01-28-UnionSize.c11 __u8 raw[6]; member in union:bcm43xx_plcp_hdr6::__anon17750

Completed in 838 milliseconds

1234567891011>>