Home
last modified time | relevance | path

Searched refs:copyptr (Results 1 – 25 of 47) sorted by relevance

12

/dports/devel/dev86/dev86-0.16.20/as/
H A Dgensym.c22 struct sym_s **copyptr; in gensym() local
52 *copyptr++ = symptr; in gensym()
59 copytop = copyptr; in gensym()
65 for (copyptr = symlptr, column = 0; copyptr < copytop;) in gensym()
73 for (copyptr = symlptr; copyptr < copytop;) in gensym()
111 for (copyptr = symlptr; copyptr < copytop;) in gensym()
113 symptr = *copyptr++; in gensym()
119 for (copyptr = symlptr; copyptr < copytop;) in gensym()
121 symptr = *copyptr++; in gensym()
129 for (copyptr = symlptr; copyptr < copytop;) in gensym()
[all …]
H A Dgenobj.c258 register struct sym_s **copyptr; local
260 for (copyptr = arrext, symnum = 0;
261 symnum < numext && *copyptr++ != adrptr->sym; ++symnum)
334 register struct sym_s **copyptr; in objheader() local
379 arrext = copyptr = asalloc( sizeof(struct sym_s *) * symcount); in objheader()
389 *copyptr++ = symptr; in objheader()
411 copytop = copyptr; in objheader()
517 for (copyptr = arrext; copyptr < copytop;) in objheader()
520 symptr = *copyptr++; in objheader()
566 for (copyptr = arrext; copyptr < copytop;) in objheader()
[all …]
/dports/security/seal/SEAL-3.7.2/native/src/seal/c/
H A Dmemorymanager.cpp21 HRESULT GenericCreateProfileCopy(T *original, MMProf **copyptr) in GenericCreateProfileCopy() argument
24 *copyptr = copy; in GenericCreateProfileCopy()
28 HRESULT CreateProfileCopy(MMProf *profile, MMProf **copyptr) in CreateProfileCopy() argument
31 IfNullRet(copyptr, E_POINTER); in CreateProfileCopy()
36 return GenericCreateProfileCopy(global, copyptr); in CreateProfileCopy()
42 return GenericCreateProfileCopy(fixed, copyptr); in CreateProfileCopy()
48 return GenericCreateProfileCopy(newprof, copyptr); in CreateProfileCopy()
54 return GenericCreateProfileCopy(threadlocal, copyptr); in CreateProfileCopy()
H A Dencryptionparameterqualifiers.cpp20 EncryptionParameterQualifiers *copyptr = FromVoid<EncryptionParameterQualifiers>(copy); in EPQ_Create() local
21 IfNullRet(copyptr, E_POINTER); in EPQ_Create()
24 EncryptionParameterQualifiers *result = new EncryptionParameterQualifiers(*copyptr); in EPQ_Create()
H A Dsecretkey.cpp26 SecretKey *copyptr = FromVoid<SecretKey>(copy); in SecretKey_Create2() local
27 IfNullRet(copyptr, E_POINTER); in SecretKey_Create2()
30 SecretKey *skey = new SecretKey(*copyptr); in SecretKey_Create2()
H A Dpublickey.cpp26 PublicKey *copyptr = FromVoid<PublicKey>(copy); in PublicKey_Create2() local
27 IfNullRet(copyptr, E_POINTER); in PublicKey_Create2()
30 PublicKey *pkey = new PublicKey(*copyptr); in PublicKey_Create2()
H A Dkswitchkeys.cpp56 KSwitchKeys *copyptr = FromVoid<KSwitchKeys>(copy); in KSwitchKeys_Create2() local
57 IfNullRet(copyptr, E_POINTER); in KSwitchKeys_Create2()
60 KSwitchKeys *keys = new KSwitchKeys(*copyptr); in KSwitchKeys_Create2()
H A Dplaintext.cpp119 Plaintext *copyptr = FromVoid<Plaintext>(copy); in Plaintext_Create5() local
120 IfNullRet(copyptr, E_POINTER); in Plaintext_Create5()
123 Plaintext *plain = new Plaintext(*copyptr); in Plaintext_Create5()
H A Dciphertext.cpp48 Ciphertext *copyptr = FromVoid<Ciphertext>(copy); in Ciphertext_Create2() local
49 IfNullRet(copyptr, E_POINTER); in Ciphertext_Create2()
52 Ciphertext *cipher = new Ciphertext(*copyptr); in Ciphertext_Create2()
/dports/devel/rlwrap/rlwrap-0.45.2/src/
H A Dstring_utils.c547 char *readptr, *copyptr; in remove_padding_and_terminate() local
553 *copyptr = '\0'; in remove_padding_and_terminate()
592 copyptr = (copyptr > buf ? copyptr - 1 : buf); /* cannot backspace past beginning of buf */ in unbackspace_old()
596 copyptr = buf; in unbackspace_old()
603 if (copyptr > endptr) in unbackspace_old()
604 endptr = copyptr; in unbackspace_old()
616 char *readptr, *copyptr; in unbackspace() local
625copyptr = (copyptr > buf ? copyptr - 1 : buf); /* cannot backspace past beginning of buf … in unbackspace()
630 copyptr--; in unbackspace()
635 copyptr = buf; in unbackspace()
[all …]
/dports/science/PETSc/petsc-3.14.1/src/ts/tests/
H A Dex12.c334 PetscScalar *copyptr,sc; in RHSFunction() local
357 ierr = VecGetArray(localwork,&copyptr);CHKERRQ(ierr); in RHSFunction()
381 if (!rank) copyptr[0] = 1.0; in RHSFunction()
382 if (rank == size-1) copyptr[localsize-1] = 2.0; in RHSFunction()
388 …for (i=1; i<localsize-1; i++) copyptr[i] = localptr[i] * sc * (localptr[i+1] + localptr[i-1] - 2.… in RHSFunction()
394 ierr = VecRestoreArray(localwork,&copyptr);CHKERRQ(ierr); in RHSFunction()
/dports/science/PETSc/petsc-3.14.1/src/ts/tutorials/
H A Dex2.c425 PetscScalar *copyptr,sc; in RHSFunction() local
448 ierr = VecGetArray(localwork,&copyptr);CHKERRQ(ierr); in RHSFunction()
472 if (!rank) copyptr[0] = 1.0; in RHSFunction()
473 if (rank == size-1) copyptr[localsize-1] = 2.0; in RHSFunction()
479 …for (i=1; i<localsize-1; i++) copyptr[i] = localptr[i] * sc * (localptr[i+1] + localptr[i-1] - 2.… in RHSFunction()
485 ierr = VecRestoreArray(localwork,&copyptr);CHKERRQ(ierr); in RHSFunction()
H A Dex21.c484 PetscScalar *copyptr,sc; in RHSFunction() local
507 ierr = VecGetArray(localwork,&copyptr);CHKERRQ(ierr); in RHSFunction()
531 if (!rank) copyptr[0] = 1.0; in RHSFunction()
532 if (rank == size-1) copyptr[localsize-1] = (t < .5) ? 2.0 : 0.0; in RHSFunction()
538 …for (i=1; i<localsize-1; i++) copyptr[i] = localptr[i] * sc * (localptr[i+1] + localptr[i-1] - 2.… in RHSFunction()
544 ierr = VecRestoreArray(localwork,&copyptr);CHKERRQ(ierr); in RHSFunction()
/dports/games/bstone/bstone-1.1.9/src/
H A Did_ca.cpp385 uint16_t* copyptr, * inptr, * outptr; in CAL_CarmackExpand() local
403 copyptr = outptr - offset; in CAL_CarmackExpand()
406 *outptr++ = *copyptr++; in CAL_CarmackExpand()
417 copyptr = dest + offset; in CAL_CarmackExpand()
420 *outptr++ = *copyptr++; in CAL_CarmackExpand()
/dports/net/openmpi3/openmpi-3.1.6/opal/mca/btl/usnic/
H A Dbtl_usnic_compat.c324 uint8_t *copyptr; in pack_chunk_seg_chain_with_reserve() local
347 copyptr = seg->ss_base.us_payload.raw; in pack_chunk_seg_chain_with_reserve()
352 ret_ptr = copyptr; in pack_chunk_seg_chain_with_reserve()
354 copyptr += reserve_len; in pack_chunk_seg_chain_with_reserve()
363 usnic_convertor_pack_simple(convertor, copyptr, copylen, &max_data); in pack_chunk_seg_chain_with_reserve()
H A Dbtl_usnic_module.c795 uint8_t *copyptr; in pack_chunk_seg_from_frag() local
814 copyptr = seg->ss_base.us_payload.raw; in pack_chunk_seg_from_frag()
828 memcpy(copyptr, lfrag->lsf_cur_ptr, copylen); in pack_chunk_seg_from_frag()
830 copyptr += copylen; in pack_chunk_seg_from_frag()
853 usnic_convertor_pack_simple(&lfrag->lsf_base.sf_convertor, copyptr, in pack_chunk_seg_from_frag()
/dports/net/openmpi/openmpi-4.1.1/opal/mca/btl/usnic/
H A Dbtl_usnic_compat.c324 uint8_t *copyptr; in pack_chunk_seg_chain_with_reserve() local
347 copyptr = seg->ss_base.us_payload.raw; in pack_chunk_seg_chain_with_reserve()
352 ret_ptr = copyptr; in pack_chunk_seg_chain_with_reserve()
354 copyptr += reserve_len; in pack_chunk_seg_chain_with_reserve()
363 usnic_convertor_pack_simple(convertor, copyptr, copylen, &max_data); in pack_chunk_seg_chain_with_reserve()
H A Dbtl_usnic_module.c795 uint8_t *copyptr; in pack_chunk_seg_from_frag() local
814 copyptr = seg->ss_base.us_payload.raw; in pack_chunk_seg_from_frag()
828 memcpy(copyptr, lfrag->lsf_cur_ptr, copylen); in pack_chunk_seg_from_frag()
830 copyptr += copylen; in pack_chunk_seg_from_frag()
853 usnic_convertor_pack_simple(&lfrag->lsf_base.sf_convertor, copyptr, in pack_chunk_seg_from_frag()
/dports/x11/keynav/keynav-78f9e07/
H A Dkeynav.c1668 char *tokctx, *tok, *strptr, *copyptr; in handle_commands() local
1673 copyptr = cmdcopy; in handle_commands()
1674 while (*copyptr != '\0') { in handle_commands()
1677 strptr = tok = copyptr; in handle_commands()
1678 while (*copyptr != '\0' && (is_quoted == TRUE || *copyptr != ',')) { in handle_commands()
1683 if (*copyptr == '"' && is_escaped == FALSE) { in handle_commands()
1687 if (*copyptr == '\\' && is_escaped == FALSE) { in handle_commands()
1689 copyptr++; in handle_commands()
1692 *strptr = *copyptr; in handle_commands()
1695 copyptr++; in handle_commands()
[all …]
/dports/math/freefem++/FreeFem-sources-4.6/src/femlib/
H A DVirtualMatrix.hpp29 VSolver * copyptr(){ count++; return this;} in copyptr() function in VirtualMatrix::VSolver
68 if(A.vsolver) SetSolver(vsolver->copyptr(),A.delvsolver); in SetSolver()
161 vsolver = A.vsolver && delvsolver ? A.vsolver->copyptr() : 0; in operator =()
/dports/graphics/wdune/wdune-1.926/src/
H A DFieldValue.cpp60 char *copyptr = copy; in writeDequoted() local
70 *copyptr = string[i]; in writeDequoted()
71 copyptr++; in writeDequoted()
74 *copyptr = (char)0; in writeDequoted()
/dports/math/gap/gap-4.11.0/src/
H A Dweakptr.c602 Obj * copyptr = ADDR_OBJ(copy) + 1; in CopyWPObj() local
607 *copyptr = ReplaceByCopy(traversal, tmp); in CopyWPObj()
609 GC_general_register_disappearing_link((void **)copyptr, tmp); in CopyWPObj()
613 copyptr++; in CopyWPObj()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/test/Transforms/InstCombine/
H A Dcheri-memcpy.ll2 source_filename = "copyptr.c"
/dports/print/cups/cups-2.3.3op2/ppdc/
H A Dppdc-source.cxx2740 *copyptr, // Pointer into string in scan_file() local
2757 for (copyptr = copytemp; copyptr; copyptr = copyend) in scan_file()
2759 if ((copyend = strchr(copyptr, '\n')) != NULL) in scan_file()
2762 d->copyright->add(new ppdcString(copyptr)); in scan_file()
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/compile/internal/walk/
H A Dbuiltin.go446 copyptr := ir.NewUnaryExpr(base.Pos, ir.OSPTR, n.Cap)
471 ncopy := mkcall1(fn, nil, init, ir.NewUnaryExpr(base.Pos, ir.OSPTR, s), copyptr, size)
479 …R], init, reflectdata.TypePtr(t.Elem()), length, copylen, typecheck.Conv(copyptr, types.Types[type…

12