HomeSort by relevance Sort by last modified time
    Searched full:extract (Results 1876 - 1900 of 6076) sorted by null

<<71727374757677787980>>

  /external/libhevc/common/arm64/
ihevc_intra_pred_luma_mode_27_to_33.s 153 umov w14, v5.s[0] //(i row)extract idx to the r register
202 umov w14, v5.s[1] //extract idx to the r register
282 umov w14, v3.s[0] //(i)extract idx to the r register
322 umov w14, v3.s[1] //extract idx to the r register
393 umov w14, v3.s[0] //(i)extract idx to the r register
  /external/pcre/dist/doc/html/
pcrecpp.html 65 You must supply extra pointer arguments to extract matched subpieces.
73 Example: does not try to extract any extra sub-patterns
76 Example: does not try to extract into NULL
300 could extract all words from a string by repeatedly calling
349 <b>Extract</b> is like <b>Replace</b>, except that if the pattern matches,
pcredemo.html 202 we have to extract the count of named parentheses from the pattern. */
215 /* Before we can access the substrings, we must extract the table for
280 sequence. First, find the options with which the regex was compiled; extract
  /external/toybox/toys/pending/
tar.c 1 /* tar.c - create/extract archives
10 USE_TAR(NEWTOY(tar, "&(no-recursion)(numeric-owner)(no-same-permissions)(overwrite)(exclude)*(to-command):o(no-same-owner)p(same-permissions)k(keep-old)c(create)|h(dereference)x(extract)|t(list)|v(verbose)z(gzip)O(to-stdout)m(touch)X(exclude-from)*T(files-from)*C(directory):f(file):[!txc]", TOYFLAG_USR|TOYFLAG_BIN))
18 Create, extract, or list files from a tar file
27 x Extract
30 O Extract to stdout
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
log2_norm.cpp 157 i = extract_h (L_x); // Extract b25-b31
159 a = extract_l (L_x); // Extract b10-b24 of fraction
217 /* Shift L_x to the right by 10 to extract bits 10-31, */
220 i = (Word16)(L_x >> 15); /* Extract b25-b31 */
221 a = L_x & 0x7fff; /* Extract b10-b24 of fraction */
  /prebuilts/go/darwin-x86/src/syscall/
mksyscall_windows.go 334 // extractParams parses s to extract function parameters.
348 return nil, errors.New("Could not extract function parameter from \"" + s2 + "\"")
395 return nil, errors.New("Could not extract function name and parameters from \"" + f.src + "\"")
441 return nil, errors.New("Could not extract dll name from \"" + f.src + "\"")
452 return nil, errors.New("Could not extract dll name from \"" + f.src + "\"")
  /prebuilts/go/linux-x86/src/syscall/
mksyscall_windows.go 334 // extractParams parses s to extract function parameters.
348 return nil, errors.New("Could not extract function parameter from \"" + s2 + "\"")
395 return nil, errors.New("Could not extract function name and parameters from \"" + f.src + "\"")
441 return nil, errors.New("Could not extract dll name from \"" + f.src + "\"")
452 return nil, errors.New("Could not extract dll name from \"" + f.src + "\"")
  /system/bt/bta/sdp/
