Searched refs:place (Results 1 - 25 of 40) sorted by relevance

12

/external/oprofile/module/
H A Dop_dcache.h64 char * place = op_pool_pos; local
68 strcpy(place, str);
70 return place - op_pool_start;
/external/openssl/crypto/bio/
H A Db_print.c488 int place = 0; local
512 convert[place++] =
516 } while (uvalue && (place < (int)sizeof(convert)));
517 if (place == sizeof(convert))
518 place--;
519 convert[place] = 0;
521 zpadlen = max - place;
522 spadlen = min - OSSL_MAX(max, place) - (signvalue ? 1 : 0) - strlen(prefix);
558 while (place > 0)
559 doapr_outch(sbuffer, buffer, currlen, maxlen, convert[--place]);
[all...]
/external/collada/src/dae/
H A DdaeMetaElement.cpp190 daeInt place=0; local
193 place += _metaAttributes[i]->getSize();
195 place += align;
196 place &= (~(align-1));
198 _elementSize = place;
235 daeBool daeMetaElement::place(daeElement *parent, daeElement *child, daeUInt *ordinal ) function in class:daeMetaElement
H A DdaeMetaGroup.cpp67 if ( _elementContainer->_elementType->place( el, child, &ordinal ) ) {
74 //if you couldn't place in existing groups make a new one if you can
91 if ( _elementContainer->_elementType->place( el, child, &ordinal ) ) {
/external/srec/srec/cfront/
H A Dhimul32.h51 mulhw r3, factor1, factor2 # place the high order 32 bits of the product in the return register r3
/external/webkit/Tools/Scripts/
H A Dupdate-webkit-support-libs140 and place it in:
/external/bison/src/
H A Dtables.c773 base_number place; local
777 place = pack_vector (i);
780 place = base[s];
782 pos[i] = place;
783 base[order[i]] = place;
/external/collada/include/dae/
H A DdaeMetaElement.h277 * @param child Child element to place in the parent.
280 DLLSPEC daeBool place(daeElement *parent, daeElement *child, daeUInt *ordinal = NULL);
286 * @param child Child element to place in the parent.
297 * @param child Child element to place in the parent.
306 * @param child Child element to place in the parent.
337 * child type. Typically @c place() is called after @c create(childelementname)
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemNumber.java1939 int place = 0;
1945 while (val >= m_romanConvertTable[place].m_postValue)
1947 roman += m_romanConvertTable[place].m_postLetter;
1948 val -= m_romanConvertTable[place].m_postValue;
1953 if (val >= m_romanConvertTable[place].m_preValue)
1955 roman += m_romanConvertTable[place].m_preLetter;
1956 val -= m_romanConvertTable[place].m_preValue;
1960 place++;
/external/valgrind/main/exp-ptrcheck/
H A Dpc_common.c344 Char *place, *legit, *how_invalid; local
381 if (cmp < 0) place = "before";
382 else if (cmp == 0) place = "inside";
383 else place = "after";
399 a, miss_size, place );
415 a, miss_size, place );
/external/netperf/
H A Dnetlib.c354 static char *place = EMSG; /* option letter processing */
357 if (!*place) {
359 if (optind >= argc || *(place = argv[optind]) != '-' || !*++place) {
362 if (*place == '-') {
365 place = EMSG ; /* Added by shiva for Netperf */
371 if ((optopt = (int)*place++) == (int)':'
373 if (!*place) {
382 if (!*place)
386 if (*place) {
351 static char *place = EMSG; /* option letter processing */ local
[all...]
/external/mesa3d/docs/
H A DMESA_ycbcr_texture.spec38 operations take place. Only 2D texture images are supported (not
201 3 September 2003 - further clarify when YCbCr->RGB conversion takes place
/external/llvm/lib/Support/Unix/
H A DProgram.inc204 // If stdout and stderr should go to the same place, redirect stderr
254 // If stdout and stderr should go to the same place, redirect stderr
/external/grub/netboot/
H A Dtlan.c443 u8 place; local
450 for ( place = 0x80; place != 0; place >>= 1 ) {
451 if ( place & data )
500 u8 place; local
509 for ( place = 0x80; place; place >>= 1 ) {
512 *data |= place;
[all...]
/external/llvm/lib/Support/Windows/
H A DProgram.inc257 // If stdout and stderr should go to the same place, redirect stderr
/external/openssl/crypto/bn/asm/
H A Darmv4-mont.s132 .Lcopy: ldr r7,[r1],#4 @ copy or in-place refresh
H A Dppc-mont.pl299 Lcopy: ; copy or in-place refresh
H A Dppc64-mont.pl195 slwi $tp,$num,2 ; place for {an}p_{lh}[num], i.e. 4*num
196 add $tp,$tp,$num ; place for tp[num+1]
878 Lcopy: ; copy or in-place refresh
/external/libvpx/examples/includes/ASCIIMathPHP-2.0/
H A DASCIIMathPHP-2.0.class.php541 if ($node_1 === FALSE) { //show box in place of missing argument
609 if ($node_1 === FALSE) { //should show box in place of missing argument
/external/dropbear/libtommath/
H A Dbn.tex1070 To multiply by the polynomial $g(x) = x$ all you have todo is shift the digits of the basis left one place. The
1078 This will multiply $a$ in place by $x^b$ which is equivalent to shifting the digits left $b$ places and inserting zeroes
1085 This will divide $a$ in place by $x^b$ and discard the remainder. This function cannot fail as it performs the operations
1086 in place and no new digits are required to complete it.
1319 This will reduce $a$ in place modulo $b$ with the precomputed $\mu$ value in $c$. $a$ must be in the range
1392 This reduces $a$ in place modulo $m$ with the pre--computed value $mp$. $a$ must be in the range
1515 This reduces $a$ in place modulo $b$ with the pre--computed value $mp$. $b$ must be of a restricted
1544 This will reduce $a$ in place modulo $n$ with the pre--computed value $d$. From my experience this routine is
/external/webkit/Source/WebKit/mac/Carbon/
H A DCarbonWindowAdapter.mm789 // Tell the content view it's new place in the responder chain.
1021 - (void)_reallyDoOrderWindow:(NSWindowOrderingMode)place relativeTo:(int)otherWin findKey:(BOOL)doKeyCalc forCounter:(BOOL)isACounter force:(BOOL)doForce isModal:(BOOL)isModal {
/external/webrtc/src/modules/audio_processing/aecm/main/matlab/
H A Dcompsup.m40 gamma_echo=1.0; % same as suppress_overdrive but at different place
/external/zlib/contrib/masm686/
H A Dmatch.asm122 ; Saved Registers (actually pushed into place)
/external/icu4c/data/
H A Dmakedata.mak117 # This is the same place that all of the other ICU DLLs go (the code-containing DLLs)
140 # only the data is put in place.)
573 # The $(U_ICUDATA_NAME).lib and $(U_ICUDATA_NAME).exp should already be in the right place due to stubdata.
/external/dnsmasq/contrib/dnslist/
H A Ddnslist.pl435 access to copy from a designated place, then offering equivalent
436 access to copy the source code from the same place counts as

Completed in 563 milliseconds

12