HomeSort by relevance Sort by last modified time
    Searched refs:varname (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/libvorbis/doc/
04-codec.tex 63 \varname{[vorbis_version]} is to read '0' in order to be compatible
64 with this document. Both \varname{[audio_channels]} and
65 \varname{[audio_sample_rate]} must read greater than zero. Allowed final
67 Vorbis I. \varname{[blocksize_0]} must be less than or equal to
68 \varname{[blocksize_1]}. The framing bit must be nonzero. Failure to
111 \item \varname{[vorbis_codebook_count]} = read eight bits as unsigned integer and add one
112 \item Decode \varname{[vorbis_codebook_count]} codebooks in order as defined
115 codebook configurations \varname{[vorbis_codebook_configurations]}.
127 \item \varname{[vorbis_time_count]} = read 6 bits as unsigned integer and add one
128 \item read \varname{[vorbis_time_count]} 16 bit values; each value should be zero. If any value is nonzero, this is a (…)
    [all...]
09-helper.tex 18 \varname{[x]}. Values of \varname{[x]} less than zero are defined to return zero.
72 \varname{[codebook_entries]}.
75 integer value for which \varname{[return_value]} to the power of
76 \varname{[codebook_dimensions]} is less than or equal to
77 \varname{[codebook_entries]}'.
83 "low_neighbor(v,x)" finds the position \varname{n} in vector \varname{[v]} of
84 the greatest value scalar element for which \varname{n} is less than
85 \varname{[x]} and vector \varname{[v]} element \varname{n} is les
    [all...]
06-floor0.tex 42 \varname{[floor0_book_list]} that is greater than the maximum codebook
51 decoding the curve amplitude and \varname{[floor0_order]} LSP
78 \item An \varname{[amplitude]} value of zero must result in a return code that indicates this channel is unused in this frame (the output of the channel will be all-zeroes in synthesis). Several later stages of decode don't occur for an unused channel.
82 \varname{[amplitude]} value had read zero at the beginning of decode.
85 can, in fact, be stored in the bitstream in \link{vorbis:spec:ilog}{ilog}( \varname{[floor0_number_of_books]} -
89 \item The number of scalars read into the vector \varname{[coefficients]}
90 may be greater than \varname{[floor0_order]}, the number actually
93 \varname{[codebook_dimensions]} value of three and
94 \varname{[floor0_order]} is ten, the only way to fill all the needed
95 scalars in \varname{[coefficients]} is to to read a total of twelv
    [all...]
10-tables.tex 8 The vector \varname{[floor1_inverse_dB_table]} is a 256 element static
08-residue.tex 166 \varname{[residue_begin]} and
167 \varname{[residue_end]} select the specific sub-portion of
170 \varname{[residue_begin]} and ends at
171 \varname{[residue_end]}. Preceding and following values in
173 values as well as \varname{[residue_partition_size]}apply to
175 \varname{[residue_partition_size]} is as explained above,
176 \varname{[residue_classifications]} is the number of possible
178 \varname{[residue_classbook]} is the codebook number used to
180 \varname{[residue_classbook]} determines how many
183 \varname{[residue_classbook]}, along wit
    [all...]
07-floor1.tex 160 a \varname{[floor1_class_masterbooks]} or
161 \varname{[floor1_subclass_books]} scalar element greater than the
169 Packet decode begins by checking the \varname{[nonzero]} flag:
175 If \varname{[nonzero]} is unset, that indicates this channel contained
183 Assuming \varname{[nonzero]} is set, decode proceeds as follows:
229 \varname{[nonzero]} flag had been unset at the beginning of decode.
232 Vector \varname{[floor1_Y]} contains the values from packet decode
338 Curve synthesis generates a return vector \varname{[floor]} of length
339 \varname{[n]} (where \varname{[n]} is provided by the decode proces
    [all...]
03-codebook.tex 44 16 bit \varname{[codebook_dimensions]} and 24 bit \varname{[codebook_entries]} fields:
57 Next is the \varname{[ordered]} bit flag:
66 total of \varname{[codebook_entries]}, is assigned a codeword length.
68 the array \varname{[codebook_codeword_lengths]}. Decode of lengths is
69 according to whether the \varname{[ordered]} flag is set or unset.
73 If the \varname{[ordered]} flag is unset, the codeword list is not
78 \varname{[sparse]} flag. This flag determines whether or not the
86 The decoder now performs for each of the \varname{[codebook_entries]}
115 If the \varname{[ordered]} flag is set, the codeword list for thi
    [all...]
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
ittnotify_types.h 51 #define ITT_GROUP_LIST(varname) \
52 static __itt_group_list varname[] = { \
  /external/v8/src/third_party/vtune/
ittnotify_types.h 93 #define ITT_GROUP_LIST(varname) \
94 static __itt_group_list varname[] = { \
  /external/icu/icu4c/source/common/
locbased.h 22 #define U_LOCALE_BASED(varname, objname) \
23 LocaleBased varname((objname).validLocale, (objname).actualLocale);
  /external/valgrind/coregrind/
pub_core_libcproc.h 72 extern HChar **VG_(env_setenv) ( HChar ***envp, const HChar* varname,
74 extern void VG_(env_unsetenv) ( HChar **env, const HChar *varname );
vg_preloaded.c 131 static void env_unsetenv ( HChar **env, const HChar *varname )
135 Int len = strlen(varname);
138 if (!(strncmp(varname, *from, len) == 0 && (*from)[len] == '=')) {
m_libcproc.c 79 HChar *VG_(getenv)(const HChar *varname)
83 n = VG_(strlen)(varname);
86 if (VG_(strncmp)(varname, s, n) == 0 && s[n] == '=') {
93 void VG_(env_unsetenv) ( HChar **env, const HChar *varname )
97 vg_assert(varname);
99 Int len = VG_(strlen)(varname);
102 if (!(VG_(strncmp)(varname, *from, len) == 0 && (*from)[len] == '=')) {
111 HChar **VG_(env_setenv) ( HChar ***envp, const HChar* varname,
116 Int len = VG_(strlen)(varname);
120 VG_(sprintf)(valstr, "%s=%s", varname, val)
    [all...]
  /external/libxml2/win32/wince/
wincecompat.c 57 char *getenv( const char *varname )
wincecompat.h 38 char *getenv( const char *varname );
  /external/v8/test/mjsunit/regress/
regress-2612.js 54 function varname(i) { function
61 source += [varname(i), "=", rand(), ","].join("");
65 source += [varname(i), "=",
66 varname(randi(i)), "+",
67 varname(randi(i)), ","].join("");
  /external/protobuf/src/google/protobuf/io/
printer.cc 89 string varname(text + pos, endpos - pos);
90 if (varname.empty()) {
95 map<string, string>::const_iterator iter = variables.find(varname);
97 GOOGLE_LOG(DFATAL) << " Undefined variable: " << varname;
  /external/google-breakpad/src/third_party/linux/include/gflags/
gflags.h 307 // In each case, if 'varname' does not exist in the environment
308 // return defval. If 'varname' does exist but is not valid
313 extern bool BoolFromEnv(const char *varname, bool defval);
314 extern int32 Int32FromEnv(const char *varname, int32 defval);
315 extern int64 Int64FromEnv(const char *varname, int64 defval);
316 extern uint64 Uint64FromEnv(const char *varname, uint64 defval);
317 extern double DoubleFromEnv(const char *varname, double defval);
318 extern const char *StringFromEnv(const char *varname, const char *defval);
  /ndk/sources/host-tools/nawk-20071023/
awkgram.y 69 %type <p> var varname funcname varlist
128 | FOR '(' varname IN varname rparen {inloop++;} stmt
212 | ppattern IN varname { $$ = op2(INTEST, $1, makearr($3)); }
213 | '(' plist ')' IN varname { $$ = op2(INTEST, $2, makearr($5)); }
239 | pattern IN varname { $$ = op2(INTEST, $1, makearr($3)); }
240 | '(' plist ')' IN varname { $$ = op2(INTEST, $2, makearr($5)); }
305 | DELETE varname '[' patlist ']' { $$ = stat2(DELETE, makearr($2), $4); }
306 | DELETE varname { $$ = stat2(DELETE, makearr($2), 0); }
390 | SPLIT '(' pattern comma varname comma pattern ')' /* string *
434 varname: label
    [all...]
  /ndk/sources/host-tools/make-3.81/
variable.c 1004 do_variable_definition (const struct floc *flocp, const char *varname,
1031 v = lookup_variable (varname, strlen (varname));
1050 v = lookup_variable_in_set (varname, strlen (varname),
1059 v = lookup_variable (varname, strlen (varname));
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/chicken/
chicken.swg 79 $result = to_scheme (convtype ($varname));
112 $result = to_scheme (&space, convtype ($varname));
232 $result = SWIG_NewPointerObj($varname, $descriptor, 0);
237 $result = SWIG_NewPointerObj((void *) &$varname, $1_descriptor, 0);
306 SWIG_PackData(temp, (void *) &$varname, ptr_size);
381 { char *s = (char*) $varname;
382 if ($varname == NULL) {
386 int string_len = strlen ($varname);
518 %{ if ($varname == NULL) {
522 const int string_len = strlen ($varname);
    [all...]
  /external/scrypt/
import_scrypt.sh 226 declare -r varname=$1
229 echo "$varname :="
231 echo "$varname := \\"
244 declare -r varname=$1
247 echo "$varname :="
249 echo "$varname := \\"
  /external/vboot_reference/tests/bitmaps/
TestBmpBlock.py 200 varname = 'BMPBLK' variable
201 if varname not in os.environ:
203 'environment variable.' % varname)
205 prog = os.environ[varname]
  /external/compiler-rt/make/
util.mk 98 $(call Set,varname,$(firstword $(subst =, ,$(arg)))) \
99 $(if $(call contains,$(1),$(varname)),,\
100 $(error "Invalid command line override: $(1) $(varname) (not supported)")))
  /ndk/sources/android/support/tests/minitest/
minitest.h 293 #define MINITEST_DEFINE_LOCAL_EXPR_(varname, expr) \
294 typedef minitest::internal::AddConst<__typeof__(expr)>::type varname##Type; \
295 const varname##Type varname = (expr);

Completed in 528 milliseconds

1 2 3