bta_sdp_act.c 278 /* Extract each value into */
355 /* Try to extract a service name */
362 /* Try to extract an RFCOMM channel */
428 /* For raw, we only extract the first entry, and then return the entire
431 to extract generic data for each chunk - e.g. rfcomm channel and
  /system/core/libpixelflinger/codeflinger/
blending.cpp 119 // see if we need to extract 'component' from the destination (fb)
123 extract(fb, pixel, component);
348 extract(factor, dst_pixel, GGLFormat::ALPHA);
390 // no need to extract 'component' from the destination
425 // no need to extract 'component' from the source
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
wizard.rb 88 # extract nodes matching a pattern
94 # iterate through the tree and extract nodes with pattern labels
278 to validate tree structures as well as to extract nodes that match the pattern.
  /external/autotest/tko/
job_serializer.py 136 Uses getter methods on the pb objects to extract all the
277 Uses all the getter methods on the pb kernel object to extract
364 This function is used to extract attributes from a pb job. The
  /external/ceres-solver/internal/ceres/
polynomial.cc 200 LOG(WARNING) << "Trying to extract roots from a constant "
204 // there, but that we have failed to extract them.
235 LOG(ERROR) << "Failed to extract eigenvalues from companion matrix.";
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
win_platform_backend.py 79 'Failed to extract %s into %s. If python claims that '
87 zip_file.extract(dll_file_name, executable_dir)
95 zip_file.extract(driver_file_name, executable_dir)
  /external/chromium-trace/catapult/third_party/Paste/paste/debug/
doctest_webapp.py 360 # If `want` contains a traceback message, then extract it.
367 # Extract options from the source.
395 # Extract info from the regexp match.
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
Key.java 323 * Optionally extract a {@link Key} for the underlying provision binding(s) if such a
332 * Optionally extract a {@link Key} for the underlying production binding(s) if such a
367 * Optionally extract a {@link Key} for a {@code Set<T>} if the given key is for
  /external/eigen/Eigen/src/UmfPackSupport/
UmfPackSupport.h 15 /* TODO extract L, extract U, compute det, etc... */
402 // extract
  /external/icu/icu4c/source/i18n/
umsg.cpp 360 return res.extract(result, resultLength, *status);
483 return resultStr.extract(result, resultLength, *status);
583 temp.extract(0,len,aString);
uspoof_wsconf.cpp 71 // Extract a regular expression match group into a char * string.
86 s.extract(0, len, destBuf, destCapacity, US_INV);
190 // Extract the two script names from the source line. We need these in an 8 bit
  /external/libbrillo/brillo/dbus/
dbus_method_invoker.h 193 // A helper method to extract a list of values from a message buffer.
215 // Convenient helper method to extract return value(s) of a D-Bus method call.
228 CHECK(message) << "Unable to extract parameters from a NULL message.";
  /external/libvpx/libvpx/vpx/
vpx_codec.h 243 #define VPX_VERSION_MAJOR(v) ((v>>16)&0xff) /**< extract major from packed version */
244 #define VPX_VERSION_MINOR(v) ((v>>8)&0xff) /**< extract minor from packed version */
245 #define VPX_VERSION_PATCH(v) ((v>>0)&0xff) /**< extract patch from packed version */
  /external/llvm/include/llvm/IR/
CallSite.h 278 /// @brief Extract the alignment for a call or parameter (0=unknown).
283 /// @brief Extract the number of dereferenceable bytes for a call or
289 /// @brief Extract the number of dereferenceable_or_null bytes for a call or
  /external/lzma/CPP/7zip/Archive/
IArchive.h 161 IInArchive::Extract:
200 STDMETHOD(Extract)(const UInt32* indices, UInt32 numItems, Int32 testMode, IArchiveExtractCallback *extractCallback) MY_NO_THROW_DECL_ONLY x; \
291 So next Extract can be called for that sequential stream.
  /external/nanopb-c/generator/google/protobuf/
descriptor_pool.py 459 desc_protos: The protos to extract symbols from.
481 enum_protos: The protos to extract symbols from.
500 desc_protos: The protos to extract symbols from.
  /external/pcre/dist/doc/
pcredemo.3 202 we have to extract the count of named parentheses from the pattern. */
215 /* Before we can access the substrings, we must extract the table for
280 sequence. First, find the options with which the regex was compiled; extract
  /external/pcre/dist/
pcredemo.c 185 we have to extract the count of named parentheses from the pattern. */
198 /* Before we can access the substrings, we must extract the table for
263 sequence. First, find the options with which the regex was compiled; extract

Completed in 1224 milliseconds

<<71727374757677787980>>